Installation Issues [message #797] |
Thu, 03 May 2007 07:59 |
Techie
Messages: 8 Registered: May 2007 Location: Idnia
|
Junior Member |
|
|
Hi,
I am trying to install in my system with an environment of Win XP, Apache 2.2.4, My Sql 5.0 and PHP 5.2.1.
I have installed PHP along with the extention of DOM and XSL.
I have created all the schema and data as recommended.
I have also renamed config.default.inc into config.inc.
But still I am not able to run it. When I try to run it it shows a blank page.
Please let me know if anything I have missed.
Looking forward to hear some help.
Regards
Za Gohu
|
|
|
Re: Installation Issues [message #798 is a reply to message #797] |
Thu, 03 May 2007 08:08 |
AJM
Messages: 2367 Registered: April 2006 Location: Surrey, UK
|
Senior Member |
|
|
Have you got display_errors=ON and error_reporting=E_ALL in your PHP.INI file? Have you checked your error log? Have you changed CONFIG.INC to identify your database username and password?
If you have done all these and still get no output you will have to step through with your debugger to see where it is failing.
Tony Marston
http://www.tonymarston.net
http://www.radicore.org
|
|
|
|
Re: Installation Issues [message #802 is a reply to message #801] |
Thu, 03 May 2007 13:44 |
AJM
Messages: 2367 Registered: April 2006 Location: Surrey, UK
|
Senior Member |
|
|
Even though you have set include_path in your htaccess file the error message is showing it as '.;C:\php5\pear', which means that you have not configured apache to deal with htaccess files as it says in the installation instructions.
On Windows you cannot create a file with an extension but no name, which is why I use htaccess.txt instead of (dot)htaccess. You must therefore amend your apache config file so that the 'AccessFileName' directive points to 'htaccess.txt'.
Tony Marston
http://www.tonymarston.net
http://www.radicore.org
|
|
|
|
|
|
Re: Installation Issues [message #806 is a reply to message #805] |
Thu, 03 May 2007 18:59 |
AJM
Messages: 2367 Registered: April 2006 Location: Surrey, UK
|
Senior Member |
|
|
Your htaccess file is not being processed, which means your amendments to include_path are not being processed, which means that the include statement is failing to locate the specified file. You need to double check your apache configuration and the htaccess.txt file.
Your httpd.conf file appears to have the following line commented out:
AllowOverride All
Perhaps that is your problem?
Tony Marston
http://www.tonymarston.net
http://www.radicore.org
|
|
|
|
|
|
Re: Installation Issues [message #810 is a reply to message #809] |
Mon, 07 May 2007 15:48 |
AJM
Messages: 2367 Registered: April 2006 Location: Surrey, UK
|
Senior Member |
|
|
If you are using an all-in-one installation package for Apache, PHP and MySQL I suggest you throw it away and install each piece manually as it is obviously giving you a corrupt installation. This is because they include both the XML and DOM XML functions at the same time, which is clearly wrong as they are incompatible.
If the DOM extension was installed properly you would not be getting an error message such as this. Try downloading and installing the latest PHP version from php.net (the zip version, not the installer version) and see if that makes a difference.
Tony Marston
http://www.tonymarston.net
http://www.radicore.org
|
|
|
|
Re: Installation Issues [message #812 is a reply to message #811] |
Tue, 08 May 2007 05:09 |
AJM
Messages: 2367 Registered: April 2006 Location: Surrey, UK
|
Senior Member |
|
|
You have not read the installation instructions properly. PHP 5 requires the DOM extension, not the DOM XML extension. That is why you are getting the error message informing you that the XSL extension cannot be found.
The second error message in your log file says that task 'mnu_user(pswd)' cannot be found, but this is defined in the mnu-data.sql file so should have been loaded.
Tony Marston
http://www.tonymarston.net
http://www.radicore.org
|
|
|
|
|