Email problems, can't send an email

Hello there, I am currently facing a problem, I can’t send an email, please see the image below. I think it has to do with the SSL issue. I have managed to install SSL on my local wamp server but it is not working with the quasar vue and PHP App I am building. I really need.

All my SMTP server, port, username and password are correct


some help.

you need to make sure you have configured your email settings from the project setting area.

Hello Willvin, I have done it but still getting the same error. I think it’s an SSL error

If you are using Laravel or Python for backend, read this thread Email error, forgot password not working - Questions / PHPRad Vue - Radsystems Forum

Thank you willvin. Just another one, I have used random_num(10) from RadSystems to fill up an ID field on a table that is a primary key instead of an auto-increment from the DB. Just want to know how safe it is and the probability of not having a repeated number from the random number function.

You should not totally trust that it will generate a very unique number always, you should have a mechanism that checks that the generated number is actually unique. You could set the checkDupplicate to True, or you can query the DB to verify that the number does not exist.

Hello Willvin, I have a problem, using my local server on another machine to host my built Quasar Vue app for trial since I have an installed SSL certificate on it, but I am getting this error all the time:

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL was not found on this server.</p> <hr> <address>Apache/2.4.51 (Win64) OpenSSL/1.1.1l PHP/7.4.26 Server at localhost Port 443</address> </body></html>

I have followed everything in your video on how to publish online. Please help…

You need to publish your API first and make sure you can access it before using the API link/url to compile and publish your frontend.

Hello Willvin, I have the following issue

"SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: NO) (SQL: select * from `users` where `name` = myusername limit 1)"

when trying to log into the application. I have been editing and replacing my .env file since yesterday but none of the changes took effect. It is still considering the first uploaded file’s value which doesn’t connect to my database. I strongly believed that it had to do with the cache. On my side, I have removed all cache and cookies from the browser but nothing changed. When I inspected it through the browser it showed the following message

Failed to load resource: the server responded with a status of 500 (Internal Server Error)

Please help

you need to run the artisan

php artisan config:cache

command after you make changes to your .env file on your life server. this was done and indicated in the tutorial video please rewatch. Configuring the Roles and Permission in Radsystems Studio (PHPRad Classic) - Tutorials - Radsystems Forum

Hello Willvin, thanks for everything, and happy new year.

I have other issues with my app. I am getting Cors error on my master detail relation links and on my accountEdit Page. see error below:

Access to XMLHttpRequest at 'https://localhost:453/api/clients/view/CL43017268/' from origin 'https://localhost' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: Redirect is not allowed for a preflight request.

Otherwise, thanks to your video I have managed to host it successfully after clearing my php artisan. But as speficied above the Cors error still there on some links.

Thank you for helping

Make sure both frontend and backend are on the same domain.

frontend: https://example.com
backend: https://api.example.com or https://example.com/api

frontend: https://frontend.example.com
backend: https://frontend.example.com/api

This is how you organize you project to avoid such errors, and also sometimes when you get cores error it means there might be an error with you api.

Hello Willvin, Please assist here. My export (Print) page is not downloading any file on my Cordova-generated android app. But everything works fine on the spa from both mobile and desktop browsers.

On the android app, I can see the action red line fully loading on top but nothing appears as downloaded. Please assist

I don’t know what your issue is, but make sure to follow the instructions given in the Quasar documentation on how to build and publish your project to production for mobile. If you still can’t get it to work, you can also read more here Export file helper not work on Android · Issue #13538 · quasarframework/quasar (github.com)