• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.

Parse error

Status
Not open for further replies.
Are you sure about the credentials?

2014-12-27 22:03:54 CLIENT -> SERVER: EHLO 127.0.0.1 2014-12-27 22:03:54 CLIENT -> SERVER: AUTH LOGIN 2014-12-27 22:03:55 CLIENT -> SERVER: cG9zdEBwaG90by5wb3N0bnBpY3MuY29t 2014-12-27 22:03:55 CLIENT -> SERVER: aGFja2luZ2lzd3Jvbmc= 2014-12-27 22:03:55 SMTP ERROR: Password command failed: 535 Authentication Failed for post@photo.postnpics.com 2014-12-27 22:03:55 CLIENT -> SERVER: QUIT 2014-12-27 22:03:55 SMTP ERROR: QUIT command failed:
 
Hmmm try to use mandrill. GoDaddy is not the best thing to use.
 
I think there is just something in my chevereto c-panel setting maybe the code is not right, because go daddy has not blocked port 25 or 465
 
No, chevereto doesn't block anything. I tested in my localhost and worked.
 
so tried to setup mandrill its just not working for me and I found out that godaddy only works on port 80 so I have no way that new members can sign up with email verification. I am suck :-(
 
app/routes/route.dashboard.php

Change this:
PHP:
'validate'    => in_array($_POST['email_smtp_server_port'], [25, 465, 587]),

To this:
PHP:
'validate'    => in_array($_POST['email_smtp_server_port'], [25, 80, 465, 587]),

app/themes/Peafowl/views/dashboard.php

Change this:
PHP:
echo CHV\Render\get_select_options_html([25 => 25, 465 => 465, 587 => 587], get_safe_post() ? get_safe_post()['email_smtp_server_port'] : CHV\getSetting('email_smtp_server_port'));

To this:
PHP:
echo CHV\Render\get_select_options_html([25 => 25, 80 => 80, 465 => 465, 587 => 587], get_safe_post() ? get_safe_post()['email_smtp_server_port'] : CHV\getSetting('email_smtp_server_port'));
 
what line number is this on

echo CHV\Render\get_select_options_html([25 => 25, 80 => 80, 465 => 465, 587 => 587], get_safe_post() ? get_safe_post()['email_smtp_server_port'] : CHV\getSetting('email_smtp_server_port'));
 
sorry I meant what line number is this on

echo CHV\Render\get_select_options_html([25 => 25, 465 => 465, 587 => 587], get_safe_post() ? get_safe_post()['email_smtp_server_port'] : CHV\getSetting('email_smtp_server_port'));
 
So there is now way for me now to get this to work unless I change my host, is there and way to take out the two step sign up to be able to remove the sign up email confirmation your the script?
 
You can use the "search" function of your code editor. You can also configure the thing to don't require email validation.

Dashboard > Settings > Users
 
Please do all your questions in different topics. This one was because a parse error, then email issues and so on.

Closed.
 
Status
Not open for further replies.
Back
Top