Server errors.
#1

Hi there ! . I bought a host for my server and posted it on the host. Today I tried to start the server and these are my errors. Can someone help me ? Please ? How fast you can guys .

Код:
----------
Loaded log file: "server_log.txt".
----------

SA-MP Dedicated Server
----------------------
v0.3.7, ©2005-2015 SA-MP Team

[15:31:42] password = ""  (string)
[15:31:42] filterscripts = ""  (string)
[15:31:42] 
[15:31:42] Server Plugins
[15:31:42] --------------
[15:31:42]  Loading plugin: nativechecker.so
[15:31:42]   Loaded.
[15:31:42]  Loading plugin: crashdetect.so
[15:31:42]   crashdetect v4.9 is OK.
[15:31:42]   Loaded.
[15:31:42]  Loading plugin: sscanf.so
[15:31:42] 

[15:31:42]  ===============================

[15:31:42]       sscanf plugin loaded.     

[15:31:42]          Version:  2.8.1        

[15:31:42]    © 2012 Alex "******" Cole  

[15:31:42]  ===============================

[15:31:42]   Loaded.
[15:31:42]  Loading plugin: mysql.so
[15:31:42]  >> plugin.mysql: R37 successfully loaded.
[15:31:42]   Loaded.
[15:31:42]  Loading plugin: streamer.so
[15:31:42] 

*** Streamer Plugin v2.7.7 by Incognito loaded ***

[15:31:42]   Loaded.
[15:31:42]  Loading plugin: audio.so
[15:31:42] 

*** Audio Plugin v0.5 R2 by Incognito loaded ***

[15:31:42]   Loaded.
[15:31:42]  Loaded 6 plugins.

[15:31:42] 
[15:31:42] Filterscripts
[15:31:42] ---------------
[15:31:42]   Loaded 0 filterscripts.

[15:31:43]    Error: Function not registered: 'SSCANF_Init'
[15:31:43]    Error: Function not registered: 'SSCANF_IsConnected'
[15:31:43]    Error: Function not registered: 'SSCANF_Join'
[15:31:43]    Error: Function not registered: 'SSCANF_Leave'
[15:31:43]    Error: Function not registered: 'Audio_CreateTCPServer'
[15:31:43]    Error: Function not registered: 'Audio_AddPlayer'
[15:31:43]    Error: Function not registered: 'Audio_RemovePlayer'
[15:31:43]    Error: Function not registered: 'sscanf'
[15:31:43]    Error: Function not registered: 'CreateDynamicObject'
[15:31:43]    Error: Function not registered: 'mysql_query'
[15:31:43]    Error: Function not registered: 'mysql_store_result'
[15:31:43]    Error: Function not registered: 'mysql_fetch_row'
[15:31:43]    Error: Function not registered: 'mysql_free_result'
[15:31:43]    Error: Function not registered: 'mysql_num_rows'
[15:31:43]    Error: Function not registered: 'CreateDynamicPickup'
[15:31:43]    Error: Function not registered: 'Streamer_TickRate'
[15:31:43]    Error: Function not registered: 'Streamer_CellDistance'
[15:31:43]    Error: Function not registered: 'Audio_SetPack'
[15:31:43]    Error: Function not registered: 'mysql_connect'
[15:31:43]    Error: Function not registered: 'SetDynamicObjectMaterial'
[15:31:43]    Error: Function not registered: 'DestroyDynamicObject'
[15:31:43]    Error: Function not registered: 'Audio_PlayStreamed'
[15:31:43]    Error: Function not registered: 'Audio_SetVolume'
[15:31:43]    Error: Function not registered: 'CountDynamicCPs'
[15:31:43]    Error: Function not registered: 'MoveDynamicObject'
[15:31:43]    Error: Function not registered: 'Audio_TransferPack'
[15:31:43]    Error: Function not registered: 'mysql_real_escape_string'
[15:31:43]    Error: Function not registered: 'sscanf'
[15:31:43]    Error: Function not registered: 'Audio_Stop'
[15:31:43]    Error: Function not registered: 'GetDynamicObjectPos'
[15:31:43]    Error: Function not registered: 'mysql_fetch_int'
[15:31:43]    Error: Function not registered: 'mysql_fetch_field'
[15:31:43] [debug] Run time error 19: "File or function is not found"
[15:31:43] [debug]  mysql_store_result
[15:31:43] [debug]  mysql_fetch_row
[15:31:43] [debug]  mysql_free_result
[15:31:43] [debug]  mysql_num_rows
[15:31:43] [debug]  mysql_real_escape_string
[15:31:43] [debug]  mysql_fetch_int
[15:31:43] [debug]  mysql_fetch_field
[15:31:43] Script[gamemodes/IBP.amx]: Run time error 19: "File or function is not found"
[15:31:43] Number of vehicle models: 0
Reply
#2

Update plugins
Reply
#3

https://sampforum.blast.hk/showthread.php?tid=353305
Reply
#4

Which ones ? I updated 10 minutes ago SSCANF but still errors. What do you think about MySQL ? Should I get the 39-2 version ?
Reply
#5

Yea, you need to update mysql plugin, streamer plugin & audio plugin
Reply
#6

Did you also update your include files too?
Reply
#7

Yes, I do. Can someone give me the link for the functionally version of MySQL ? :-s

EDIT :

I updated the Audio plugin and now this is what my compiler output says:

Код:
C:\Users\SpikeSpigel\Desktop\New folder (11)\samp03\pawno\include\/IBP/Publics/Audio_OnSetPack.pwn(1) : warning 235: public function lacks forward declaration (symbol "Audio_OnSetPack")
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Warning.
Reply
#8

open Audio_OnSetPack.pwn
find the function called Audio_OnSetPack

copy the entire line, but not the swirly bracket (if it even is on the same line) this one: {

So for example you copy this:
Код:
public Audio_OnSetPack(...)
then go 1 line above the one you just copied, paste it, and change it to be a forward declaration, like so:
Код:
forward Audio_OnSetPack(...);
End result would be something like this:
Код:
forward Audio_OnSetPack(...);
public Audio_OnSetPack(...)
{
... bla bla code of Audio_OnSetPack here ...
}
(where (...) would be replaced with whatever that function has between its brackets, ie; the arguments of the function)
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)