How to Install Zamfoo


Cheap reseller Hosting


What is Zamfoo ?

zamfoo

Zamfoo is a plugin which provides additional features to a Reseller and makes his work a bit easy. Zamfoo plugin needs to be installed on the server and can be integrated with Reseller center. The OS recommended for Zamfoo is Cent OS, as its the most compatible OS for cPanel/WHM. Altough there are few limitations to use the this with WHM reseller.

 

Zamfoo_ashishkale.in

 

To Install Zamfoo 

Run the following commands in SSH:

cd/

Use of this commands : This will take you to the root directory of your server.

 

wget http://www.zamfoo.com/downloads/zamfoo_installer.tar

Use of this commands : This command will download zafoo on your server.

 

tar -xvf zamfoo_installer.tar

Use of this commands : This command will extract contents on the server.

 

chmod 755 runme.cgi

Use of this commands : This command will modify the permissions to make it executable.

 

./runme.cgi

Use of this commands : This command will run the installer.

 

After firing all these commands,

You will have to enter the license key here:-

$license=”License key”

Once enter the License key
press CTRL + X

then Save it.

.

.

.

.

 Zamfoo will be installed on your Linux server.


Cheap web Hosting


Installing LAMP On Linux Mint


Cheap reseller Hosting


Installing LAMP (Linux, Apache, MySQL and PHP) On Linux Mint. 

LAMP stands for Linux, Apache, MySQL, PHP. How to install Linux the L of LAMP.

LAMP_ashishkale_in

Install Apache

To start off we will install Apache.

1) Open up the Terminal

(Applications > Accessories > Terminal)

2) Copy/Paste the following line of code into Terminal and then press enter

sudo apt-get install apache2

3) Type you’re password, and then press enter.

The page should display the words

.

.

.

.

“It works!” 

 

Testing Apache

 

To make sure everything installed correctly we will now test Apache to ensure it is working properly.

1) Open up any web browser and then enter the following line.

http://localhost/

2) You should see a folder entitled apache2-default/.

3) Open it and you will see a message saying 

.
.
.
.
“It works!”, congrats to you!

 

Install PHP

PHP is an open source web scripting language that is widely use to build dynamic webpages.

To install PHP

1) Open up the Terminal

(Applications > Accessories > Terminal)

2) Type in this command

sudo apt-get install php5 libapache2-mod-php5

After you answer yes to the prompt twice, PHP will install itself.

3) It may also be useful to add php to the directory index, to serve the relevant php index files

sudo nano /etc/apache2/mods-enabled/dir.conf

 

Test PHP

To ensure there are no issues with PHP let’s give it a quick test run.

1) Open up the Terminal

(Applications > Accessories > Terminal)

2) Type in this command

sudo gedit /var/www/testphp.php

This will open up a file called phptest.php.

3) Copy/Paste this line into the phptest file:

<?php phpinfo(); ?>

4) Save and close the file.

5) Now open you’re web browser and type the following into the web address:

http://localhost/testphp.php

The page should look
.
.
.

Congrats you have now installed both Apache and PHP!

 

Install MySQL

To finish this guide up we will install MySQL. MySQL is a powerful database management system used for organizing and retrieving data

To install MySQL,

1) Open terminal and type in these commands

sudo apt-get install mysql-server libapache2-mod-auth-mysql php5-mysql

During the installation, MySQL will ask you to set a root password. If you miss the chance to set the password while the program is installing, it is very easy to set the password later from within the MySQL shell.

2) Once you have installed MySQL, we should activate it with this command

sudo mysql_install_db

3) Finish up by running the MySQL set up script

sudo /usr/bin/mysql_secure_installation

4) The prompt will ask you for your current root password.

Type it in.

5) Enter current password for root (enter for none)

OK,

.

.

.

successfully used password, moving on…


Cheap web Hosting


How To Install Apache Solr In Ubuntu


Cheap reseller Hosting


Apache Solr

Solr is a search engine platform based on Apache Lucene. It is written in Java and uses the Lucene library to implement indexing.

If you want to install Solr the easy way, you should use this steps. Solr doesn’t work alone; it needs a Java servlet container such as Tomcat or Jetty.

Apache Solr

To Install Apache Solr In Ubuntu

Step 1. To Installing Java

Installing Java from the command line.

sudo apt-get install openjdk-7

Step 2. To Installing Tomcat

Install Tomcat from the command line.

sudo apt-get install tomcat7

Step 3. To Installing Solr

1) Download the latest version of Solr 4.8.1 from

http://lucene.apache.org/solr/

2) Expand the archive, and copy Solr’s Java libraries to the Tomcat library directory

sudo cp solr-4.8.1/dist/solrj-lib/* /usr/share/tomcat7/lib/

3) Copy Solr’s logging configuration file to the Tomcat configuration directory

sudo cp solr-4.8.1/example/resources/log4j.properties /var/lib/tomcat7/conf/

4) Copy the Solr webapp to the Tomcat webapps directory.

sudo cp solr-4.8.1/dist/solr-4.8.1.war /var/lib/tomcat7/webapps/solr.war

5) Define the Solr context by modifying the solr.xml file.

sudo vim /var/lib/tomcat7/conf/Catalina/localhost/solr.xml

6) Context fragment pointing to the webapp file from above and to the Solr home directory.

<Context docBase=”/var/lib/tomcat7/webapps/solr.war” debug=”0″ crossContext=”true”>
<Environment name=”solr/home” type=”java.lang.String” value=”/usr/share/tomcat7/solr” override=”true” />
</Context>

Step 5. Configuring Solr

1) Create the Solr home directory.

sudo mkdir /usr/share/tomcat7/solr

2) Copy the Solr configuration files to the Solr home directory.

sudo cp -r solr-4.8.1/example/solr/collection1/conf /usr/share/tomcat7/solr/


Cheap web Hosting


Install Varnish with Apache on Ubuntu 12.04


Cheap reseller Hosting


 Varnish

 

Install Varnish

Varnish is an HTTP accelerator and a useful tool for speeding up a server, especially during a times when there is high traffic to a site. It works by redirecting visitors to static pages whenever possible and only drawing on the virtual private server itself if there is a need for an active process.

How to Install Varnish 

Varnish is distributed in the Ubuntu package repositories, but the version there might be out of date, so the varnish site recommends installing the varnish package through their repository.

1) Start that process by grabbing the repository:

sudo curl http://repo.varnish-cache.org/debian/GPG-key.txt | sudo apt-key add –

2) To add the repository to the list of apt sources. Go ahead and open up that file.

sudo nano /etc/apt/sources.list

3) Add the varnish repository to the list of sources.

deb http://repo.varnish-cache.org/ubuntu/ lucid varnish-3.0

4) Save and exit 

.

.

.

Congrats , Update apt-get and install varnish.

sudo apt-get update
sudo apt-get install varnish


Cheap web Hosting


1 2 3 4