Andy
09-03-2003, 01:49 AM
As of PHP 4.3.x passing of a string to the setlocale() function in PHP is deprecated.
PHPNuke uses this deprecated method, and PHP 4.3.x will warn you about this (by displaying a warning in your browser output) for every call you make to this function.
As a temporary work-around you can place:
ini_set(display_errors,0);
Into your config.php file to prevent these (and also any other errors occuring).
This is not a solution but just a method to supress the errors, a permanent fix is something the folk at PHPNuke will have to provide.
Regards,
Andy
PHPNuke uses this deprecated method, and PHP 4.3.x will warn you about this (by displaying a warning in your browser output) for every call you make to this function.
As a temporary work-around you can place:
ini_set(display_errors,0);
Into your config.php file to prevent these (and also any other errors occuring).
This is not a solution but just a method to supress the errors, a permanent fix is something the folk at PHPNuke will have to provide.
Regards,
Andy