
Originally Posted by
Omegalll
thx, but which is the configuration of the offline update system?
Setup a HTTP-server (Apache, nginx) at the machine your running the gameserver on, for the config I'm fine with this:
Code:
$LOCAL_PUBLIC_IP_ADDR = YourNetworkIP
$HTTP_PATCH_IP = $LOCAL_PUBLIC_IP_ADDR
$HTTP_PATCH_PORT = 80
$AUTO_UPDATE_SERVER_TYPE = HTTP
$DOWNLOAD_HTTP_SERVER_IP1 = $HTTP_PATCH_IP
$DOWNLOAD_HTTP_SERVER_IP2 = $HTTP_PATCH_IP
$DOWNLOAD_HTTP_SERVER_PORT = $HTTP_PATCH_PORT
$DOWNLOAD_HTTP_SERVER_ACCOUNT = anonymous
$DOWNLOAD_HTTP_SERVER_PASSWORD =
$CLIENT_UPDATE_DOWNLOAD_HTTP_DIR = /autoupdate/aceonline
$LAUNCHER_FILE_DOWNLOAD_HTTP_PATH = /autoupdate/launcher/Launcher.atm
$DELETE_FILE_LIST_DOWNLOAD_HTTP_PATH = /autoupdate/deletefilelist/deletefilelist.txt
$NOTICE_FILE_DOWNLOAD_HTTP_PATH = /autoupdate/notice/notice.txt
$VERSION_LIST_FILE_DOWNLOAD_HTTP_PATH = /autoupdate/aceonline/versionlist.ver
And this is the structure of my webroot:
Code:
\web\autoupdate\aceonline\1.0.0.10_1.0.0.11.zip
\web\autoupdate\aceonline\1.0.0.11_1.0.0.12.zip
\web\autoupdate\aceonline\1.0.0.12_1.0.0.13.zip
\web\autoupdate\aceonline\1.0.0.2_1.0.0.3.zip
\web\autoupdate\aceonline\1.0.0.3_1.0.0.4.zip
\web\autoupdate\aceonline\1.0.0.4_1.0.0.5.zip
\web\autoupdate\aceonline\1.0.0.5_1.0.0.6.zip
\web\autoupdate\aceonline\1.0.0.6_1.0.0.7.zip
\web\autoupdate\aceonline\1.0.0.7_1.0.0.8.zip
\web\autoupdate\aceonline\1.0.0.8_1.0.0.9.zip
\web\autoupdate\aceonline\1.0.0.9_1.0.0.10.zip
\web\autoupdate\aceonline\Launcher.atm
\web\autoupdate\aceonline\lversion.ver
\web\autoupdate\aceonline\versionlist.ver
\web\autoupdate\deletefilelist\deletefilelist.txt
\web\autoupdate\deletefilelist\deletefileslist.txt
\web\autoupdate\deletefilelist\dversion.ver
\web\autoupdate\launcher\Launcher.atm
\web\autoupdate\launcher\lversion.ver
\web\autoupdate\notice\notice.txt
\web\autoupdate\notice\nversion.ver
Also see the post of FutureAR:

Originally Posted by
FutureAR
(...)