i just made a webpage using joomla 2.5 and wamp server 2.5 too.
I got a hosting plan from a company that has Versión PHP: 5.1.6, so i realized that i was using a newer version of PHP and it could cause a problem (i had the page done at the moment)
So i decided to downgrade to wamp5_1.7.4 becuase is the one that has a PHP version that can be compatible with my hosting company php.
When i installed the new wamp and moved the files i went and imported the 2.5 DB to the "new" DB via phpmyadmin. it have me a error in the query, i googled it and fixed it. After that i wa sable to import the DB with no problems.
So everything is fine, i decided to go to localhost and it have me another error: need more memory, ok. Investigating i found that i should edit the htaccess or php.ini file with this: php_value memory_limit 64M and memory_limit = 16M respectevely. and everything worked perfectly in my localhost. also added ini_set('memory_limit', '32M'); to my configuration.php file
I went and did the same procedure but with my hosting company, and it just showed me a blank page. Decided to check the configuration.php file, and of course it was configured to try to work with a local server, so to get the one right i installed the 1.5 in the server (all worked) and kept the configuration.php file ... So i deleted the 1.5 DB, imported the 2.5 one (just like in my local pc) ad moved th 2.5 files into the server and changed the configuration.php for the 1.5 one.
I have done many things trying to ind the way to fix it, but it is still giving me a blank page. And what i dont want to do is just install the 1.5 joomla and have to redo everything from 0
Edit: I added all the php error reporting and its not showing anything.. I right click on the page and click the option view page code, and it doesnt show.anything either...
Thanks for the help.
ini_set('display_startup_errors',1); ini_set('display_errors',1); error_reporting(-1);Then you wont get white pages, but instead usefull error messages - Steve