O.k. found the source of the issue:
I changed this:
into this:
And weirdly it works
from some reason it don't like my gsconfig.php , only including it gives a 505 error
I changed this:
Code:
include('../../../gsconfig.php');
$admin = defined('GSADMIN') ? GSADMIN : 'admin';
include("../../../".$admin."/inc/common.php");
into this:
Code:
<?php
// include('../../../gsconfig.php');
$admin = defined('GSADMIN') ? GSADMIN : 'admin';
include("../../../admin/inc/common.php");
from some reason it don't like my gsconfig.php , only including it gives a 505 error