wordpress – plugins wouldnt work on php4 so turned php5 plugins still think it php4?
i turned on php5 via cpanel but the plugins im using still think it is php4 ive tried removing and deleting them and aslo reinstalling them.
How do i tell wp or the plugins its now php5
Thank you very much, i have fixed the problem the problem was there was no php.ini file.
Im not sure how you checked out who my hosting company is as its blackhostess.com.
Suffusion works with php5 nicely.
As for cache plugin yes i do have one thats why i need php5 to make it work so i knew it wasnt a cache issue lol.
Again thank you very much for helping was begining to think no one could lol.
Mail this postPopularity: 2% [?]
1 Comment »
RSS feed for comments on this post. TrackBack URL
Checked your website if it is spotcream.com. I see that you have Glowhost as your web host – has PHP5 available. You have Wordpress 2.9.2 installed – Currently WordPress works on both PHP 4 and PHP 5 based platforms so that is not the cause of the PHP5 problem. Your using the Suffusion Wordpress Theme – Older Themes and Plugins may have PHP code that will not work with PHP 5. You should check with the Theme authors for any PHP5 issues with your Theme and see if they have updated Theme versions. I didn’t check this out so you should double check to see if their are any issues with the older versions of the Suffusion Wordpress Theme.
You most likely already did this – Did you create a phpinfo.php file to double check that you really have PHP5 running on your web host server?
For anyone who may want to know how to do this:
Create a text file called phpinfo.php with the following code below and upload it to the root of your server and run it by typing in your URL with /phpinfo.php at the end of the URL Example: http://www.yourwebsite.com/phpinfo.php
<?php
phpinfo();
?>
Are the Wordpess Plugins you are using main stream widgets or are they custom Wordpress widgets? I assume your widgets are supposed to work with PHP5 by the way you phrased your question.
This could possibly solve the PHP5 problem so it is worth a try.
You should already have an .htaccess file for your Wordpress website. If you don’t then automatically generate one for your Wordpress website by going to your Settings panel in your Wordpress Dashboard, then click on Permalinks and then click the Save Changes button. This should create an .htaccess file for your Wordpress website and add it to the root of your domain.
Now download the .htaccess file via FTP and add this command to the very top of the new .htaccess file.
SetEnv PHP_VER 5
*** you may need to add a handler to your .htaccess fil as well – this just depends on your host so you will need to check with them or their FAQ/Help files.
AddHandler x-httpd-php5 .php
or maybe
AddType x-mapp-php5 .php
Also there could be other problems with your .htaccess file if you already had one that could be causing this problem.
The other thing I thought of – this is an obscure outside possibility, but worth checking – if you have a Wordpress caching plugin installed you need to delete the cache and disable the plugin and then re-enable it.
Hope one these things works for you. Good luck!