
adivirus
Members-
Posts
96 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by adivirus
-
you are right, i also bought several mods over the years and most of them were using mysql_*
-
indeed, i need to review all the pages and make the code more cleaner, eventually to use db class code. thanks for suggestion.
-
my game suffered lots of modifications since 2008, added lots of things to the files, so i started to test it with php7 on a test server, it seems that i need to modify every mysql_() , mysql_query to mysqli, as i always used mysql line instead of mysqli .. that's for start :) thanks.
-
Hello, can anyone tell me if mccodes 2.0.2 its working with php 7.0 ? do i need to update/modify something inside the code for the engine to work with this version of php? let me know. thank you.
-
Hi, thanks but i just did it by myself so users can now enter quantity directly from inventory. thanks anyway :P
-
interesting, thanks for the tip.
-
yea, i will end up by doing it by myself :) thought there is already an existing improved and secured itemuse.php
-
Yep, that's right :) multiple item use is good for medicinals and special items like IQ and any other item that have an effect in the itemuse.php. like for example an iq item that gives +20 iq .. instead of clicking multiple times to use let's say 100 items, just to enter the quantity and gives you 100x20 IQ and so on..
-
Hi, is there any working multiple item use mod for v2? thanks.
-
yea, that's annoying. no updates on this mod ? :(
-
any news?
-
any updates? :)
-
Does this addon fix the scroll problem? as you know on dave's chat mod it's hard to scroll up because page always going down :) and you can't read older posts. thanks
-
well, can you code something like this? also what about the mailbox ? and how much do you charge for it. thanks :)
-
Hello, anyone can make an improved mailbox system ? ajax/jquery with smilies and the possibility to check for example a number of mails using a radio button then do delete them all, instead of deleting each mail as the actual as the original mailbox system. also i'm interested in a chat system similar to facebook chat, so you can see your friends online and chat with them. any other improvements are welcomed. thanks.
-
I have lowered the price for mccodes v2 licenses to $60. i have 2 for sale, PM if interested.
-
i haven't setup the API in PayPal as HTTP 1.0 worked without API setup...
-
is this working? as i said before i did that replacement since start.. but no result. the packs were not auto-credited to the buyers.
-
Hello, well, it has $header .= "POST /cgi-bin/webscr HTTP/1.0\r\n"; my ipn_donator works too with HTTP 1.0 but it's not working with HTTP 1.1 as paypal forces use to use from october. Have u tried with HTTP 1.1 too ? thanks. this is what they say: Action Required before the 7th of October, 2013 Merchants need to update their IPN and/or PDT scripts to use HTTP 1.1, and include the “Host” and “Connection: close” HTTP header in the IPN postback script. PHP // post back to PayPal system to validate $header="POST /cgi-bin/webscr HTTP/1.1\r\n"; $header .="Content-Type: application/x-www-form-urlencoded\r\n"; $header .="Host: www.paypal.com\r\n"; $header .="Connection: close\r\n\r\n";
-
common, nobody uses the new HTTP. 1.1 required by paypal starting october? ipn_donator will not work anymore with HTTP 1.0 as it's now, so the system will not credit users after they buy a pack unless the ipn_donator is modified to use HTTP 1.1 // post back to PayPal system to validate $header="POST /cgi-bin/webscr HTTP/1.1\r\n"; $header .="Content-Type: application/x-www-form-urlencoded\r\n"; $header .="Host: www.paypal.com\r\n"; $header .="Connection: close\r\n\r\n"; as i said before, this is the only change i made in the original ipn_donator so it's not working .. anyone has a working one? thanks..
-
is there anyone using the new HTTP 1.1 ? :) anyway.. we will all be forced to use it from october as paypal says..
-
well, now i get only "1" in that file .. do you use HTTP 1.1 with your ipn donator ? if yes how did u make it work ?
-
i have also tried with this line, as i heard it's important.. but still not working: while (!feof($fp)) { $res = fgets ($fp, 1024); $res = trim($res); //NEW & IMPORTANT
-
i don't know where should i put var_dump ( file_put_contents($file, $current); <-- HERE ? ), do you have a working ipn with HTTP 1.1 ? :| if i switch back to HTTP 1.0 everything works..
-
thanks, tested with a payment and got this inside the file: 'Resource id #6' :| any idea.. ?