3289 comments found.
can you add Mercado Pago as a payment method? it would be nice if this product also works for LATAM with this payment method.
I’ll have a look at their api
Could you please add paystack and flutterwave payment?
Pay stack will be added in the next update.
I need membership script latest 9th December, when is the next updates?
It will be sometimes at the end of the month
is possible running this script without mod_rewrite? i have server nginx + php-fm i dont install apache
You can use Nginx config file instead.
Can users upgrade their membership/subscription level and or add addons to existing subscriptions?
User can upgrade membership at any time, but note that new membership will take over immediately regardless if there is any time left on the old one. Only one active membership at the time is possible.
Would love to see Mollie payments added in the future.
Ideal and mollie are already included.
Aha,
Having reinstalled this with a fresh install I added a test membership and it doesn’t let me delete or edit it. I’ve added another membership which shows on the front end but not in the admin panel…
That’s strange. Can you please email me from my profile page with your ftp access and admin panel login?
Hello! is it possible that a member gets a ID number, like, L1234 and can be exported on the CSV file?
Not by default, but it could be easily implemented.
if this script can add dates instread of days of weeks , membership can be from from date to date , i will buy it , also is there themes ?
You can use any period, days months years. As for the themes, there is only default one. You can however make your own, or easily change colours from the admin panel.
I need to use dates , from date to date .
Sorry, custom periods are not possible.
Hi, I’m having some problems, I can’t create a new user from the admin console, then when I try to buy a plan with PayPal, the transaction isn’t registered by the site, what could it depend on?
Hi, I’m having some problems, I can’t create a new user from the admin console, then when I try to buy a plan with PayPal, the transaction isn’t registered by the site, what could it depend on?
So many reasons. First look at your server php error log, and see if there is anything in there. Secondly make sure you have configured SMTP settings in the admin configuration.
Hi, nothing appears in the php error nor in the db, as regards the SMTP setting it is correct, the newsletters and functional emails arrive.
Could you please email me from my profile page with your ftp access, and I’ll have a look
in demo i cant find, is possible to disable front end to members?Is it possible to leave the login page directly?
Sorry, what do you mean by disabling front end to members? You can do .htaccess redirect to login page, but users will still need to see the home page.
Hi, i have an issue with the login session on front pages, when i login with a valid user on the front area it doesnt see the session but if i then goto the admin pages it sees the session. i hope this makes sense. Great product by the way
Sorry, but that does not make any sense. Session should either work or not. You can not login via front end as admin, you need to go to the admin panel side. The same goes for the front end user. They can not login via admin panel
Hi sorry if i havent explained properly, if i login with normal user on frontend it just returns to login screen and does not change the menus for profile and the rest. but if i go to admin section it goes straight to profile page. also the light dark mode does not work on frontpage but does on admin section. i cannot figure it out
1. Make sure you have the latest version of the script.
2. Make sure your php version is 8.2+>,br>
3. Make sure php session path is set correctly in your hosting panel. This is usually 99% of the time done automatically from your hosting company, but you never know.
Any update coming soon? I like this script I combine it with my software for a subscription plans 100% fire
Nothing yet.
Hello , I wanted to know if I can add custom fields to the signup pager like
School Choice of sports Image upload .
In general is the theme customizable ?
Yes, you can add custom fields (text only), and yes you can customize it in any way you want.
Hello, I have installed MMP 5.0 pro version on Ubuntu 22.0.4 and apache2 but I can only see the first page(index.php) and get 404 error for other pages.. Please support me. thanks.
Sorry, I dont see your proof of purchase.
I am working with Brian Vilborg.
Sorry I fixed the issue.. nice!
Hi,
I m using the version 4.6, and i m happy with it. i would like to perform a migration to another domain name and hosting without losing my actual Data, how can i do it?
Thank you very much
Have look here: http://ckb.wojoscripts.com/article/transferring-site/
Thank you very much, the migration is working fine except for one thing: setting a new password when password reset. i get the email with the link to set the new password, i open the link, i fill the new password , but when i click on submit nothing happen just the loading effect on the submit button, no confirmation. any idea? thanks
Same issue during the registration. The only two issues we got after the migration.
Did you set up your SMTP settings in the admin configuration page? Also enable debug console in /lib/config.ini.php and set DEBUG to true. Look for any errors or warnings. Make sure to disable console after you are done troubleshooting
the SMTP is working fine, when we reset the password we get the email
Also there s no error on the console,
I fixed the issue, i had to activate some extensions on PHP. it’s working fine now. Thank you very much
No problem
I would like to protect a php page, I thought one could use a require, includes or an API to do this. I didn’t realise from the product description but it looks like you can’t (after reading some comments). If I bring my app into your script folder could it work? I finished the app and wanted a simple out of the box protection solution, I thought this would be it.
You can still protect php pages by adding a simple php code:
<?php
define("_WOJO", true);
require_once("init.php");
?>
<?php if (!Membership::is_valid([3,4])) : ?>
Your custom error message goes here, such as Sorry you do not have valid membership!!!
<?php else: ?>
In this section here you would place your content that users with valid membership will be able to see.
<?php endif;?>
We only used two memberships in this case 3 and 4. You can add multiple memberships separated by coma such as Membership::is_valid([2,3,4,5]). Or just single user membership
Membership::is_valid([3])
That is great thank you, do you have a docs link with any other snippets on, such as redirect after login for members?
Sorry, I dont have any docs in regards to that, but if you want to redirect user on login edit /view/front/js/master.js and on line 282 find
window.location.href = config.surl + '/dashboard/';replace
config.surl + '/dashboard/' with your own url like 'http://yourdomain.com/yourpage/';
That is great thank you, is there similar for logout redirect back to login screen.
Also noticed a glitch, upon registration/signup (https://nigelw23.sg-host.com/csUsers/register/) the submit button just has the preloader spinner and doesn’t do much else.
Sorry, another thing I have found, Default Membership Access, the dropdown/select doesn’t allow me to choose any of the membership types I have created
1. Make sure your SMTP settings are configured correctly in the admin configuration page.
2. Make sure that your memberships are not set as private. Private memberships, are only available for manual assignments from user add/edit in the admin panel.
3. Edit index.php
//Custom Routes add here
$router->get('/logout', function () {
App::Auth()->logout();
Url::redirect(SITEURL . '/');
});
replace SITEURL . '/ with your own url after user logs out 'http://yourdomain.com/yourpage/'
Hi there, thank you for your reply. I have a default plan and it isn’t private yet still not selectable.
With the default membership I have in mind, I have been testing a membership that has expired but it is still letting me login. Could this be because all my plans are free?
It does not matter if they are free or not, but you need to set up cron job to run once a day, in order to automatically expire old memberships. Have a look at it here: http://ckb.wojoscripts.com/article/setting-up-cronjob/
As for memberships not showing in dropdownl list, can you please email me from my profile page with your admin login, and ftp access.
I found an error and I can’t upload the user avatar, while the notification is successful. what do I have to do.?
for favicon logos and offline payments no instructions and logo appear
favicon is stored in /assets/ folder, as for the avatar, I will take a look and provide patch if needed.
I can fix the favicon, only the avatar is still having problems
Yes, I have found the bug, and will update script right away. Thanks for reporting it. If you need it asap, please email me from my profile page
the next case I found on Pages, when I edited the Home page, and changed the content, the price package on the home page did not appear or disappeared and the price package moved on the logo. And this also happened on the contact page
Most likely your html code is affecting the layout. Dont copy and paste from the existing source, instead format your html properly
by editing just one word in html, then uploading then the problem occurs.
Can you please email me from my profile page with your url, and I’ll have a look.
I’ve sent url to you, did you see.?
Reply sent.
Hi Alex! please I want to buy the last update of this script
Please is it possible ? get back to me it’s urgence.
Thanks
Sure, you can buy it
No! Sorry I want This new Update and the old version before this new: the both.
Sure, I can send you the previous version as well.
Hi, how do I log in for the demo? I can’t enter the username and password
User Login Username: demo Password: password
Those are correct, and 100% working. https://mmp.wojoscripts.com/
thanks