Oct 12

If you receive such an error message in your error_logs then make sure you have enabled or have a correct zend extension path in your php.ini file .

Usually the zend extension path should be :

zend_extension=”/usr/local/Zend/lib/ZendOptimizer.so”

Oct 02

You can add the following rewrite rules in your .htaccess to parse the index.php which appears in the wprdpress blog URL .

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
</IfModule>

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

It is a very good solution on Wordpress 2.xx version which doesn’t support the custom structure such as /%postname%/ within permalinks .

Sep 27

Once you have configured email account in outlook then click on Tools >> Accounts >> Properties >> Servers Tab and set
In the Incoming mail (POP3) field type yourdomain.com

In the Outgoing mail (SMTP) field type yourdomain.com

(Note : Shared server clients can set server hostname instead of yourdomain.com .)

Then go to >> Advanced Tab and set

For Incoming mail (POP3)

* check the box “This server requires a secure connection (SSL)”
* The port number should be set to 995

OR

For Incoming mail (IMAP)

* check the box “This server requires a secure connection (SSL)”
* The port number should be set to 993 and

For Outgoing mail (SMTP)

* check the box “This server requires a secure connection (SSL)” and
* The port number should be set as : 25 or 465

Sep 27

If you receive such an error message while accessing phpmyadmin then you need to login to the server via SSH and edit the php.ini of phpmyadmin and set :

session.save_path =Ā  /tmp

OnĀ  cPanel server you need to edit /usr/local/cpanel/3rdparty/etc/phpmyadmin/php.ini .

Aug 26

First create the trash folder if it doesn’t exist . Then click the Options button, then “Deleting and Moving messages” under Mail Management. There is an option “When deleting messages, move them to your Trash folder…” Make sure this is checked , and then select the trash folder and save options.

Aug 25

Are you looking for 100% uptime for your sites ? EUKHOST provides you the complete solution for running your websites with 100% uptime guarantee.They have implemented a Mirroring Solution with FAM and RSYNC modules to offer Business Web Hosting with a 100% Uptime Guarantee. Each Business Web Hosting account runs on two high configuration servers, located in two different racks. One of these servers is set as the master server and the other is set as the slave server. Both of these servers are Dual Quad Core Xeons and each has 12 GB of RAM.

eukhost.com

Aug 01

Fatal! Write Failure: /etc/valiases/xxx.com. Ignore any messages of success this can only result in failure!

If you get this error message while trying to add a forwarder in cPanel then fire the below given command on the server :

root@server [~]# /scripts/fixvaliases

This will fix all the valiases permission problem on the server.

Jul 31

The purpose of this tracert utility is to show you the path when you are attempting to connect to your site from your local machine.

Windows : - Click on start >> then select “Run” >>then type “cmd” ( type “command” if you are using Windows 95/98).

C:\>tracert solsearch.net

LinuxĀ  Ā  Ā  : -

root@server [~]# traceroute solsearch.net

MacĀ Ā Ā Ā Ā Ā Ā  :- Click on Hard Drive >> Applications >> Utilities >> Terminal

traceroute solsearch.net

Jul 31

If you are receiving error message about the function imagettfbbox() then you need to compile Filetype with php.

On cPanel server , runĀ  easyapache and install TT(Filetype) to fix it.

Jul 31

#!/bin/bash
###
### Roundcube Script
###
echo “Installing the Roundcube Webmail”
sleep 3
cd /usr/local/cpanel/base
wget -O roundcube.tar.gz http://heanet.dl.sourceforge.net/sourceforge/roundcubemail/roundcubemail-0.1-rc1.tar.gz
tar -jxvf roundcubemail-0.1-rc1.tar.gz
rm -rf roundcubemail-0.1-rc1.tar.gz
mv roundcubemail-0.1-rc1 roundcube
cd roundcube
chmod -R 777 temp
chmod -R 777 logs
mysqladmin create roundcube
mysql roundcube < SQL/mysql.initial.sql
mysql -e “GRANT ALL PRIVILEGES ON roundcube.* TO ’roundcube’@'localhost’ IDENTIFIED BY ‘jer58gtwr#@tw’ WITH GRANT OPTION;FLUSH PRIVILEGES”
cd /usr/local/cpanel/base/roundcube/skins/default/images/
cp roundcube_logo.png /usr/local/cpanel/base/frontend/x3/images/roundcube_logo.png
cp roundcube_logo.png /usr/local/cpanel/base/webmail/x3/images/roundcube_logo.png
wget http://www.solsearch.net/HGpatch-roundcube-1.0BETA2
patch -p0 < HGpatch-roundcube-1.0BETA2
chattr +i /usr/local/cpanel/base/frontend/x3/webmaillogin.html
chattr +i /usr/local/cpanel/base/webmaillogin.cgi
echo “Roundcube Webmail has been installated Successfully”