Re: iGunZ/Xenon website coded with a bunch of fixes
iGunz is the hot topic apparently in this Gunz release section, too bad their is only negative reactions from the people who actually worked on the website. You guys meaning Akunji , Ironic, Juri3n, Wizkid should had discussed it out before releasing so you know who deserves which credits.
From the opened threads about iGunz website, Wizkid made a complaint that he didn't get any credit for making his Paypal script. Ironic now claims that he's not allowed to release the PSD. Jur3in( Sorry I'f I'm spelling you're not wrong.) Claims he coded the website but others are claiming different. Get you're stuff together and work it out before releasing rofl, Take it some where else though.
Re: iGunZ/Xenon website coded with a bunch of fixes
Quote:
Originally Posted by
WizCoder
iGunz is the hot topic apparently in this Gunz release section, too bad their is only negative reactions from the people who actually worked on the website. You guys meaning Akunji , Ironic, Juri3n, Wizkid should had discussed it out before releasing so you know who deserves which credits.
From the opened threads about iGunz website, Wizkid made a complaint that he didn't get any credit for making his Paypal script. Ironic now claims that he's not allowed to release the PSD. Jur3in( Sorry I'f I'm spelling you're not wrong.) Claims he coded the website but others are claiming different. Get you're stuff together and work it out before releasing rofl, Take it some where else though.
Wizkid made a joke, Irvin hasn't been online for 3-4 months and jur13n was fine with me releasing it.
Next to that everything is made FOR iGunZ which means im the owner of it.
Its not theirs, they gave it to me.
Only one making 1 big problem is irvin because he thinks he owns the world.
Re: iGunZ/Xenon website coded with a bunch of fixes
Thanks,Anotherone for my collection,
Re: iGunZ/Xenon website coded with a bunch of fixes
i got Error i cant login
Every thing is okey but i got error
look::
Quote:
Warning: mysql_real_escape_string() [function.mysql-real-escape-string]: [2002] A connection attempt failed because the connected party did not (trying to connect via tcp://localhost:3306) in C:\AppServ\www\home\pages\regconfigclone.php on line 4
Warning: mysql_real_escape_string() [function.mysql-real-escape-string]: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. in C:\AppServ\www\home\pages\regconfigclone.php on line 4
Warning: mysql_real_escape_string() [function.mysql-real-escape-string]: A link to the server could not be established in C:\AppServ\www\home\pages\regconfigclone.php on line 4
Fatal error: Maximum execution time of 60 seconds exceeded in C:\AppServ\www\home\pages\regconfigclone.php on line 4
Re: iGunZ/Xenon website coded with a bunch of fixes
You coded this?
I was fixing that login_pk error for a friend, and for the love of god, what the hell did you do there?
Code:
if (isset($username) && isset($password) && isset($email)){
if (empty($username) && empty($password) && empty($email)){
die('Account could not be created.');
}
You see, if the variables, $username, $password and $email were not empty, this would not have been parsed:
Code:
if (empty($username) && empty($password) && empty($email)){
die('Account could not be created.');
}
And the code that wouldn't be parsed unless the variables weren't empty, checks again if the variables are empty.
Fixed it to my friend, I guess, http://pastebin.com/03m7kBF7.