Quote:
Originally Posted by AndrewD
Blank white pages are often a sign of some php error which gets caught up in vbulletin's efforts to compress the page. Try going to vb/admincp/options/cookies and http options and turn off gzip output. Then try again.
If that doesn't work, am happy to take a look if you send me a pm with an account with full vb admin permissions.
|
thank you, I figured out what the problem was as I also had this problem when I was trying to edit a thread in the forum. It was a limitation in php. I had to add this line to my config.php file per the troubleshooting section of the vb 3.7 manual.
Code:
ini_set('memory_limit', -1);
All is well - thank you!