(10-26-2011, 01:34 PM)steinm Wrote:(10-26-2011, 01:13 AM)amwassil Wrote: I also tried renaming conf/settings.xml to conf/new_settings.xml and running .../install/install.php again to see if it would copy install/settings.xml.template_install into conf/settings.xml.
I get this error:
Configuration file not found
Please create conf/settings.xml file. You can use installation procedure or 'conf/settings.xml.template' file to help you
Where do I go from here? Thanks. This is really very frustrating. Version 3.0.0 worked fine, except for the "role" issue, which is supposedly fixed in 3.2.0 but refuses to install properly.
Is conf/settings.xml readable by your web server? If you move away conf/settings.xml and restart the installation it should also work.
Uwe
> Is conf/settings.xml readable by your web server?
Yes, thanks. In an attempt to troubleshoot I started stepping through the install program to try to determine exactly where the problems start and it looks like this is the first place things don't go as they should:
Browser Error:
http://www..../install/install.php
inc/inc.Settings 1 OK
inc/inc.Settings 2 OK
Fatal error: Call to a member function xpath() on a non-object in /.../inc/inc.ClassSettings.php on line 232
The script fails here: inc/inc.Settings.php
049 echo 'inc/inc.Settings 1 OK</br>'; // added for debug
050 require_once('inc.ClassSettings.php');
051 echo 'inc/inc.Settings 2 OK</br>'; // added for debug
052 $settings = new Settings();
053 echo 'inc/inc.Settings 3 OK</br>'; // added for debug
So the script fails at: $settings = new Settings();
Hope this helps. Thanks.