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

Domain has status redemption period / pending delete

The domain is scheduled for deletion, so its validity period has expired and it has not been...

Ping command and tracert (traceroute) how to use correctly?

The ping command is used to check the availability of network resources. Most often it is needed...

Domain does not work with "www"

If you cannot access your site using your domain without “www”. (Example.com) but with "www." it...

#1064 - You have an error in your SQL syntax

Error 1064 occurs when MySQL version does not match. The simplest solution is to enable...

Help, Adsense is not showing

If your ad is not showing, please make sure you paste the code between the "body" tags. If you...