Elxis CMS Forum

Support => Technical support => Topic started by: wbread on February 17, 2014, 16:38:35

Title: BUG report
Post by: wbread on February 17, 2014, 16:38:35
did not know what to write, so created a theme for all bugs

1. when installing this error occurs, before the installation process takes a little time, when this error is more. after the error component is installed
(http://gyazo.com/36a7346cf6260ac6c0d51d3e3c780c68.png)
http://gyazo.com/36a7346cf6260ac6c0d51d3e3c780c68

2. I can not recover the administrator password
I think it if my and site email the same
Quote
A message that you sent contained one or more recipient addresses that were
incorrectly constructed:
(removed by datahell)

These addresses have been ignored. There were no other addresses in your
message, and so no attempt at delivery was possible.
Title: Re: BUG report
Post by: datahell on February 17, 2014, 18:31:09
1. See your Elxis error log to find out which is this "Internal Server Error".

2. I edited your message because you wrote your administration password in public view... (the text was url encoded but easy to be read if you decode it).
Switch language to English and try to change password again to see if the problem still occurs. We have said in this forum how you can reset the admin pass without using the "password remind" option. Are you aware of this solution?
Title: Re: BUG report
Post by: wbread on February 17, 2014, 18:41:17
1.  i dont now what to do
[2014-02-17 14:31:33]    ERROR in file /www/aeron.bisar.ru/includes/libraries/swift/classes/Swift/Transport/Esmtp/AuthHandler.php line 179
Uncaught exception 'Swift_TransportException' with message 'Failed to authenticate on SMTP server with username "root" using 3 possible authenticators' in /www/aeron.bisar.ru/includes/libraries/swift/classes/Swift/Transport/Esmtp/AuthHandler.php:179
Stack trace:
#0 /www/aeron.bisar.ru/includes/libraries/swift/classes/Swift/Transport/EsmtpTransport.php(252): Swift_Transport_Esmtp_AuthHandler->afterEhlo(Object(Swift_SmtpTransport))
#1 /www/aeron.bisar.ru/includes/libraries/swift/classes/Swift/Transport/AbstractSmtpTransport.php(108): Swift_Transport_EsmtpTransport->_doHeloCommand()
#2 /www/aeron.bisar.ru/includes/libraries/swift/classes/Swift/Mailer.php(74): Swift_Transport_AbstractSmtpTransport->start()
#3 /www/aeron.bisar.ru/includes/libraries/elxis/framework.class.php(354): Swift_Mailer->send(Object(Swift_Message))
#4 /www/aeron.bisar.ru/components/com_user/controllers/base.php(201): elxisFramewo

2. on eng the same
Quote
you wrote your administration password in public view...
ty  :-[
Quote
We have said in this forum how you can reset the admin pass without using the "password remind" option. Are you aware of this solution?
no :-\
Title: Re: BUG report
Post by: datahell on February 17, 2014, 18:51:11
The problem you have is clear from the Elxis error log. You connect to the SMTP using a root account (!!!!) and, even more, you provide a wrong password (or an empty one, or you have provided 3 times a wrong password and you have been banned). Set a normal email SMTP account (something@example.com) and send emails with that, NEVER use root accounts, anywhere and especially in database, NEVER NEVER NEVER.

To create a password do this.

Open template's index.php, and go to a visible spot. Write:
<?php
$elxis = eFactory::getElxis();
$encpass = $elxis->obj('crypt')->getEncryptedPassword('12345678');
echo 'pass: '.$encpass;
?>

Now, refresh the site and copy the value that will display. Go to phpmyadmin and db table elx_users. Find the user you want and edit it. Set as password (pword) the one that you have copied. Now you can login using as password 12345678 . Note that this password will only work in the current site as the encryption hash differs from site to site.
Title: Re: BUG report
Post by: wbread on February 17, 2014, 19:04:58
1. log contains errors only send messages by e-mail, it was just a test.
records for error on image no one.

2. ok
Title: Re: BUG report
Post by: wbread on February 17, 2014, 20:45:52
2. all messages to the administrator do not reach, and the same error
such setting may not correct?
(http://gyazo.com/96a3fd0b53c4ea6184aaaed9ce3fd106.png)
Title: Re: BUG report
Post by: datahell on February 19, 2014, 13:47:53
If an email doesn't reach your inbox it is not an Elxis bug. If you send anonymous emails via PHP it is very likely to be caught as SPAM. Use SMTP instead.
Title: Re: BUG report
Post by: wbread on February 19, 2014, 14:36:14
work only sendmail :(
server does not accept smtp authentication
I will continue to work on this, thanks for the tips