Jump to content

[Solved] - Couple of errors with RC2


Recommended Posts

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

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 :D

Link to comment
Share on other sites

  • 1 month later...

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...