MyTrueHost.com is providing good quality service, cheap web hosting at cheapest cost. Our Hosting is the cheapest hosting on internet, this was done deliberately so as to maintain a viable business over long term.
We have made this webhosting blog for our clients and he will get all type of solution like Hosting Queries,Linux Queries,PHP,Fantastico Scripts issue,Shared Host Problems as well as Dedicated Server issues.

$1 Web Hosting at MyTrueHost.com

MyTrueHost.com is providing good quality web hosting services at cheapest cost. Our Hosting is the cheapest hosting on internet, this was done deliberately so as to maintain a viable business over long term.

Our aim is to provide cheap linux web hostingaffordable web hosting, reliable web hosting, budget web hosting  with unlimited webspace and unlimited bandwidth in $1/month at mytruehost.com.

Mytruehost.com offers the best quality Linux Shared CPanel Web Hosting for cheap yet reliable and affordable cost, with Secure and stable web hosting solutions. Powered with cPanel – one of the most widely used website management tools in the web hosting industry, all cpanel hosting plans include addon features to create and manage your websites with the most affordable and lowest cost in web hosting industry, Mytruehost shared web hosting are the best deal for small, medium or large websites, personal or hobby websites, Business website hosting, Personal Blog or WordPress hosting, Forums and message boards hosting (phpbb hosting, vbulletin hosting, smf hosting), Email (POP3 and Webmail hosting) and E-commerce Web Hosting.

You will get our cheapest web hosting plans details at

http://mytruehost.com/

http://mytruehost.com/linux_cpanel_web_hosting_plans.html

 

Reliable Web Hosting

Reliable Web Hosting in $1/month at mytruehost.com

—->>

MyTrueHost.com is providing good quality web hosting services at cheapest cost. Our Hosting is the cheapest hosting on internet, this was done deliberately so as to maintain a viable business over long term.

Our aim is to provide cheap linux web hostingaffordable web hosting, reliable web hosting, budget web hosting  with unlimited webspace and unlimited bandwidth in $1/month at mytruehost.com.

Mytruehost.com offers the best quality Linux Shared CPanel Web Hosting for cheap yet reliable and affordable cost, with Secure and stable web hosting solutions. Powered with cPanel – one of the most widely used website management tools in the web hosting industry, all cpanel hosting plans include addon features to create and manage your websites with the most affordable and lowest cost in web hosting industry, Mytruehost shared web hosting are the best deal for small, medium or large websites, personal or hobby websites, Business website hosting, Personal Blog or WordPress hosting, Forums and message boards hosting (phpbb hosting, vbulletin hosting, smf hosting), Email (POP3 and Webmail hosting) and E-commerce Web Hosting.

You will get our cheapest web hosting plans details at

http://mytruehost.com/

http://mytruehost.com/linux_cpanel_web_hosting_plans.html

 

Affordable Web Hosting

Affordable Web Hosting in $1/month at mytruehost.com

—->>

MyTrueHost.com is providing good quality web hosting services at cheapest cost. Our Hosting is the cheapest hosting on internet, this was done deliberately so as to maintain a viable business over long term.

Our aim is to provide cheap linux web hostingaffordable web hosting, reliable web hosting, budget web hosting  with unlimited webspace and unlimited bandwidth in $1/month at mytruehost.com.

Mytruehost.com offers the best quality Linux Shared CPanel Web Hosting for cheap yet reliable and affordable cost, with Secure and stable web hosting solutions. Powered with cPanel – one of the most widely used website management tools in the web hosting industry, all cpanel hosting plans include addon features to create and manage your websites with the most affordable and lowest cost in web hosting industry, Mytruehost shared web hosting are the best deal for small, medium or large websites, personal or hobby websites, Business website hosting, Personal Blog or WordPress hosting, Forums and message boards hosting (phpbb hosting, vbulletin hosting, smf hosting), Email (POP3 and Webmail hosting) and E-commerce Web Hosting.

You will get our cheapest web hosting plans details at

http://mytruehost.com/

http://mytruehost.com/linux_cpanel_web_hosting_plans.html

Cheap Web Hosting

Cheap Web Hosting in $1/month at mytruehost.com

—->>

MyTrueHost.com is providing good quality web hosting services at cheapest cost. Our Hosting is the cheapest hosting on internet, this was done deliberately so as to maintain a viable business over long term.

Our aim is to provide cheap linux web hosting, affordable web hosting, reliable web hosting, budget web hosting  with unlimited webspace and unlimited bandwidth in $1/month at mytruehost.com.

Mytruehost.com offers the best quality Linux Shared CPanel Web Hosting for cheap yet reliable and affordable cost, with Secure and stable web hosting solutions. Powered with cPanel – one of the most widely used website management tools in the web hosting industry, all cpanel hosting plans include addon features to create and manage your websites with the most affordable and lowest cost in web hosting industry, Mytruehost shared web hosting are the best deal for small, medium or large websites, personal or hobby websites, Business website hosting, Personal Blog or WordPress hosting, Forums and message boards hosting (phpbb hosting, vbulletin hosting, smf hosting), Email (POP3 and Webmail hosting) and E-commerce Web Hosting.

You will get our cheapest web hosting plans details at

http://mytruehost.com/

http://mytruehost.com/linux_cpanel_web_hosting_plans.html

 

How to install pdo_mysql module with php on 64 bit linux machine?

Install pdo_mysql module with php on 64 bit linux machine

—>>

The PHP Data Objects (PDO) extension defines a lightweight, consistent interface for accessing databases in PHP. Each database driver that implements the PDO interface can expose database-specific features as regular extension functions. Note that you cannot perform any database functions using the PDO extension by itself; you must use a database-specific PDO driver to access a database server. 

PDO_MYSQL is a driver that implements the PHP Data Objects (PDO) interface to enable access from PHP to MySQL 3.x and 4.x databases. 

I referred the followings steps :

=======
1) Download the PDO package to server :

#wget http://pecl.php.net/get/PDO

2) Manually build and install the PDO extension:

# tar xzf PDO-0.2.tgz
# cd PDO-0.2
# phpize
# ./configure
# make
# make install
# echo extension=pdo.so >> /usr/local/lib/php.ini

3) rebuild PHP along with the drivers for PDO_mysql.

CUSTOM_PHP_FLAGS=”–with-pdo-mysql” /scripts/easyapache

4) check php module using php -m command
========

try :)

 

How to install php eaccelerator on 64 bit linux server?

Installation of php eaccelerator 

—>>

Source : http://bart.eaccelerator.net/source/0.9.5.3/

Steps : 

$ tar -jxvf eaccelerator-0.9.5.2.tar.bz2
$ cd eaccelerator-0.9.5.2
$ phpize
$ ./configure
$ make
$ make install 

after the last command, it shows this line:

Installing shared extensions: /usr/local/lib/php/extensions/no-debug-non-zts-20060613/

Now we edit php.ini //php -i |grep php.ini or php –ini

$ nano /usr/local/lib/php.ini

and add these line:

extension=”eaccelerator.so”
eaccelerator.shm_size=”16?
eaccelerator.cache_dir=”/tmp/eaccelerator”
eaccelerator.enable=”1?
eaccelerator.optimizer=”1?
eaccelerator.check_mtime=”1?
eaccelerator.debug=”0?
eaccelerator.filter=””
eaccelerator.shm_max=”0?
eaccelerator.shm_ttl=”0?
eaccelerator.shm_prune_period=”0?
eaccelerator.shm_only=”0?
eaccelerator.compress=”1?
eaccelerator.compress_level=”9? 

after saving the php.ini, I created temp folder for the eaccelerator

$ mkdir /tmp/eaccelerator
$ chmod 777 /tmp/eaccelerator 

then restart the httpd:

$ httpd -k restart

to manage eAccelerator, I copied control.php
cp /usr/src/eaccelerator-0.9.5.2/control.php /path/to/my/homepage/control.php
when I tried to browse http://comp1/control.php, it asked for password, the default is :

Username : admin
Password : eAccelerator

but then I got “This script isn’t in the allowed_admin_path setting” error in some area of the page. After took a peak on my ubuntu server configuration that already running eAccelerator, I added “eaccelerator.allowed_admin_path=”/path/to/my/homepage”" so my php.ini now look like this :

extension=”eaccelerator.so”
eaccelerator.shm_size=”16″
eaccelerator.cache_dir=”/tmp/eaccelerator”
eaccelerator.enable=”1″
eaccelerator.optimizer=”1″
eaccelerator.check_mtime=”1″
eaccelerator.debug=”0″
eaccelerator.filter=”"
eaccelerator.shm_max=”0″
eaccelerator.shm_ttl=”0″
eaccelerator.shm_prune_period=”0″
eaccelerator.shm_only=”0″
eaccelerator.compress=”1″
eaccelerator.compress_level=”9″
eaccelerator.allowed_admin_path=”/path/to/my/homepage”

save the php.ini, then restart the httpd:

$ httpd -k restart

now I can login and manage the eAccelerator
====

 

 

How to install svn (Subversion) on linux machine?

SVN or Subversion 

—>>

Subversion, or SVN, is a mechanism by which developers can keep track of changes to their code and distribute these changes to the public in real time. This allows people to take advantage of software as it is being developed, between official releases. 

I referred following steps :

====
cd /usr/local/src/

wget http://subversion.tigris.org/downloa…n-1.4.5.tar.gz
wget http://subversion.tigris.org/downloa…s-1.4.5.tar.gz
wget http://www.sqlite.org/sqlite-3.5.2.tar.gz

tar xzf subversion-1.4.5.tar.gz
tar xzf subversion-deps-1.4.5.tar.gz
tar xzf sqlite-3.5.2.tar.gz

cd sqlite-3.5.2
./configure
make
make install
./sqlite3
.help
.exit
cd ..

cd subversion-1.4.5
./configure
make
make install
svn –version 
====

 

How to install uploadprogress php extension on linux machine?

Installation of uploadprogress php extension

—>>

1. Download source file from : http://pecl.php.net/package/uploadprogress/
2. tar -xvzf uploadprogress-1.0.0.tgz
3. cd uploadprogress-1.0.0
4. phpize
5. ./configure
6. make 
7. make install
8. uploadprogress.so will go to /usr/lib/php/extensions/no-debug-non-zts-20060613/
9. echo “extension=uploadprogress.so” >> /usr/lib/php/php.ini
10. Restart webserver.

thats all

 

 

 

How to install suPHP on centos linux OS?

Installing suPHP on Centos 5

—>>

suPHP is a tool that allows PHP scripts to be executed with the permissions of their owners. By not running PHP script using web server’s user rights, suPHP increase the server security.

First install httpd-devel and compiler tools:

—–
yum install httpd-devel gcc gcc-c++ make
—–
Download suPHP source code and extract it

—-
wget http://www.suphp.org/download/suphp-0.7.1.tar.gz
tar -xvzf suphp-0.7.1.tar.gz
cd suphp-0.7.1
—-
Note: source : http://www.suphp.org/Download.html

Now we compile suPHP :

—-
./configure –with-apxs=/usr/sbin/apxs –with-apache-user=apache –with-logfile=/var/log/httpd/suphp_log –with-setid-mode=paranoid –sysconfdir=/etc –with-apr=/usr/bin/apr-1-config –with-php=/usr/bin/php-cgi –enable-SUPHP_USE_USERGROUP=yes

make
make install
—-
Next create suphp.conf to configure Apache so it will call suPHP for interpreting PHP scripts

vi /etc/httpd/conf.d/suphp.conf
Add this configuration:

—-
LoadModule suphp_module modules/mod_suphp.so
suPHP_Engine on
AddType application/x-httpd-php .php

suPHP_AddHandler application/x-httpd-php

—-

Save the file and the next step is to disable mod_php configuration as we are now using suPHP :


mv /etc/httpd/conf.d/php.conf /etc/httpd/conf.d/php.conf.disabled

After we finished with Apache configuration, next we create suphp.conf file which contain suPHP configuration :

vi /etc/suphp.conf

—-
[global]
;Path to logfile
logfile=/var/log/suphp.log

;Loglevel
loglevel=info

;User Apache is running as
webserver_user=apache

;Path all scripts have to be in
docroot=/var/www:${HOME}/public_html

;Path to chroot() to before executing script
;chroot=/mychroot

; Security options
allow_file_group_writeable=false
allow_file_others_writeable=false
allow_directory_group_writeable=false
allow_directory_others_writeable=false

;Check wheter script is within DOCUMENT_ROOT
check_vhost_docroot=true

;Send minor error messages to browser
errors_to_browser=false

;PATH environment variable
env_path=/bin:/usr/bin

;Umask to set, specify in octal notation
umask=0077

; Minimum UID
min_uid=0

; Minimum GID
—-

After Apache and suPHP is configured, we need to add suPHP_UserGroup option on each virtual hosting we hosted on the server. For example, the domain.com virtual host would look like:

—-

DocumentRoot /home/user/public_html

allow from all
Options +Indexes

ServerName domain.com
ErrorLog /var/log/httpd/domain.com
LogLevel warn
suPHP_UserGroup user user

—-

Restart httpd.  

How to install ImageMagick on linux?

You should follow below steps :

============
1.Check whether ImageMagick has been installed or not.
which convert or which montage like this or locate ImageMagick. Or rpm -qa |grep ImageMagic
2. yum install ImageMagick
3. Now check once again.
4. rpm -ql ImageMagic| more
5. rpm -qf /usr/local/bin/convert //to check the exact rpm which has used for this binary.
============

That’s it. Try now :)