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

Firefox error: The page isn't redirecting properly

When a page redirects you to an infinite redirect, Firefox will display the error: The page isn't...

Help, I deleted the files.

Backups are automatically created weekly on the Premium plan and daily on the Business plan. You...

My site is not on search engines

This problem is not related to hosting, rather the problem is in the site itself. Please follow...

Help with my template

Unfortunately, we are not engaged in website creation services. If you cannot solve the problem...

MySQL server does not work! (Error 28)

Please try to start restoring the database by going to Control Panel - Databases, select the...