Search found 133 matches

by Jay
Wed Oct 16, 2019 8:55 pm
Forum: General
Topic: Rename index.php
Replies: 4
Views: 2240

Re: Rename index.php

jackmaessen wrote: Wed Oct 16, 2019 12:38 pm i already have a file called index.php. so i want the index.php of bludit rename to news.php
What is the existing indexphp file responsible for?
by Jay
Fri Oct 04, 2019 12:16 am
Forum: General
Topic: I can't access the admin area
Replies: 12
Views: 7580

Re: I can't access the admin area

Edi, enabling bl-kernel / boot / init.php page errors I get this warning can you tell me how to fix this problem Are you on a shared webhosting? The easiest method is to contact helpdesk and ask them to fix your access to session directory, as I doubt you have full access to php settins as a user w...
by Jay
Thu Oct 03, 2019 4:49 pm
Forum: General
Topic: I can't access the admin area
Replies: 12
Views: 7580

Re: I can't access the admin area

. If only it made some mistake but not that. enable debug mode in /kernel/boot/init.php by changing: define('DEBUG_MODE', FALSE ) to TRUE error_reporting(0) to (1) and check whether any php errors appear in login page source code btw. are the php versions the same on both hosting providers?
by Jay
Sun Sep 22, 2019 11:43 pm
Forum: General
Topic: meta tags for child page and routing
Replies: 4
Views: 2465

Re: meta tags for child page and routing

Could it be possible to create a custom field "template", or "contentType" and load the specific template.php if needed or a generic one if the custom field is empty? That would be just a temporary solution (hope it can be done) waiting for the official feature to be released. T...
by Jay
Sat Aug 31, 2019 3:54 pm
Forum: General
Topic: meta tags for child page and routing
Replies: 4
Views: 2465

Re: meta tags for child page and routing

Check the output of $WHERE_AM_I variable. You should be able to load content depending on the page type. You can also get familiar with $page methods. As it goes to setting parent it just need a small modification in bludit's core to get this function for all types of pages. Look at github, there's ...
by Jay
Sun Aug 25, 2019 2:43 pm
Forum: Plugins
Topic: Sitemap Plugin Update Required
Replies: 13
Views: 7209

Re: Sitemap Plugin Update Required

However, this confirms that Google search engine neglects timezone when it comes to sitemap > lastmod tags. While you use g.search console you should already know, that google's automated systems determines dates using a variety of factors. If you want to let it clearly know, use structured data sc...
by Jay
Thu Aug 15, 2019 9:18 pm
Forum: Plugins
Topic: Sitemap Plugin Update Required
Replies: 13
Views: 7209

Re: Sitemap Plugin Update Required

Without hard coding my timezone, I get following output format within lastmod tags; YYYY-MM-DD HH:MM:SS Is it wrong to include +05:30 as the timezone with above output? Now my lastmod output format is like this; YYYY-MM-DD HH:MM:SS +05:30 <lastmod> value in sitemaps should be compliant with W3C dat...
by Jay
Thu Aug 15, 2019 5:04 pm
Forum: Plugins
Topic: Sitemap Plugin Update Required
Replies: 13
Views: 7209

Re: Sitemap Plugin Update Required

$xml .= '<lastmod>'.$page->dateModified(SITEMAP_DATE_FORMAT).' +05:30</lastmod>'; +05:30 should be changed to your timezone. Is there a function that I can automatically get the timezone from admin settings? Basically dateModified() function doesn't have any values set, thus SITEMAP_DATE_FORMAT val...
by Jay
Wed Aug 14, 2019 5:50 pm
Forum: Plugins
Topic: Sitemap Plugin Update Required
Replies: 13
Views: 7209

Re: Sitemap Plugin Update Required

I just realized that sitemap plugin generates <lastmod> value using post's creation date, not modification date.
by Jay
Tue Aug 06, 2019 8:19 pm
Forum: General
Topic: publish .pdf of .doc files
Replies: 17
Views: 14638

Re: publish .pdf of .doc files

Any ideas what is going wrong and how to fix it? You were heading in the right direction as things changed in B 3.9.X Basically you need to 1. add a valid mime type of the files you want to upload in validImageTypes array For pdf files add: application/pdf 2. add allowed file extension in ALLOWED_I...