buy tb500

Archive for March, 2011

There are no databases associated with your account.

Thursday, March 24th, 2011

the solution is below

1- check if you have enough my sql database is assigned for you , you can see that in your cpanel left hand

2- check your desk space, spicly TMP folder, if full then try to clear it by

cd /tmp

rm -Rf *

then the issue will be fix.

Thank you.

The server was not able to find the document (./horde/index.php) you requested. Please check the url and try again. You might also want to report this error to your webhost.

Thursday, March 17th, 2011

Hi,

You can resolve by running this command ..
login as root
run this command
/usr/local/cpanel/bin/update-horde

That will fix the issue.

redirect SMTP port (linux) Postfix mail

Monday, March 14th, 2011
iptables -t nat -A PREROUTING -d 10.1.1.1 -p tcp --dport 26 -j REDIRECT --to-ports 25

just you need to change the ip to the server ip, i have tried it my self and working fine,

References

http://www.5dollarwhitebox.org/wiki/index.php/Howtos_Basic_IPTables#Port_Redirects

plesk “Unable to connect to database: saved admin password is incorrect”

Friday, March 4th, 2011

if you got the above error, then you need to follow the below steps

1. Start by logging in to your server via ssh as root user.

2. Stop MySQL server. In RedHat systems this is done usually like this

/etc/init.d/mysqld stop

3. Open up your MySQL configuration file. Usually this file is called my.cnf and is in /etc directory.

4. Add this line into the [mysqld] section:

skip_grant_tables=1

5. Start MySQL server.

/etc/init.d/mysqld start

6. Login to MySQL as admin user

mysql -u admin

7. Run this query :

update mysql.user set password=password(‘current_password’) where user=’admin’

Where current_password is the string from this file /etc/psa/.psa.shadow

8. Exit the MySQL console.
9. Stop MySQL sever.
10. Remove the line from /etc/my.cnf
11. Start MySQL.

Now the problem should be solved.

Reference

http://www.onlinehowto.net/Tutorials/Plesk-Control-Panel/Saved-admin-password-is-incorrect/593