On Tue, 10 Jun 2003 14:44:18 +0100 "Nick Wright" <[EMAIL PROTECTED]> wrote:
> I've set up a website running on PHP v4.2 with the default php.ini > When I run the site on v4.3 with php.ini at its default I receive > loads of errors such as: > > Notice: Undefined index: action in > c:\inetpub\wwwroot\abandc_dev\index.php on line 4 > Notice: Undefined index: username in > c:\inetpub\wwwroot\abandc_dev\index.php on line 5 > Notice: Undefined index: password in > c:\inetpub\wwwroot\abandc_dev\index.php on line 6 > Notice: Undefined variable: auth_user in > c:\inetpub\wwwroot\abandc_dev\index.php on line 256 > Notice: Undefined variable: message in > c:\inetpub\wwwroot\abandc_dev\index.php on line 273 > > I'm sure that all I have to do is configure the php.ini file properly. > Does anyone know what settings are required? error_reporting seems to be set to E_ALL. You can """remove""" these notices by setting it to E_ALL & ~E_NOTICE. In the meantime, you may "fix" them in preference to hide them. hth pierre -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php