If you run Fantastico De Luxe on the server, please update to Fantastico De Luxe 2.10.2 r7 BEFORE installing Click Be!Part I - How to start SSH as "root" to your server and execute the following commands:
mkdir -p /var/netenberg/click_be/installer/
cd /var/netenberg/click_be/
wget
http://www.netenberg.com/files/click_be/free/click_be_installer.bz2 tar -xjpf click_be_installer.bz2
cd /var/netenberg/click_be/installer/
php click_be.php status
Summary: Firstly we create the required directories and download the installer. Then we extract it and run it briefly so that it can prepare the groundwork that must preceed any installation (php click_be.php status).
Part II - How to install pico /var/netenberg/click_be/settings/private_settings.ini
pico /var/netenberg/click_be/settings/public_settings.ini
cd /var/netenberg/click_be/installer
php click_be.php install
Summary: Firstly we make sure that Click Be! has proper information (settings) needed for a successful installation. Then we start the actual installation process.
Look out for the following settings, they are very important:
/var/netenberg/click_be/settings/private_settings.ini
wget -> Binary
/var/netenberg/click_be/settings/public_settings.ini
Others -> User_Name
Others -> Group_Name
suEXEC -> Status
Part III - How to perform maintainance Normal Update: cd /var/netenberg/click_be/installer
php click_be.php update
Forced Update: cd /var/netenberg/click_be/installer
php click_be.php update force
Run a cron job for automatic updates: cd /var/netenberg/click_be/installer
php click_be.php cron install
Remove the cron job for automatic updates: cd /var/netenberg/click_be/installer
php click_be.php cron uninstall
Part IV - How to install sites cd /var/netenberg/click_be/installer
php click_be.php sites install $USER $GROUP $HOME $WWW $DOMAIN $DIRECTORY
$USER = name of the user
$GROUP = name of the group
$HOME = home directory (trailing slash is absolutely neccessary)
$WWW = www (public_html) directory (trailing slash is absolutely neccessary)
$DOMAIN = domain name
$DIRECTORY = the directory where you want to install it (optional)
Example:cd /var/netenberg/click_be/installer
php click_be.php sites install joe joe /home/joe/ /home/joe/public_html/ joesdomain.com site/new/
This will install the site at
http://joesdomain.com/site/new/cd /var/netenberg/click_be/installer
php click_be.php sites install user user /home/user/ /var/www/html/ user.com
This will install the site at
http://user.com/ If you leave the $DIRECTORY variable as empty, the site will be installed in the root (
http://joesdomain.com/)
How to login? It is simple, just use your FTP Username and Password.
Alternatively, you can create a file called demo.php inside the folder $WWW/.click_be/:
The contents of demo.php should be as follows:
<?php
$Username = 'user' ;
$Password = 'pass' ;
?>
Now you can login with "user" as your username and "pass" as your password.
A demo installation of Click Be! does not need FTP login data (and in the final version it will not send out any emails, ie Newsletter).
Part V - How to uninstall sites? cd /var/netenberg/click_be/installer
php click_be.php sites uninstall $USER $DOMAIN $DIRECTORY
$USER = name of the user
$DIRECTORY = the directory where you had installed it
Part VI - Help Me! I still do not understand! cd /var/netenberg/click_be/installer
php click_be.php usage
We tried to make our installer very simple to use but if there are any questions, we are here to help.