[Release]Full working webmall

05/27/2012 16:57 tracker62#16
yes because the member can register
I or those not too or is the change

[Only registered and activated users can see links. Click Here To Register...]
05/27/2012 19:07 mirazass#17
Quote:
Originally Posted by treica View Post
I finished the full webmall decoded, deleted its security, fixed sql injection on login.
Use the readme to learn how to install it.
You need a webserver
And MySql
Remember to go on admin panel, you have to introduce on config.php your in game admin account. (work only with ranked 16 accounts to log on administrator panel).
It is working with all types of mssql 2000, 2005, 2008, 2012
Credits goes to Mirzass for the great script :)

Code:
//full link to your script location (other setting dont change)
$config = array(
	'home_url' => 'http://yourwebsite.com/webmall',
	'random_code' => 'type an random code to prevent sql injection',
	'max_slots' => 20,
on the random_code line type an strong password to prevent injection max 20 chars !
What i tell you last times its a gliched Version it will not work like original you can decode files but decoders hawe bugs to they translate code but not full like original so this what you get when you tray decode it aloooot lag and shit that not work properly so what i can tell you contact To CREATOR ME
05/27/2012 21:30 Riouk#18
Quote:
Originally Posted by mirazass View Post
What i tell you last times its a gliched Version it will not work like original you can decode files but decoders hawe bugs to they translate code but not full like original so this what you get when you tray decode it aloooot lag and shit that not work properly so what i can tell you contact To CREATOR ME
Shhht someone give for free what you try to sell it's your fault, you gave it.
Sorry bro you will not make any benefit with this script.
05/27/2012 22:13 tracker62#19
So can someone tell me how to settle my concern
05/27/2012 22:39 treica#20
Hmm...well this still wrok well..for now i think is better for a free version :p
05/27/2012 22:45 mirazass#21
Quote:
Originally Posted by Riouk View Post
Shhht someone give for free what you try to sell it's your fault, you gave it.
Sorry bro you will not make any benefit with this script.
Bro dont strees i fucking did this script and i think i know how its shod work so shut up and go fu... y,, se.... if i tell you that its copy then it is
05/27/2012 22:53 tracker62#22
????????????? please
05/27/2012 23:07 treica#23
Please, don't start dramas here, as long has been posted to public, we are free to made it free.
05/27/2012 23:29 mirazass#24
so whay use tool that cant be used normal? it not work just not work im not add all files to that coded files so how you can say that its work if its not work
05/28/2012 00:05 tracker62#25
if I stop the player registration entries does it work

????????????

possible to have 'help please
05/28/2012 02:36 JohnHeatz#26
As it was stated, stop the drama please, if you have something to say about this, do that on private messages.

Quote:
Originally Posted by mirazass View Post
Bro dont strees i [...] did this script and i think i know how its shod work [...] if i tell you that its copy then it is
Now, I have something really good to say about this, you certainly know how this works, as you left a backdoor on the script, what I noticed done by treica was that he took out that backdoor and changed some details on the script so that it won't work.

Certainly, this is not the place to explain what that backdoor is/does, but you definitely know what I am talking about, so keep drama away from this thread or it will simply get deleted, and, if needed, infracted.
05/28/2012 03:26 -Elliot-#27
i dont know how many of you have this issue with this release, everything its work great except one thing when i added the items to the mall when i bought it and log into the game i don't see any item in the game. On the Bank Teller.

Now if i got to the db on UserStoredPointItems i see the items are in there. so why i cant no see inside of the game any Idea.?

But if i add the items manually to the bank teller of any account the item show in there bank teller.
05/28/2012 04:19 tracker62#28
I asked for help is all
???

I do not understand I cut the online registration and webmall works ok

I wonder who will be able to tell me I should do
06/01/2012 02:05 treica#29
to fix your login problem i found the fix. Script has using as primary RowID and i changed to use UserUID, so now can use it everyone.

go to webmall/system/modules/user/validation edit validate_login.php and replace with this one
Code:
<?php
if (isset($_POST['login'])) {
	$post_data = do_request($_POST, true);
	$back_url = str_replace('&', '&', base64_decode($_POST['back_url']));
	
	if ($_POST['js_enabled'] != 1)
		set_msg('You must have javascript enabled in yout browser', 'error', $back_url, 'login_msg');
		
	
	if (!$post_data)
		set_msg('Please fill all fields', 'error', $back_url, 'login_msg');
		
	$query = mssql_query("SELECT UserUID FROM PS_UserData.dbo.Users_Master WHERE userID = '{$post_data['username']}' AND Pw = '{$post_data['password']}'");
	if (mssql_num_rows($query) <= 0)
		set_msg('Bad username and/or password', 'error', $back_url, 'login_msg');
		
	session_regenerate_id();
	write_session('username', $post_data['username']);
	write_session('userHA', md5(md5($_SERVER['HTTP_USER_AGENT']).md5($config['home_url']).md5($config['random_code']).$post_data['username']));
	redirect('index.php?cat=1', true);
}
?>
06/01/2012 13:34 tracker62#30
thank you very much