Provided you have not made any additional changes to the CMS, you can replace every file with no conflictions. After you have replaced these files, go to
./core/config/config.php and go down to the section for the item store. You will see the following:
Old Config Block
//- RA/Telnet Settings - Manual Edit
$ra_host = ""; #- World Server Host
$ra_user = ""; #- Account Username (Access = 4)
$ra_pass = ""; #- Account Password (Access = 4)
These variables have been changed, because we no longer rely on Remote Access (RA) for the CMS. We use Simple Object Access Protocol (SOAP). You should change the variable names to the ones below.
New Config Block
//- SOAP/Telnet Settings - Manual Edit
$soap_host = ""; #- World Server Host
$soap_user = ""; #- Account Username (Access = 4)
$soap_pass = ""; #- Account Password (Access = 4)
After that, you will have to go into your 'realms' table in the cms' database. The column 'ra_port' was changed to 'soap_port'. After you've gone into your 'realms' table in the cms' database, execute the following query:
SQL Query to Change Column Name
ALTER TABLE realms CHANGE `ra_port` `soap_port` int(32) default NULL;
Reload the realms table and verify if the column name 'ra_port' has been changed to 'soap_port'.
You should be done updating the CMS.