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.

  • 250 Users Found This Useful
Was this answer helpful?

Related Articles

My Wordpress has been hacked, how do I reset my admin password?

If your Wordpress password has been changed to an unknown value, you can always change it by...

I can see the old site content after uploading new files

Most likely, your browser keeps old copies in the cache for fast loading of your site. You need...

I am getting Internal Server Error (500)

This error is generalized when there is a problem the server cannot process a request to the site...

Cron task not working when installing Drupal

To create a cron task, follow these steps: 1. You need to create a cron task in Control Panel -...

403 Forbidden Error

Reasons for the error:1. Incorrect content of the index.php or index.html file, its...