PHP Fatal error: Cannot redeclare

If you see PHP Fatal error: Cannot redeclare function it means that there is a problem in your code (it tries to declare the same function several times). We do not provide coding services, you can find the problem on specialized resources, for example:
http://www.google.com/search?q=PHP+Fatal+error+Cannot+redeclare

This error means that your function is already defined. This could mean:

You have the same function defined in two files.
You have the same function defined in two places in the same file.
The file in which your function is defined is included two times (so it seems that the function is defined two times)
To help with the third point, the solution would be to use include_once instead of include when including your functions.php file, so it cannot be included more than once.

  • 106 Users Found This Useful
Was this answer helpful?

Related Articles

How do I turn off short open tags?

To disable short opening tags, you need to add the following code to your .htaccess file:...

I see question marks and incomprehensible symbols on the site

If incomprehensible characters are displayed on your site, this is due to incorrect encoding of...

Help, the cron is not working

If you run a job through PHP, for example php -f /home/username/public_html/file.php and you...

Error 502 Bad Gateway nginx and why does it occur?

If this error occurs, then HTTP requests from clients to your site are going through some kind of...

Help, my site has been hacked!

If your account has been hacked, be sure that this is not related to the security of the server....