[Release]Full working webmall

05/27/2012 07:09 treica#1
I have just finished the SQL version of the Web Mall.

First i have tested this on SQL 2012 my dbo.UsersMaster doesn't contain RowID so you might have to change the queries inside the script if yours does!

1. You have to run first database.sql it will create PS_WebMall database.
2. Run the sql.sql to create the donate_items table.
3. Edit the config.php to add your server and admin account details.
4. Done!

Filename to download : webmall v2.zip (redownload if you did early)

Code:
- Removed in the header the small AP icon
- Removed Price : -AMOUNT- (looks better with only -AMOUNT- + icon)
if you are unable to logout from webmall user area replace in webmall\system\modules\user\validation\validate_lo gout.php your old code with

Code:
<?php
if ($user_is_logged) {
	session_destroy();
}
redirect('index.php', true);
?>
For who wants the mysql version is still attached.
05/27/2012 07:50 anton1312#2
Logout dont work. Redirect to admin.php
05/27/2012 07:57 treica#3
You can simple to modify the system / modules / admin logout.php where to redirect to, is very easy.
05/27/2012 12:58 tracker62#4
I see the problem or just my voice but not how the settled
when modifying this here to make the registration
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
05/27/2012 14:19 treica#5
Make UserUID with auto increment, not UserID thats why is not working for you, because the script is using UserUID as default column,
05/27/2012 14:44 tracker62#6
ok how it is I please

Registration player ok but the store does not work
05/27/2012 15:29 .Shaco.#7
I don't know why the item mall need MySQL? Instead of MSSQL which is used for Shaiya Server. I've manged to use ONLY MSSQL instead of MySQl and MSSQL.
05/27/2012 15:35 tracker62#8
OK HOW I DONE

please
05/27/2012 16:27 JohnHeatz#9
It is a good question as of why did you decide to use MySQL instead of MSSQL, yet as far as it works and if needed, there can be a migration of this to MSSQL, it is easier to do this when you have something to base on.

#Added to Index to Develop a Server
05/27/2012 16:30 tracker62#10
ok but how to solve its
05/27/2012 16:37 treica#11
If you set the right informations on the config.php is working well see here a demo with mall.
As i saw in your earlier post you have to set UserUID as auto incremention because in your photo is UserID with autoincremention.
Will never let you login if you do not do that.

[Only registered and activated users can see links. Click Here To Register...]

ID: danidani
Pass: danidani
05/27/2012 16:40 tracker62#12
Bad username and/or password

??????????

[Only registered and activated users can see links. Click Here To Register...]
05/27/2012 16:49 treica#13
Sorry i was set the admin link...now is working.try again!
05/27/2012 16:51 tracker62#14
yes but why not just me it works the panel
05/27/2012 16:53 treica#15
See my earlier explanation to you, make UserUID as auto increment in your User_Masters table