3289 comments found.
Hello where is the change log from your latest update?
same way as before, just upload new logo from admin configuration page, or via ftp into /uploads/ folder and make sure the name is the same
I mean where can I see your updated features?
Not logo
Sorry, my bad. Latest updated brings php8.2+ compatibility, nothing major.
Is there any documentation or plugin like way to add another payment system? Here in India we have payment gateways like Paytm Razorpay etc.
If no documentation could you please provide an insight on this payment module for a quick start for adding any of these payment system
I have already implemented razorpay for one of my other scripts (non recurring payments only). I can provide the files for you if you need it.
Thanks for clarification. Im just to have this script, please let me know how you may transfer those files (Razorpay is my primary gateway)
Just send me a quick email from my profile page
Done. Please check your inbox
reply sent
Thinking about buying this script, however I do not see that there is an option for user to cancel stripe subscription.
Do you plan on adding this? If so I will buy once that feature is added.
Yes, this option will be added in the upcoming update, for now only admin will be able to cancel stripe subscription
Live demo not working
its up again.
Hello, I want coupon customization.
Ok, email me from my profile page with your request.
Hello! After adding in the secret key for stripe, I tried testing but nothing happens when I click on stripe checkout. Also, when signing up a new member, The screen just continues to load. How can I fix these two issues?
see my reply below
Hello! After adding in the secret key for stripe, I tried testing but nothing happens when I click on stripe checkout. Also, when signing up a new member, The screen just continues to load. How can I fix these two issues?
For a user registration, you will need to configure your SMTP settings in mailer section in admin configuration page, as for the stripe, I’m not sure, but you can enable debug mode in /lib/config.ini.php and set DEBUG to true. Try stripe again, refresh page and look for any errors or warnings within console tabs. You can email me the results from my profile page
I emailed you with the errors for email and stripe issues.
Reply sent
Hello. The program is having serious problems. All users cannot login.
auth.class.php is no longer working properly.
Specifically, the function below always returns false. protected function _validate_login($pass, $hash, $salt)
We have confirmed that a minor update was made to 8.0.28 on February 15th.
possibly related to “CRYPT_BLOWFISH”, It seems that the code changes in crypt_blowfish.c have been incorporated.
https://github.com/php/php-src/commit/c840f71524067aa474c00c3eacfb83bd860bfc8aHow should this be resolved?
Php 7.4 for now, or 8.10, Until I rewrite hashing module.
got it. thank you!
presale question:
Hi,
Your systems seems good.
We would like to extend this system to match our need.
1) What is the version of Laravel system? 2) Can we develop subscription management system? 3) Can we build query builder within your system? 4) is it possible to create API to connect with mobile apps? 5) are you available to develop this above?
I look forward to hearing from you soon.
Regards,
MMP does not use laravel, and its already has built in subscription system, all the rest is possible with the additional development. For my availability, please email me from my profile with your request.
It was working fine for a while, but today all of a sudden all users were unable to log in.
It says the passwords do not match. I haven’t messed with anything.
$validpass = $this->_validate_login($pass, $row->hash, $row->salt);
validpass returns false.
It returned true until yesterday.
why is this?
Code does not stop working for no reason, something was definitely changed. IF you have a backup from your server, just restore it.
Hi, I purchased this lovely script back in 2020 that was working on php 7.3. Now, php 7.3 support is stopped and I am working on php 7.4 onwards. Now facing an issue of Notice: Trying to access array offset on value of type null8 Kindly guide how can I fix this issue, as now I am unable to work further on it. Waiting for your favorable and urgent response. Thanks Email: ayazmah@hotmail.com
You can just download the latest version and update, it fully supports php 7.4 +
i am really intrested to buy this script , I have pre-purchase queries : i have a existing php script with user login system, do i integrate this code in my existing system and user it or this script need stand alone installation ? and if i buy can you help me our to setup this with my existing php code ?
I would suggest replacing your existing script with Membership Manager Pro , since it has login and user management built tn . Unfortunately will not be able to help you integrate the two scripts.
no no that is not a membership script , i am saying i am having a php script where i have user login system only .. i need to integrate payment management system on that
do you have Skype id , so lets chat on skype so i can explain you well
You can email me from my profile page.
i did please reply
Hi there, I purchased the product. I have some questions for the MEMBER portal, not admin:
1. Can you explain the steps for a user to cancel their subscription? If it’s not possible right now through the member portal, perhaps provide some guidelines, and code to assist with this process?
2. Can you explain the steps for a user to Renew their subscription? If it’s not possible right now through the member portal, perhaps provide some guidelines, and code to assist with this process?
Subscriptions are automatically renewed, for stripe, just setup a cron job as per install manual. In regards to canceling, user would need to do it on their own. For example paypal subscription, needs to be canceled by user from their paypal account
Hello, I have a problem with the script, when I host it on my server (o2switch) I can’t upload a file, I always get an error message like in the image (http:/ /swarftcitymultiplay.free.fr/problem.jpg) Please tell me what to do please thank you.
How can I create a new page? My page cannot be opened. What have I done?
1 index.php adjusted:
$router‐>get(’/login’, function() use ($tpl) { $tpl->template = ‘front/login.tpl.php’; $tpl‐>title = “News Login ”; });
2 new page in folder /view/front/login.tpl.php
However, the page cannot be open. Where is the mistake? Thanks.
//Custom Routes add hereadd:
//User login
$router->match('GET|POST', '/login', function () use ($tpl)
{
if (App::Auth()->is_User()) {
Url::redirect(SITEURL . '/dashboard/');
exit;
}
$tpl->template = 'front/login.tpl.php';
$tpl->title = Lang::$word->LOGIN;
});
and make sure that /view/front/login.tpl.php exists with the following code right on top:
<?php
if (!defined("_WOJO"))
die('Direct access to this location is not allowed.');
?>
Great, it works. One more question: I would like to keep the layout of the original index.tmp.php file in the new login.tpl.php file. What do I have to adjust for this? Thanks
You will need to use the same header and footer.
//User login
$router->match('GET|POST', '/login', function () use ($tpl)
{
if (App::Auth()->is_User()) {
Url::redirect(SITEURL . '/dashboard/');
exit;
}
$tpl = App::View(BASEPATH . 'view/');
$tpl->dir = "front/";
$tpl->template = 'front/login.tpl.php';
$tpl->title = Lang::$word->LOGIN;
});
Great, thanks for the support.
no problem.
Where can I now create my own index page (landing page)?
its index.tpl.php file that can serve now as landing page since you have a different login page.
Hello again, can you please tell me if it is possible to incorporate a affiliate module into this script? If will provide each user with their own personal affiliate link and have the ability to set commissions in the admin section? Commissions will be based on the purchase of membership packages instead of products or services of course. How difficult would it be?
It is possible, but that’s a lot of work. There is a plan for affiliate feature, but at this time I cant provide any dates.
Thanks for the information.
Hello, the installation is complete. How can I change the language to German easiest? There is only an EN and FR XML file. Thank you.
Make a copy of en.lang.xml to de.lang.exl, and change the default language from the admin panel . Afterwards just translate it.
This script is far beyond our needs. We simply want to protect existing pages on our website. Too much time involved in using this. We request a refund.
You can only protect html pages, not php as per your previous comment. Unfortunately I can not issue refund just because you have spent few hours trying to figure out basic things.
Thanks for the prompt replies;
Your replies seem reasonable; but, in our case, trying to use this software for our simple purposes will be very time consuming. That time will translate into additional substantial financial investment.
Yes, we spent lots of time trying to figure out “simple” things. We should NOT have to do that. There are numerous options for us to easily accomplish our goal, even with our stupidity; this software is NOT one of those options.
Our refund request is NOT frivolous. We did apply lots of time and effort to get this software setup.
We actually did Google search and found several references, including the url you mentioned.
As advised, we contacted our hosting provider and was told that our server does not support using the wget command and we would need to upgrade to a VPS or dedicated server.
We found, and used, a free cron job setup service mentioned as a solution in one of the Google search returns: https://www.easycron.com/
We thoroughly reviewed the help section for instructions on protecting our existing pages. We could not figure out how to easily do that.
Upgrading step by step through each version is another time-consuming process.
We applied a lot of time, in good faith, attempting to set this software up.
Maybe we are too stupid to use this software. We are not able to apply an inordinate amount of time attempting to use this software.
In that case, based upon our stupidity, we respectfully request a refund.
And, we apologize for being too stupid to use your software.
Thanks for your consideration,
Leonard
Good day; our hosting provider does not assist with cron job setup. We see that it can be done in cpanel. Is setup in cpanel okay? Can you help with the command(s) we should use? Thank you.
We set this command in cpanel (but, our server does NOT support the wget command): wget q -O https://cryptoaudiocourses.com/members/cron/cron.php
Cpanel does support wget, it has nothing to do with your hosting. Quick google search would solve the problem: https://zeropointdevelopment.com/set-up-a-cron-job-in-cpanel-wpquickies/
Good day; not quite understanding about the “no upgrades” issue. Just purchased and installed version 4.0 from Sept 2016. Can you explain what we have here in terms of upgrades and bug fixes? Is this the Sept 2016 version without upgrades? Thank you
You can always upgrade using incremental update packages. regardless of your version. Since you have 7 year old script, i would highly recommend upgrading to the latest version.
We spent more than “a few” hours trying to figure out “basic things”; but, we are not STUPID. The software is NOT intuitive and REQUIRES many many hours to get to actually use it.
We think our refund request is very reasonable due to the fact that we DID spend several hours attempting to set it up for use!