hi there,.
let's see what we can do..
about the timezone issue:
- it seems to be related to your php.ini setting. Did look in google and it seems that the timezone has to be set-up. what do you have?
I do have something like:
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = UTC
The ereg issue has been resolved in the v1.02 version.
-> is has to be pregmatch
-> the code in v1.02 is:
// generate Metatags
$meta_keywords_content = "";
if (!empty($row->meta_keywords)) {
$keywords = explode(",",$row->meta_keywords);
foreach($keywords as $keyword) {
if ($meta_keywords_content != "") {
$meta_keywords_content .= ", ";
}
if (preg_match("/\[/",$keyword)) {
$keyword = trim(str_replace("[","",str_replace("]","",$keyword)));
$buffer = $this->keyword_switcher($keyword, $row, $elsettings->formattime, $elsettings->formatdate);
if ($buffer != "") {
$meta_keywords_content .= $buffer;
} else {
$meta_keywords_content = substr($meta_keywords_content,0,strlen($meta_keywords_content) - 2); // remove the comma and the white space
}
} else {
$meta_keywords_content .= $keyword;
}
}
}
$document->setMetadata('keywords', $meta_keywords_content );
-> so open the file in notepad
-> change the code
-> upload