James Posted December 25, 2007 Share Posted December 25, 2007 First when I finish instalation, Whe I log into the back office I get no tabs or anything, so in admin/index.php I added a line: include(dirname(__FILE__).'/../config/settings.inc.php'); as I presumed this is still missing, when I added this, I get it to look right, However when I go to the back office and select any tab, I get: Tab does not exist Any ideas? Also merry christmas and thanks for the release on Christmas day! Link to comment Share on other sites More sharing options...
Bruno Leveque Posted December 25, 2007 Share Posted December 25, 2007 Hi James Thanks for your message, I installed again RC2 and I haven't got this problem... We'll have a look at this tomorrow! Best regards, Bruno Lévêque Link to comment Share on other sites More sharing options...
James Posted December 28, 2007 Author Share Posted December 28, 2007 Any update to this? And this is what I am currently looking at: Link to comment Share on other sites More sharing options...
James Posted December 28, 2007 Author Share Posted December 28, 2007 Ok I managed to fix this: I used win merge to check the difference between the last error free instation and this new install. On line 61 in admin/index.php echo '<div class="path_bar"><img src="../img/admin/prefs.gif" style="margin-right:10px"><a href="?">'.lindex('Back office).'</a>'; replaced with: echo '<div class="path_bar"><img src="../img/admin/prefs.gif" style="margin-right:10px"><a href="?">'.lindex('Administration panel').'</a>'; Atleast that is sorted out. Now I can start playing again Link to comment Share on other sites More sharing options...
zeratool Posted January 30, 2008 Share Posted January 30, 2008 Hi, I got the same error as well but i made a different fix. im using php 5.2.4 what i did is to replace all instances of "include" into "require". Seems like in this php version, include is deprecated. Link to comment Share on other sites More sharing options...
Matthieu Biart Posted February 4, 2008 Share Posted February 4, 2008 Hi zeratool what i did is to replace all instances of "include" into "require". Seems like in this php version, include is deprecated. The php require function is exactly the same as include(), except that if the inclusion failed, it provokes a fatal error as opposed to a simple (nonfatal) warning for include(). So your problem is very unusual. ??? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now