1146 comments found.
pre purchase question…can i secure html pages? also can the pages be secured based on individual user account, for example can page1.html only be viewable by user1 and page2.html only viewable by user2 ect.?
also can i make it so say user1 logs in on login page then automatically gets directed to page1.html and same for user2 when user2 logs in they get directed to page2.html?
Hey,
Assuming that you have PHP installed on your server, you’ll need to change the extension for those files to php and then add the necessary php code to prevent unauthorised access as it is explained inside the docs: https://milos.support-hub.io/articles/advanced-security-protect-your-pages
As for allowing page1 to only be viewable to user1 you’ll need to either write a custom logic for that or to utilise different user roles.
Regards,
Milos
Can you post details on how to create a new form and have it handled using AJAX and submitted to a database
Hey,
The whole procedure is pretty simple if you are familiar with PHP and JavaScript. In short, you need to do the following:
1. Write a form HTML in a new file or in one of the existing files. For example, the HTML for the login form is in login.php file.
2. Write the javascript file that will submit that form to the server. For login form, the logic is in “assets/js/app/login.js” file. Note the “action” parameter that is being sent to the server, since that’s the value that you will use in the next step to handle that request.
3. Update the ASEngine/ASAjax.php file and add new “case” into the switch statement by using the same value that you have provided in the “action” field from above. You can handle the whole logic of the request here or you can make a new class or use an existing class for it. For example, for login purposes there is the ASEngine/ASLogin class that the app is using.
Btw, your support for this item has expired. Please extend the support if you have any other questions.
Kind regards,
Milos
Hi please help in the confirmation email can send some vars like email and password set at registration form. PLease Help Urgent
Hey,
I will highly recommend you not to include the password in the confirmation email for security reasons but, if you want to do it, you can update the /templates/email/confirmation-mail.php template and then customize the confirmationEmail method in ASEngine/ASEmail.php file. If you add some extra parameters to that method, it is being called in ASEngine/ASRegister::register method so make sure that you pass all the required parameters there as well.
Btw, for any future requests please submit a ticket on https://milos.support-hub.io
Kind regards,
Milos
I need your help immediately. No user can register. When they register. They dont have no email confirmation, Their registration page stay the same page and the button can say creating accout…. for almost an hour. But it will appear inside the admin users account.
Hey,
It looks like your server is not properly configured for sending emails or your mail server is not working properly. I would recommend you to debug the AJAX request that the app makes during the registration and response that is being returned from the server, as well as your php error logs to see what can be the issue.
For any future requests please create a ticket on https://milos.support-hub.io since it is much easier for me to track the created tickets and to reply faster.
Btw, I usually respond to any tickets or questions within the 24 hours or so, but I’m not available for to respond immediately. Thanks for understanding.
Regards,
Milos
Hi, I would like to protect a page in a subfolder, but I keep getting the code in “Protect your pages” wrong:
<?php
include ‘ASEngine/AS.php’;
if (! app(‘login’)->isLoggedIn()) { redirect(“login.php”); } ?>
Can you tell me how to do it. I imagine it won’t be too complicated, but there’s no way it’ll work?
Hi,
Unfortunately your support for this item has expired. Please extend the support if you have any questions.
Kind regards,
Milos
Can i use this script for my own developed website?
Hey,
Of course you can. If you are familiar with PHP you can easily protect your existing pages, like it is explained inside the docs: https://milos.support-hub.io/articles/advanced-security-protect-your-pages
Kind regards,
Milos
Thanks for your fast reply.
Hi, the demo is not working. Could you please fix it?
I see that you have another one (laravel based) but i personally don’t like laravel.
Thanks.
Hey,
What exactly is not working for the demo website? I’ve just tested it and everything seems to work as expected.
Vanguard, my other application built on top of Laravel, is a completely different product with different set of features.
Regards,
Milos
Thanks for your fast repl, it’s live now. I’ll be checking it.
Hi, I am looking a functionality for one sign-in to many sites (like envato login for all their sites). With your login system can I handle that?
Hey,
Unfortunately no, this system is not created to handle multi sign-in.
Kind regards,
Milos
The script is good, but there is no option to remember me the option. Please add.
Hey loshMiS, could be a silly question, but this work with WordPress? Thanks!
Hey,
Unfortunately no, this is a standalone PHP script and it won’t work with Wordpress.
Kind regards,
Milos
Hi…please can u helpme with adds some fields in registration form, i use register.js, ASRegister.php and get error csrf please help urgent!!!
i send a ticket on https://milos.support-hub.io/
Replied.
replied thaks for your excellnet job
Hello, how to add Post curl method in the ASRegister.php, please help
I see many people asking about can it do this can i do that I just thought I would chime in and say this is great for exactly what it says. Login / Register system. I have basically taken just the ASEngine folder and then built my site pages around that. What you get here if you know a bit of php / javascript is an excellent base to start a site off with. I love it so much I am keeping the asEngine files untouched for upgradability and putting all my other functions into seperate files. Check out the demo its very accurate of what it can already do. Great script and definitely worth the price.
Hey,
Thank you very much for the comment and the review. I really appreciate it!
Regards,
Milos
hi. is there any membership features?
Hey,
Everything that you get is available in demo, so unfortunately no, there are no membership features available within the app.
Regards,
Milos
does it work with a call from an android app?
Hey,
Out of the box AS doesn’t support such thing since it has session based authentication built in. If you want to use the APP as an API, then you’ll need a different way for authenticating users (API tokens for example) instead of using the default session cookie auth.
Regards,
Milos
Would I be able to add my own custom fields i.e Color Picker | Date Picker etc?
Hey,
Well, you get the whole source code within the zip file after purchasing the script so, if you are familiar with JavaScript and PHP, it should not be an issue to modify the script to fit your needs.
Regards,
Milos
I haven’t found this in your admin, can I setup email sending in your system after registration, password changing… Are anywhere some templates for that? Can I use there predefined variables such for example username… Is already integrated any multilingual mail templates solution, so the system will send a mail in the language the user has subscribed?
Hey,
There are two default emails that the app sends to the users: a confirmation email and forgot password email. The emails are always in english, regardless of the currently selected interface language for the user.
You can fully customize those templates and translate them to any language you want, but you will need to customize the app to send the emails in user’s specific language.
Regards,
Milos
Hi, do you have reCapcha intergrated?
Hey,
Unfortunately no, AS doesn’t come with reCaptcha out of the box. That’s something that you will need to add by yourself.
Regards,
Milos
Hi, I have tried but the passwords below don’t work. Please check and fix.
Admin details: username: admin password: admin123 Demo Link: https://as-php.com/login.php
Hey,
Thanks for letting me know. I guess that I haven’t disabled the admin password changing in demo so someone changed the admin password and I had to reset it.
You should be able to log in now.
Regards,
Milos
Hi, Is there any way to have session never expire ? I set 86400×365 (which means 1 year) in ASSession.php in place of $cookieParams[“lifetime”] but still the user gets logged out after a few minutes, may be an hour or something like that.
Thank You
Hey,
I’m sorry but your support for this item has expired. Please extend the support if you have any questions related to the item.
Regards,
Milos
Hi loshMiS, I’ve just renewed support. Also created a ticket on your support system, you can reply there.
Thank You