
Originally Posted by
diieenndd
mee too, still confused setting webserver api. already setting vhost , open port 8080 and 8888 setting ip server.xml and import to htdoc with apache XAMPP. and web link 192.168.1.130:8080/8888 work. and client already setting to ip local 192.168.1.130 but still cant login in game
Try this change mysql login and pass on connect.php.
httpd.conf
add
Code:
Listen 8080
Listen 8888
httpd-vhosts.conf
Code:
<VirtualHost *:8080>
#ServerAdmin webmaster@dummy-host.example.com
DocumentRoot "D:/xampp/htdocs/8080"
<Directory "D:/xampp/htdocs/8080">
AllowOverride All
Order Allow,Deny
Allow from All
</Directory>
##ServerName dummy-host.example.com
##ServerAlias www.dummy-host.example.com
ErrorLog "logs/dummy-host.example.com-error.log"
CustomLog "logs/dummy-host.example.com-access.log" common
</VirtualHost>
<VirtualHost *:8888>
#ServerAdmin webmaster@dummy-host.example.com
DocumentRoot "D:/xampp/htdocs/8888"
##ServerName dummy-host.example.com
##ServerAlias www.dummy-host.example.com
ErrorLog "logs/dummy-host.example.com-error.log"
CustomLog "logs/dummy-host.example.com-access.log" common
</VirtualHost>