Quote:
Originally Posted by Allan
yep
very nice hack
but, i'm a error on localhost:
Code:
Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of prep_for_breaks(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in c:\program files\easyphp1-8\www\forum\includes\functions_geekarticles.php on line 41
an idea ?
|
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