View Single Post
Old 11-02-2005, 07:58 AM   #7
Charter
Head Mole
 
Charter's Avatar
 
Join Date: May 2003
Posts: 2,539
Set your PHP display_errors to on and keep error_reporting(E_ALL); in the config file. With display_errors to off, error_reporting does not show anything onscreen. If you don't want to do this in PHP directly, try setting the following in an htaccess file in the main PhpDig directory and then do an index:
Code:
PHP_VALUE display_errors 1
Also, your PHP info page says that your MySQL Client API version is 4.0.25 but PhpDig 1.8.8 RC1 needs MySQL 4.1.7+ as the version. The PhpDig 1.8.8 RC1 requirements are listed here. Sometimes the PHP reported API is not the 'real' version (see here as to probable reason) so run the following MySQL query:
Code:
SELECT VERSION();
__________________
Responses are offered on a voluntary if/as time is available basis, no guarantees. Double posting or bumping threads will not get your question answered any faster. No support via PM or email, responses not guaranteed. Thank you for your comprehension.
Charter is offline   Reply With Quote