The following error was getting generated during PHP compilation in the server. checking for bind_textdomain_codeset in -lc… yes checking for GNU MP support… yes configure: error: Unable to locate gmp.h Fix yum install gmp-devel
mod_fcgid: HTTP request length 139264 (so far) exceeds MaxRequestLen (131072)
Increase the value of MaxRequestLen in /usr/local/apache/conf/includes/post_virtualhost_global.conf MaxRequestLen XXXXX XXXXX is the desired value If the above doesn’t work in case of a particular domain, then add the above in the respective domain’s virtual host entry.
Increase Limit Recursion in FTP
By default the FTP server will show only 2000 files in a folder. We can increase this to 4000 files. Open the pure-ftpd configuration file and edit the lines. vi pure-ftpd.conf # 'ls' recursion limits. The first argument is the maximum number of # files to be displayed. The second one is the max subdirectories … Continue reading Increase Limit Recursion in FTP
syntax error at /dev/null line 1, near “28 02” Execution of /dev/null aborted due to compilation errors.
Fix # rm /dev/null # mknod /dev/null c 1 3 # chmod a+rw /dev/null
For securing temp in openvz servers
Enter into the vps and then a. Add the following line in /etc/fstab none /tmp tmpfs nodev,nosuid,noexec 0 0 b. mount -a echo "none /tmp tmpfs nodev,nosuid,noexec 0 0" >> /etc/fstab;mount -a
configure: error: utf8_mime2text() has new signature, but U8T_CANONICAL is missing
Following error was getting generated while configuring php on the server checking for utf8_mime2text signature… new checking for U8T_DECOMPOSE… configure: error: utf8_mime2text() has new signature, but U8T_CANONICAL is missing. This should not happen. Check config.log for additional information. Fix yum install libc-client-devel
Clients are opening support Tickets but don’t see them in my WHMCS dashboard!
Fix Make sure that when login to the client's client area, you are able to see the tickets there. If so, make sure your user is assigned to the departments. Setup -> Staff Management -> Administrator users -> your user and set what departments you want access to.
To setup python environment in CloudLinux
The Setup Python App icon is a third party plugin from CloudLinux .The interface will be shown as disabled by default. In order to enable the Setup Python App you will need to use the following instructions: - Login to WHM - Navigate to: Home »Server Configuration »CloudLinux LVE Manager - Select the Options tab … Continue reading To setup python environment in CloudLinux
User is not authorized for Mail (Host: x.x.x.x)”. + horde
Fix The issue was that the dovecot was not working.
Joomla! 3 installation freezes at creating database table using quickstart installation
This problem occurring most usually at Joomla 3.x. To solve this go to wamp\www\Your joomla folder\installation\sql\mysql and open Joomla.sql file find the term "ENGINE=InnoDB" and replace ALL with "ENGINE=MyIsam" MyIsam is more supported and compatible with Joomla. Do also the same with (sample_data.sql) file, if it's quickstart setup.