
03-21-2005, 06:06 PM
|
 |
|
|
Join Date: Jun 2003
Location: France
Posts: 1,513
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by gldtn
The problem is in you're PHP configuration. Look for the following in php.ini
allow_call_time_pass_reference = Off
This needs to be 'On'
You'll be be able to see it using the phpinfo() function, if the server isn't yours. You should be able to switch it on with a .htaccess file containing;
php_flag allow_call_time_pass_reference On
|
thanks gldtn, that work
|