Osclass forums
Support forums => Plugins => Plugin Payments => Topic started by: AdMeGreek on October 28, 2014, 09:31:49 pm
-
Can Admin add money manually to a user's wallet???
-
What is a wallet? Is this part of a shopping cart?
-
Hi,
Not using the Payment plugin, but you can do it this way:
1.- Create a file with extension .sql using a text editor with this content:
SET @user = 7;
SET @credits = 200;
INSERT INTO /*TABLE_PREFIX*/t_payments_wallet (fk_i_user_id, i_amount) VALUES (@user, @credits)
ON DUPLICATE KEY UPDATE i_amount = i_amount+@credits;
Change @user and @credits values and save.
1.- Import that file on Admin Dashboard -> Tools -> Import Data.
Regards
-
so every time that I want to add money manually to specific user , I will do this???? for every user that i want??
I think the "payments" wallet has money, not credits. its the same???
@bengalliboy the wallet is part of Payments plugin when someone buy a PACK
-
Hi,
Not using the Payment plugin, but you can do it this way:
1.- Create a file with extension .sql using a text editor with this content:
SET @user = 7;
SET @credits = 200;
INSERT INTO /*TABLE_PREFIX*/t_payments_wallet (fk_i_user_id, i_amount) VALUES (@user, @credits)
ON DUPLICATE KEY UPDATE i_amount = i_amount+@credits;
Change @user and @credits values and save.
1.- Import that file on Admin Dashboard -> Tools -> Import Data.
Regards
I made that BUT, I dont see any change at user's wallet.
At MySQL I saw the points to the user's values but at user's dashboard/wallet I dont see the specific value that I add.
I put money only with the normal way (paypal) :(
Im searching the way to add money manually :/
-
up....Im searching too