Search Results
That means that the shared MySQL client library is not present on the server. You can either install the appropriate library, or use the statically linked version of the plugin.
309
Quote: Originally Posted by xkirill Downloaded v2.2.3 and updated the files. it continues to say that there is a new version although it say above that it loaded version 2.2.3 Yes with pa...
2,003
Quote: Originally Posted by Nealll Hello, I am currently developing a panel samp and I use this plugin but I have trouble with the transition pawn - php ( password_verify (), password_hash...
2,003
Quote: Originally Posted by xkirill I am running the plugin on Debian 7.7, gcc version 4.7.2-5 The plugin loads and everything looks fine on the server log, but the callbacks are never cal...
2,003
Quote: Originally Posted by ****** I like how "coding properly" isn't an option, just "relying on the system without thinking". Could you outline what implies of "relying on a system wi...
143
Quote: Originally Posted by xkirill I have a few questionsDoes it work with CentOS ? And how do I know what is the maximum cost I can put in ? If I change the cost someday with already a f...
2,003
Why exactly are the API keys out of question? I didn't quite understand the reason
347
You could check the source IP addresses using $_SERVER["REMOTE_ADDR"], which cannot be spoofed. Any other IP headers can be easily spoofed, and you shouldn't rely on them. Alternatively, you could us...
347
Quote: Originally Posted by ]Rafaellos[ Can you explain how it does work if it's possible? I stuck in the pawn Code: if ((string[i + 1] > 47) && (string[i + 1] < 58)) part. ...
227
Hello, I've been working on a dynamic string library for Pawn, which would be to some extent similar to the string library in C++ standard libraries. Some of the features would be the dynamic nature ...
68
@Bews You could give the new version (v0.2) a shot, and see if it performs better than the previous version. It should now parse all the includes, and also solve the issues you pointed out. @RajatPaw...
603
I am currently working on a new version which does not use the pawn preprocessor, but instead the files are parsed manually. The benefit is vastly improved performance on large files and the ability t...
603
Quote: Originally Posted by Bews Maybe it just me, but I have some functions and defines missing in the output (for ex. Create3DTextLabel). NPC include seems to be ignored completely (yes ...
603
Download the binaries from the releases page and replace pawncc.exe and pawn.dll files in your pawno/ folder with the new ones. The downloads are availble here: https://github.com/Zeex/pawn/releases
145
Zeex has released a version of the pawn compiler which pathces some of the bugs and limitations of the compiler bundled with SA-MP, including the input line too long error: https://github.com/Zeex/paw...
145
Quote: Originally Posted by Vince Use of the datetime field is up for discussion. I've always preferred regular Unix timestamps. In any case you should use UTC_TIMESTAMP() rather than NOW(...
509
Quote: Originally Posted by Mellnik I refer to https://sampforum.blast.hk/showthread.php?tid=496953 pawn Код: stock CheckPlayerPassword(playerid, hash[]){    #if USE_MYSQL == true...
2,773
Oh boy. It hurts to see how you deal with the passwords in this filterscript, and then release it to the public... Passwords should never be hashed in the SQL query, nor should MD5 be ever used for h...
2,773
Quote: Originally Posted by Y_Less Dropbox is a general purpose file store. For code there are much better specialised solutions, called code repositories. GIT, SVN, Mercurial, Darcs, CV...
438