Hi
I updated ilias from 3.10.02 to 3.10.10. I followed all the steps on the Update manual, restored the ilias.ini.php as it should be.
But after updating the files i tried running setup.php to finish the update process but it just wont come up. all i get is a blank page, no errors no messages. Nothing.
http://elearning-languages-live.com/ili ... /setup.phpIf i open my main ilias page it comes up normal:
http://elearning-languages-live.com/ilias3/Basic Data
Installation Name elearning
Languages School
Client ID elearning
Installation ID 4014
Database Version 1367 (Database needs an update!)
My main goal is to get it to version 4.
Hoping someone can help me with this. i've spent over a week and no luck so far
EDIT: I activated php display_errors. i get this:
Code:
Warning: file(/lang/setup_lang_sel_multi.lang) [function.file]: failed to open stream: No such file or directory in /home4/elearnj1/public_html/ilias/setup/classes/class.ilLanguage.php on line 108
Warning: file(/lang/setup_en.lang) [function.file]: failed to open stream: No such file or directory in /home4/elearnj1/public_html/ilias/setup/classes/class.ilLanguage.php on line 124
Warning: parse_ini_file(/setup/ilias.master.ini.php) [function.parse-ini-file]: failed to open stream: No such file or directory in /home4/elearnj1/public_html/ilias/setup/classes/class.ilSetup.php on line 148
Warning: parse_ini_file(/setup/client.master.ini.php) [function.parse-ini-file]: failed to open stream: No such file or directory in /home4/elearnj1/public_html/ilias/setup/classes/class.ilClient.php on line 75
Warning: dir(/lang) [function.dir]: failed to open dir: No such file or directory in /home4/elearnj1/public_html/ilias/setup/classes/class.ilLanguage.php on line 192
Warning: chdir() [function.chdir]: No such file or directory (errno 2) in /home4/elearnj1/public_html/ilias/setup/classes/class.ilLanguage.php on line 194
Fatal error: Call to a member function read() on a non-object in /home4/elearnj1/public_html/ilias/setup/classes/class.ilLanguage.php on line 197
EDIT 2: thanks to CDRIGA found the solution.
Just edit the file /setup/include/inc.setup_header.php deleted the code below
Code:
// PHP is running in CGI mode?
if (isset($_SERVER["REDIRECT_STATUS"]) && !isset($_SERVER["FCGI_ROLE"]))
{
define ("ILIAS_ABSOLUTE_PATH",substr(dirname($_SERVER["PATH_TRANSLATED"]),0,-6));
}
else
{
define ("ILIAS_ABSOLUTE_PATH",substr(dirname($_SERVER["SCRIPT_FILENAME"]),0,-6));
}
and added:
Code:
// ADDED BY CDRIGA
define ( "ILIAS_ABSOLUTE_PATH", "/your/absoute/path/to/ilias/folder");