• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

AAC ZnoteAcc problem with dns ip win and linux same problem

johnsamir

Advanced OT User
Joined
Oct 13, 2009
Messages
847
Solutions
6
Reaction score
151
Location
Nowhere
Hello community

I have a rare problem. I'm ale to connect to my website using global ip and my dns ip which is forgottengame.ml. the problem occurs when i use my seccond ip to connect to an account via website, this message appears:

Sorry, you need to be logged in to do that!​

Please register or log in.

if i use the normal ip, not masked, i don't have any problem to connect and i have not edited the .htaccess file
this is the file that i'm currently using.
Lua:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /characterprofile.php?name=$1

and tried this too but it didn't work
Lua:
Options +FollowSymLinks
RewriteEngine Off
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /characterprofile.php?name=$1

RewriteCond %{HTTP_HOST} ^(www\.)?forgottengame\.ml [NC]
RewriteRule (.*) http://forgottengame.ml/$1 [R=301,L]
RewriteCond %{REQUEST_URI} ^https://forgottengame.ml/login.php
RewriteCond %{QUERY_STRING} VARIABLE=VALUE
RewriteRule ^(.*)$ https://forgottengame.ml/login.php? [R=301,L]
 
Back
Top