@yerij007: I do not have a config.php in the panel folder gm folder.
@ANlME: Yes there is a config.php at that location.
@lucatischlerqA: I sent a request to both those skype files.
So what I have found out so far...
Line 6 says:
Code:
require "../secure/config.php";
i think it is supposed to be
Code:
require "/secure/config.php";
But when its like that it just signs me out and returns me to my gunz website...
any ideas now?
Also when I tried the first 12 lines like this
Code:
<?php
if( !session_start() )
{
session_start();
}
require "secure/config.php";
include "functions.php";
$langfile = "lang/english.php";
include $langfile;
$connection = $_ODBCCON;
?>
but then it tells me i dont have permission to enter the Admin Panel
so I now have it like this:
Code:
<?php
if( !session_start() )
{
session_start();
}
require "../secure/config.php";
include "functions.php";
$langfile = "lang/{$_CONFIG[Language]}.php";
include $langfile;
$connection = connect();
?>