Upgrading PHP 4.3.9 to PHP 5.2.6 Plesk 9

Well, after diggin on the mysql website for the plesk error above ( http://dev.mysql.com/doc/refman/5.0/en/mysql-upgrade.html ) , I issued these commands from telnet and it fixed the plesk admin center which started normal: # mysqlcheck –check-upgrade –all-databases –auto-repair –user=admin –password=youradminpassword then issue this command: # mysql_fix_privilege_tables I got error because of the mysql connection needs the …

Installing mcrypt – what to do to work with php

After a lot of research, as I couldn’t find answers on forums and other places. I found on sourceforge.net they released some rpm packages to integrate mcrypt and mhash with php. First we need to install mcrypt and mhash as follows: 1) Install mcrypt & mhash yum install mcrypt* yum install mhash* answer y to …

How do I change maximum attachment size in Horde?

Resolution By default, PHP limits uploaded files size to 2 MB, and this limit applies to all PHP application including Webmail. Edit the following options in /etc/php.ini file on the Plesk server and set the values that match your needs, for example: upload_max_filesize = 32M post_max_size = 32M Restart Apache after the php.ini file modification. …