Hi,
I have a problem with the refresh of the page on my new site. When I try to do sometiong in the admin, or write a comment, or whatever needs redirection from the page to the initial one it does not work. Or if I try to import a feed it does not import it and it doesn't redirect me to the original page, it just freezes.
Thanks for your help guys,
Bogdan.
Hi David,
Thanks for your input. It was actually from translate.php but you pointed me in the right direction.
Cheers,
Bogdan
Hello Bogdan,
A lot of the admin scripts use header() to redirect to other pages, but this will not work if PHP has generated any output before the point at which the header() function is called.
The most likely reason for this being the case is if some white space has crept onto the beginning or end of your config.php or config.advanced.php
To check this, open both files into your text editor, and make sure there is nothing at all outside of the PHP tags. It's most common on the end, make sure that there are no blank lines at the end of either file - as that's what would cause PHP to begin output, thus stopping header() from being able to redirect.
Hope this helps!
Cheers,
David.