Thank you for the comments, and for the extra information about tpl_wp_cc_accept.php I shall move that into an "optional" folder and modify the instructions in the next release.
With regards to the transition from php 4 to 5, although this module is fully compatible, a good way to ensure compatibility at the (temporary) cost of speed, is to put
Code:
register_long_arrays = On
in either the main php.ini file or there are two other options if your hosting does not allow you access to php.ini
- if running php as an apache module (more notes below)
add the line
Code:
php_value register_long_arrays On
to your .htaccess file
- If running php as a CGI module (more notes below)
create a php.ini file in your main website root and in your admin folder (php as CGI reads php.ini from the working folder not the webroot) with
Code:
register_long_arrays = On
inside it and add the following code to .htaccess
Code:
<files *.ini>
order allow,deny
deny from all
</files>
The notes on modules and CGI
if you do not know if you are running php as a module or as a cgi, then create a page with
Code:
<?php echo php_sapi_name(); ?>
in it and visit it through your web browser on your server, it should tell you if it is running as an apache module or a cgi.
Thank you
Philip.
Bookmarks