2010-08-31, 20:17:07
(This post was last modified: 2010-08-31, 21:32:28 by jimkellerj.)
I've tried r183 - but same thing: i stuck on blank page at /admin/install.php
After renaming temp.gsconfig.php to gsconfig.php and setting GSDEBUG true, i get lesser notices, but still the fatal error on dom_import_simplexml():
so i put this little test script on the server:
http://ibb.gsf.de/homepage/karsten.roden...lexml.html
and adding these lines on top:
so i get the same error, calling the script.
Looking at phpinfo() shows the problem: it's configured without the DOM Module ('--disable-dom')
Damn. I will try to get a PHP with '--enable-dom' from the admins.
Anyway, thanks for your help!
After renaming temp.gsconfig.php to gsconfig.php and setting GSDEBUG true, i get lesser notices, but still the fatal error on dom_import_simplexml():
Code:
Strict Standards: main() [function.main]: It is not safe to rely on the system's timezone settings. Please use the date.timezone setting, the TZ environment variable or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for 'UTC/0.0/no DST' instead in /www/gm/k/kidata/getsimple-r183/admin/inc/common.php on line 91
Notice: Undefined variable: SITEURL in /www/gm/k/kidata/getsimple-r183/admin/inc/common.php on line 91
Fatal error: Call to undefined function dom_import_simplexml() in /www/gm/k/kidata/getsimple-r183/admin/inc/basic.php on line 125
so i put this little test script on the server:
http://ibb.gsf.de/homepage/karsten.roden...lexml.html
and adding these lines on top:
Code:
error_reporting(E_ALL | E_STRICT);
ini_set('display_errors', 1);
echo "testing SimpleXML & DOM ...\n";
so i get the same error, calling the script.
Looking at phpinfo() shows the problem: it's configured without the DOM Module ('--disable-dom')
Damn. I will try to get a PHP with '--enable-dom' from the admins.
Anyway, thanks for your help!