• 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!

Opening ports

Zoolek

Member
Joined
Jul 3, 2017
Messages
93
Solutions
1
Reaction score
11
Im doing something wrong? or?
I want to open tibia ports gameplay/webside


1583604239881.png
 

Attachments

Ok i called them and they open ports: 7171, 7172, 8080, 3306

Right now.
my config.lua looks like this:
-- Connection config
worldId = 0
ip = "176.221.121.104"

-- Database
-- NOTE: sqlFile is used only by sqlite database, and sqlKeepAlive by mysql database.
-- To disable sqlKeepAlive such as mysqlReadTimeout use 0 value.
-- encryptionType can be plain, md5, sha1, sha256, sha512 or vahash.
sqlType = "mysql"
sqlHost = "127.0.0.1"


I can connect to server using "167.221.121.104" i see the character after acc/pass but i cant login
Webside doesnt work when i use "176.221.121.104"

$config['site_title'] = 'Znote AAC';
$config['site_title_context'] = 'Because open communities are good communities. :3';
$config['site_url'] = "176.221.121.104";

rest ip i use normal 127.0.0.1 right?
 
Your website by default runs on port 80, but your ISP don't want to give you that port (and gave you 8080 instead).
So you need to configure your website to run on port 8080, and your URL will become http://176.221.121.104:8080/
(See section "Listen Port").

In Znote AAC $config['site_url'] you should also add http:// or https:// to the front of the IP. (To make stuff like clicking on a guild redirect to correct URL).
 
Last edited:
Back
Top