HiEventsDev / Hi.Events

Open-source event management and ticket selling platform 🎟️
https://hi.events
GNU Affero General Public License v3.0
886 stars 75 forks source link

Error 500 while signup an account #88

Closed SergioSSantiago closed 1 month ago

SergioSSantiago commented 1 month ago

"message": "file_put_contents(/app/storage/logs/query.log): Failed to open stream: Permission denied", "exception": "ErrorException", "file": "/app/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php", "line": 275,

daveearley commented 1 month ago

Hi @SergioSSantiago,

Thanks for the report.

This error is related to the query logging which is used for debugging. To disable it you can set the APP_DEBUG environment variable to false.

I've also disabled the functionality by default, so it you use the latest release that will also fix it.

Thanks

SergioSSantiago commented 1 month ago

Hello @daveearley , still having issues ... apparently I've already used the email but I cant login also I cant reset the password and I didnt receive any mail. Trying to reset password , forgot password:

"message": "Unable to write bytes on the wire.", "exception": "Symfony\Component\Mailer\Exception\TransportException", "file": "/app/backend/vendor/symfony/mailer/Transport/Smtp/Stream/AbstractStream.php", "line": 49,

SergioSSantiago commented 1 month ago

TransportException HTTP 500 Internal Server Error Failed to authenticate on SMTP server with username "d8f68db9-c499-4112-b009-4ef769477440" using the following authenticators: "LOGIN", "PLAIN". Authenticator "LOGIN" returned "Expected response code "235" but got code "501", with message "501 Username used for auth is not valid email address".". Authenticator "PLAIN" returned "Expected response code "235" but got empty code.".

daveearley commented 1 month ago

It looks like the username for the SMTP server must be a valid email address. The error message "501 Username used for auth is not valid email address" indicates this. Please check the SMTP configuration and ensure that the username is correctly set to a valid email address format (e.g., user@example.com). Also, verify the SMTP server address, port, and security settings.

Let me know if that solves it.