Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - undone

Pages: [1]
1
I have couple of accounts which have magento installation. Names are these:
  • magento
  • magento1
  • magento2

When user magento  logs into his account, he can see databases of the other two users in his "MySQL Manager".

2
PHP / Re: suPHP - 500 Internal Server Error
« on: February 10, 2016, 07:24:22 AM »
You need to put content of your .htaccess file here (the one in your public_html directory.

3
Postfix / Re: Mail queue filling by the second
« on: February 07, 2016, 03:27:51 PM »
By the way, there is a way to read the content of your queue even when postfix is down:
for show the queue:
Code: [Select]
postqueue -pfor saving the list in a file:

Code: [Select]
postqueue -p > myfile.txt

for reading a single email:

Code: [Select]
postcat -q  AE6732A0189A
where AE6732A0189A is email id.

4
Postfix / Re: Mail queue filling by the second
« on: February 07, 2016, 12:53:17 PM »
Seems like an open relay to me (which means everyone can use your server to send email. ). Follow instructions in this page:

http://wiki2.dovecot.org/HowTo/PostfixAndDovecotSASL

apparently latest version of CWP can't properly  configure postfix to use dovecot authentication system, so everyone can send email without username/password from your SMTP server.

5
CentOS-WebPanel Bugs / Re: cannot add email account
« on: December 28, 2015, 09:13:08 AM »
There is another way: disable STRICT_TRANS_TABLES  on your mysql.
edit your /usr/my.cnf:

sql_mode=NO_ENGINE_SUBSTITUTION

6
CentOS-WebPanel Bugs / Re: cannot add email account
« on: September 02, 2015, 10:22:46 PM »
I had the same problem and solved it!

If you upgrade your MySql server to 5.6 , SQL query used in the panel will fail!
To solve this problem:
  • Open your PhpMyAdmin
  • Open postfix database
  • Go to "Structure" tab of "mailbox"  table
  • Click on "Change"  next to "name"  column (see pic below)
  • Now, Change Default value drop down to "As defined:" and leave the new input box empty
  • Save it and create your email account!



Pages: [1]