Support : please assist with error on RAT 3

Flo

New Member
Im trying to connect to my Telnet server, it picks up the server details but it times out on the webAPI
Please assist

2022-10-20 09:36:20 - Error getting response from WebAPI: The operation has timed out
2022-10-20 09:36:50 - Error getting response from WebAPI: The operation has timed out
2022-10-20 09:37:20 - Error getting response from WebAPI: The operation has timed out
2022-10-20 09:37:50 - Error getting response from WebAPI: The operation has timed out
2022-10-20 09:38:20 - Error getting response from WebAPI: The operation has timed out
2022-10-20 09:38:50 - Error getting response from WebAPI: The operation has timed out
2022-10-20 09:39:20 - Error getting response from WebAPI: The operation has timed out
2022-10-20 09:39:50 - Error getting response from WebAPI: The operation has timed out
2022-10-20 09:40:20 - Error getting response from WebAPI: The operation has timed out
2022-10-20 09:40:50 - Error getting response from WebAPI: The operation has timed out
2022-10-20 09:41:20 - Error getting response from WebAPI: The operation has timed out
2022-10-20 09:41:50 - Error getting response from WebAPI: The operation has timed out
2022-10-20 09:42:20 - Error getting response from WebAPI: The operation has timed out
2022-10-20 09:42:50 - Error getting response from WebAPI: The operation has timed out
2022-10-20 09:43:20 - Error getting response from WebAPI: The operation has timed out
2022-10-20 09:43:50 - Error getting response from WebAPI: The operation has timed out
2022-10-20 09:44:20 - Error getting response from WebAPI: The operation has timed out
2022-10-20 09:44:50 - Error getting response from WebAPI: The operation has timed out
2022-10-20 09:45:20 - Error getting response from WebAPI: The operation has timed out
2022-10-20 09:45:50 - Error getting response from WebAPI: The operation has timed out
2022-10-20 09:46:20 - Error getting response from WebAPI: The operation has timed out
2022-10-20 09:46:50 - Error getting response from WebAPI: The operation has timed out
2022-10-20 09:47:20 - Error getting response from WebAPI: The operation has timed out
2022-10-20 09:47:50 - Error getting response from WebAPI: The operation has timed out
 

Trekkan

JFF Administrator
Staff member
Make sure you have installed Alloc's mod.

Also set these permissions in webpermissions.xml file

Code:
<permissions>

<!-- For everyone -->
<permission module="web.map" permission_level="2000" /><!-- Map that everyone can see -->
<permission module="webapi.getstats" permission_level="2000" /><!-- Stats in the upper left -->

<!-- Only players logged in -->
<permission module="webapi.getplayerslocation" permission_level="1000" /><!-- Shows player location -->
<permission module="webapi.getlandclaims" permission_level="1000"/><!-- Shows players land claim -->
            
<!-- Moderator Only -->
<permission module="webapi.getplayerinventory" permission_level="10" /><!-- Shows player inventory -->
<permission module="webapi.viewallclaims" permission_level="10" /><!-- Shows all the players land claims -->
<permission module="webapi.viewallplayers" permission_level="10" /><!-- Shows all online and offline players -->
<permission module="webapi.gethostilelocation" permission_level="10" /><!-- Get zombies locations -->
<permission module="webapi.getanimalslocation" permission_level="10" /><!-- Get animals locations -->
            
<!-- Admin only -->
<permission module="webapi.getlog" permission_level="0" /><!-- Menu server log -->
<permission module="webapi.GetPlayerList" permission_level="0" /><!-- Menu player list -->
<permission module="webapi.getplayersonline" permission_level="0" /><!-- For API Call -->
<permission module="webapi.GetWebUIUpdates" permission_level="0" /><!-- For API Call -->
<permission module="webapi.executeconsolecommand" permission_level="0" /><!-- For API Call -->
<permission module="webapi.GetServerInfo" permission_level="0" /><!-- For API Call -->
<permission module="webapi.GetAllowedCommands" permission_level="0" /><!-- For API Call -->
<permission module="webapi.Null" permission_level="0" /><!-- For API Call -->
<permission module="webapi.GetPlayerInventories" permission_level="0" /><!-- For API Call -->
                
</permissions>
Then:
1381
 
Top