Need to look at the php files to debug it. The error means you have declare the function register_sidebar() multiple times. Just search for it and remove one of them and it should work.
If you are new to domains and looking to buy, sell and learn about domains then you have come to the right place. DNForum is the largest domain name community on the internet and continues to grow every day. There are over 105,000 domainers on DNForum doing everything from buying domains, selling domains, learning about domains and discussing domains. Take a minute and Register.
Register Today on DNForum IT'S FREE!see below....anybody know how to fix??
site is italianhomerecipes(dot)com
thnks
tony
Fatal error: Cannot redeclare register_sidebar() (previously declared in /home/tonykana/public_html/wp-includes/widgets.php:36) in /home/tonykana/public_html/wp-content/themes/TripleK2/app/includes/sbm.php on line 26
Need to look at the php files to debug it. The error means you have declare the function register_sidebar() multiple times. Just search for it and remove one of them and it should work.
Do you want us to click on your Adsense ads as well?![]()
notoo many questions...
http:// forums.digitalpoint.com/search.php?searchid=4325261
Tony:
That error code means, in essence, that you are declaring one function multiple times. Kind of like the sentance "The box's name is Joe the box's name is Joe." This generally happens when you either have the function ..{..} code in a loop (foreach, for, while) or you have it declared in another included file.
Jason
If your function is in a separate file and included in you main php file via an include statement:
include ("myfunctions.php");
Try using this instead:
include_once ("myfunctions.php");
There is also require() and require_once() statements if your page uses that which can also be interchanged.
Bookmarks