![]() |
|
Setup doesn't continue - Printable Version +- ZenphotoCMS Forum (https://forum.zenphoto.org) +-- Forum: Support (https://forum.zenphoto.org/forum-1.html) +--- Forum: General support (https://forum.zenphoto.org/forum-4.html) +--- Thread: Setup doesn't continue (/thread-10084.html) |
Setup doesn't continue - Yannick - 2012-06-14 Hi guys, For three days i've been trying everything to get Zenphoto up and running, but i'm stuck at the setup page. Everything is green I only get three orange Warnings. But there is no Go button. Here are the Warnings:
(I already tried fixing this by php.ini and htaccess but it doesn't work)
It ends with: I would really appreciate any suggestions you could give me! Setup doesn't continue - sbillard - 2012-06-14 SHOW TABLES is the last thing shown on the page? If so, there must have been some sort of script error since there should another about 12 status checks displayed. Is this a new install or an upgrade. If a new install it is normal that no tables would be shown as they have not yet been created. Anyway, most likely there is some kind of an error that has been generated. You will need to locate your server error logs and see what is reported. Setup doesn't continue - Yannick - 2012-06-14 Hi sbillard, thank you for answering so quickly. This is a new install. I think the error is related to mysql. I couldn't really find a log file or rather I found one but it only listed all the files that were accessed and didn't show any errors. When I uploaded everything again and I didn't enter my mysql credentials it showed all the status checks. After entering the mysql data it stops at SHOW TABLES again. Setup doesn't continue - sbillard - 2012-06-15 The next "check" should be The following step is a file system check, so if there is some access permissions issues that could fail. But of course, somewhere there should be the error message telling of that. Also I do not see why that would fail only if the database is connected. So I think it gets back to the fact that we really do not have a guess as to what is wrong. So somehow you will need to find your PHP error logs. Setup doesn't continue - Yannick - 2012-06-15 Got the error display working. After SHOW TABLES it says: Fatal error: Call to undefined function ngettext() in /home/sites/site15/web/zp-core/setup.php on line 1025 Setup doesn't continue - sbillard - 2012-06-15 Ok, that would be an issue. That function is supposed to be part of PHP since PHP versin 4.2.0. Since we require PHP 5.0 or better it really should exist. This is something you will have to ask your service provider about. I have never before heard of that function not being present. Certainly there is no way Zenphoto will run without it. Setup doesn't continue - Yannick - 2012-06-15 Alright my provider it is. Setup doesn't continue - acrylian - 2012-06-15 I thought actually that gettext is a optional PHP package that cannot be expected to be there always and should not be required to run Zenphoto at all unless you wish to use the multilingua features. Actually we have the lib-gettext so at least no fatal error appears if these are missing. So I guess that fallback does not work correctly then. Setup doesn't continue - sbillard - 2012-06-15 If you get nowhere with him there is a work-around you could make. But it does require hacking Zenphoto. add the following to functions-basic.php
Setup doesn't continue - Yannick - 2012-06-18 Brilliant, you just made my day. Now it works and it looks awesome. Ok one last question. Setup doesn't continue - acrylian - 2012-06-18 No, you don't need any gettext functionality if you use only English as that is the native language of Zenphoto. Setup doesn't continue - sbillard - 2012-06-18 To be clear you need some version of the functions for Zenphoto not to error. For multiple languages you need working PHP gettext implementation, the alternate functions only give English. |