Fix Kloxo Horde Mail after Change back to Apache

I get this poblem after I change back system from Lighttpd to Apache. Kloxo webmail horde get ERROR.

this is the ERROR message :

Some of Horde’s configuration files are missing or unreadable
conf.php

This is the main Horde configuration file. It contains paths and basic items that apply to the core framework and all Horde applications.
Create these files from their .dist versions in /home/kloxo/httpd/webmail/horde/config and change them according to your needs.

So i searched out and tried the following and it worked

Login to your SSH

# chmod 755 /home/kloxo/httpd/webmail/horde/config/conf.php

and restart Apache

#service httpd restart

and worked horde mail

Incoming search terms for the article:

kloxo horde, horder error lxadmin, horde kloxo, kloxo repair horde, kloxo webmail error, kloxo repair mail, kloxo webmail horde configuration, lxadmin fix, /home/kloxo/httpd/webmail/horde/config/conf php, lxadmin horde not working

Can not Login to Kloxo. Get error 500 internal error

500 – Internal Server Error

That was error message I got when I try to login to Kloxo admin panel.

Try to restart Kloxo :
# /etc/init.d/kloxo restart

but still get 500 Internal Server Error…… Still can not login to Kloxo :(

Try to restart VPS……. Still can not login to Kloxo..
Continue Reading

Incoming search terms for the article:

kloxo 500 - Internal Server Error, 500 - Internal Server Error kloxo, kloxo 500 internal server error, 500 internal server error kloxo, kloxo internal server error 500, kloxo 500 error, kloxo 500, kloxo error 500, kloxo internal error, internal server error after upgrading kloxo

Create Mysql Databases at Kloxo Admin Panel

At Kloxo admin panel, for create mysql database almost same with cPanel. Inside Kloxo admin, click MySql databases at Tab Resources. Then click tab Add Mysql Database.

Fill the form.

Db Name : (Database name) Fill this with your database and also become your User database name
Password and retype password : is your user database password. After we create fill that and create, our new database and user database has been created.

At kloxo, database name and user database is not same with cPanel. At cPanel, our database name will become : cpanelUser_DatabaseName.
At Kloxo our database name same with we created : DatabaseName (without KloxoUser)

Incoming search terms for the article:

kloxo database, kloxo create new database, kloxo create mysql, create database on kloxo, databases in kloxo panel, kloxo create database, how to create a database in kloxo, how to create database in kloxo, kloxo add database, kloxo create a database

Add client at kloxo admin

At Kloxo admin panel, you also can add user for separate your own domain with others. For separate hosting for many domain, I use client.

For add client, you only just click Client, input the field, and finished. that’s it. Now for hosting that your new client hosting, just login your kloxo using client user and password that you have been created.

For more spesific, you can first make resource plan in Admin area,  just create resource plan that you want to. You can enable or disable some application or create limited usage of disk space, web mail, ot others.

After that you can choose your client/hosting that want to use that resource plan. You can use this for sell it to others.

web hosting

Incoming search terms for the article:

Make Plan in Kloxo, kloxo webalizer, kloxo add client, how to add client in kloxo, add a client in kloxo, how to make resource plan kloxo, install kloxo in rhel, kloxo add client /script/add, kloxo add hosting plan, kloxo clinet plans

For upgrade kloxo version

I know this from my email that Kloxo has new version. Kloxo Ver. 6.0.2086.

My Kloxois Version 6.0.2083.

for upgrade version just login to your kloxo Admin. Inside that you will find Update Home, and just click that and Update Now. You will need to click for update to version that you want.

If you from ver 6.0.2083, you will need click this for 3 times. First click your version will upgrade to 6.0.2084, next to 6.0.2085 and the last you will get version 6.0.2086.

But, I just upgrade my Kloxo to version 6.0.2085, cause I still don’t know version 6.0.2086 bugs.

Incoming search terms for the article:

how to upgrade kloxo, kloxo 6 0 2086, my kloxo version, upgrade kloxo

Using custom permalink or rewrite rule at lighthttpd Kloxo

At lighthttpd system, rewrite rule is different from Cpanel .htaccess

At .htaccess Cpanel, I always use this :

RewriteEngine on

RewriteRule ^subcategory-(.+)-(.+).html$  subcat.php?id=$1&jd=$2
RewriteRule ^addurl-(.+)-(.+).html$  ./addurl.php?id=$1&n=$2
RewriteRule ^detail-(.+)-(.+).html$  ./detail.php?id=$1&jd=$2

But when I paste it at Kloxo lighttpd, it get error, because it is different.

At Lighttpd, function like this :

url.rewrite= (
"^/subcategory-(.+)-(.+).html$" => "subcat.php?id=$1&jd=$2",
"^/category-(.+)-(.+).html$" => "category.php?id=$1&jd=$2",
"^/addurl-(.+)-(.+).html$" => "addurl.php?id=$1&n=$2"
)

See at last not using ,

For easy : just login to your kloxo.

at tab script you will find  lighthttpd rewrite rule.

At input Box, just paste your function for lighttpd. And saved it. And your website now can use your custom rewrite rule

Incoming search terms for the article:

Kloxo rewriterule, kloxo rewrite, Lighttpd Rewrite Rule Kloxo, kloxo lighttpd rewrite, kloxo lighttpd rewrite rule, kloxo lighttpd permalink, kloxo rewrite rule, Lighttpd Rewrite Rule on kloxo, kloxo url rewrite, kloxo for business use

First Install kloxo, you get your VPS RAM is used much

This is my problem too.
First after have VPS. It show my RAM only use 10KB
After I installed Kloxo, I get my RAM use 170KB. Woww….. This is terrible

After search and find at Kloxo forum, we can fixed this problem.

AT SSH : You can see your ram using :

top

And you will find your RAM used and other information

For fixed our problem : This is usually because of using RAM by mysql

For Fixed this we must edit : /etc/my.cnf

For see this file :  cat /etc/my.cnf

For exit from see your top : ctrl+C

For Edit from SSH :

  • First we must have nano for editing. For install nano : yum install nano
  • After finished install nano, first we copy our file : cp /etc/my.cnf /etc/my.cnf.old
  • After copy, now we can edit. For edit using nano : nano /etc/my.cnf
  • At below [mysqld] add this :
    skip-bdb
    skip-innodb
    After Edit : for save, after your edit  just press ctrl+X , and press y for save.
  • After edit, we must restart our mysql : service mysqld restart
  • Bingo.
  • See your top again : top
  • And you will find your use RAM will decrease.

Incoming search terms for the article:

optimize kloxo, tweak kloxo, kloxo optimize, kloxo tweak, kloxo my cnf, kloxo themes, how to optimize kloxo, optimizing kloxo, kloxo theme, kloxo high memory

How to install Kloxo system from SSH

First you must have SSH program : Putty

After you login to your VPS

You can install Kloxo with this :

First : get file from kloxo

# wget http://download.lxlabs.com/download/kloxo/production/kloxo-install-master.sh

After that :

# sh ./kloxo-install-master.sh

Wait untill finished installation.

You can login to your kloxo using :

Your_VPS_IP:7778

Your first Kloxo user and password : admin

And you can change your password after that

This Article I get from my friend : Blog Hendratok

Incoming search terms for the article:

kloxo get mysql password, kloxo install ssh, install kloxo ssh, enable ssh kloxo, how to install kloxo ssh, ssh kloxo, ssh install kloxo, kloxo ssh, ssh command to install kloxo, manually install Kloxo from the SSH