10-10-2016, 02:28 PM
Ok. So let's walk through this.
Judging by your code, you are accessing your site by going to hackerwolf.xyz, right?
So try this. Comment out line 12 of users/init.php and put
My gut says that will get you close enough to getting the pages loaded enough to know if you either have an extra slash or need one somewhere.
If that doesn't work, you can do go on any page and put
and you can figure out what path the system thinks it is seeing.
Judging by your code, you are accessing your site by going to hackerwolf.xyz, right?
So try this. Comment out line 12 of users/init.php and put
Code:
$us_url_root='/html/enl/';
My gut says that will get you close enough to getting the pages loaded enough to know if you either have an extra slash or need one somewhere.
If that doesn't work, you can do go on any page and put
Code:
dump($abs_us_root);
Code:
dump($us_url_root);
and you can figure out what path the system thinks it is seeing.