Hello fretzl, can you please have a look at gallery.php? If i want to go to the second page there is no gallery shows. " The page you are requesting cannot be found. Seite: gallery " No errorlog in ZP. Strato errorlog is not up to date. the update to 1.4.10 is done. rgds
Hello I need help again :-( After updating to 1.4.10 I have problems with the German umlauts in the text of the news . The title is ok but in the text , the umlauts are not displayed correctly . This only affects the sidebar class = " latestnews - desc ".
and I have the following message in the errorlogs: PHP Fatal error: Can not redeclare imagerotate () in htdocs / plugins / image_rotate_gd.php on line 55, even though I have this plugin is not activated
-- German umlauts: Probably your Zenphoto installation still needs to know the server's system character set. Please try this: -- Create an empty file called charset_tést -- Upload the file into the zp-data folder -- Run setup
-- About the plugin(s): Please remove all plugins you do not use from the /plugins folder.
Hello fretzl, the problem is located to function printLatestNewsCustom() . . . echo "<p class=\"latestnews-desc\">" . html_encode(getContentShorten($content, $contentlength,'(...)', null, null)) . "</p>\n";
the text of the message is ok but in the sidebar , the umlauts as HTML codes are displayed.
This is probably a downstream issue of the wrong `latin1_german2_ci` of some of your database tables/columns so you basically get double encoded characters.
Comments
gslideshow.php
and the folder gslideshow are in the folder plugins
gslideshow (folder)
gslideshow (main folder) contains:
gslideshow (folder) => goes in `plugins` folder
gslideshow.php (file) => goes in `plugins` folder
gslideshow (main folder) => does NOT go in the plugins folder
NOT the main folder, ONLY the folder and file within.
zp_register_filter?
other plugins have something like this
i have uploaded all the plugin from the unsupported and all plugins are there only gslideshow is missing
now it is there.
EDIT:
Unfortunately the only way to get what you want is to download the entire repository first. After that you pick what you need.
have a nice weekend
can you please have a look at gallery.php?
If i want to go to the second page there is no gallery shows.
" The page you are requesting cannot be found.
Seite: gallery " No errorlog in ZP. Strato errorlog is not up to date.
the update to 1.4.10 is done.
rgds
zpfocus --> gallery.php
you are the hero of the day :-)
After updating to 1.4.10 I have problems with the German umlauts in the text of the news . The title is ok but in the text , the umlauts are not displayed correctly . This only affects the sidebar class = " latestnews - desc ".
PHP Fatal error: Can not redeclare imagerotate () in htdocs / plugins / image_rotate_gd.php on line 55, even though I have this plugin is not activated
Probably your Zenphoto installation still needs to know the server's system character set.
Please try this:
-- Create an empty file called charset_tést
-- Upload the file into the zp-data folder
-- Run setup
-- About the plugin(s):
Please remove all plugins you do not use from the /plugins folder.
charset = utf8
phpMyAdmin:
Webserver:
Apache/2.2.29 (Unix)
Datenbank-Client Version: libmysql - 5.0.96
PHP-Erweiterung: mysqli
Database:
Server: rdbms via TCP/IP
Server-Typ: MySQL
Server Version: 5.5.45-log - Source distribution
Protokoll-Version: 10
Benutzer: xxx
Server Zeichensatz: UTF-8 Unicode (utf8)
charset collation utf8mb4_general_ci
16 records every collation is utf8_unicode_ci
total: 16 records myISAM latin1_german2_ci
the problem is located to
function printLatestNewsCustom()
.
.
.
echo "<p class=\"latestnews-desc\">" . html_encode(getContentShorten($content, $contentlength,'(...)', null, null)) . "</p>\n";
the text of the message is ok but in the sidebar , the umlauts as HTML codes are displayed.
functions.php:
i have changed line 194
from:
echo "<p class=\"latestnews-desc\">" . html_encode(getContentShorten($content, $contentlength,'(...)', null, null)) . "</p>\n";
to:
echo "<p class=\"latestnews-desc\">" . getContentShorten($content, $contentlength,'(...)', NULL, NULL) . "</p>\n";
and it seems to work. :-)