Sponsor:

Server and Web Integrator
Link:
Kloxo-MR logo
6.5.0 or 7.0.0
Click for "How to install"
Donation/Sponsorship:
Kloxo-MR is open-source.
Donate and or Sponsorship always welcome.
Click to:
Click Here
Please login or register. 2024-03-29, 00:37:34

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - MRatWork

Pages: 1 ... 3 4 [5]
61
So many postings on this forum from spammer. And it's waste time.

Why?. Because every posting from spammers only appear for moderator and spammer themself. Why spammer promote their website from themself?.

So, stop you spamming.

62
Kloxo-MR Releases / Kloxo-MR Logo
« on: 2013-02-04, 21:30:47 »
As we know, Kloxo-MR with 'tagline' as 'Kloxo fork by Mustafa Ramadhan'. I think it's not good tagline. I want to change this and also create 'new logo' with name-tagline 'Kloxo-MR, MRatWork Initiative'.

I hope members of this forum have better idea and share logo idea (or sample).

This is pre-logo of Kloxo-MR
[attachment=0:1xephy33]kloxo-mr_logo.png[/attachment:1xephy33]

Logo of Kloxo-MR is importance because I think final release use with this logo.

63
Go to http://rpms.potissima.com/core/ and see the latest progress.

1. Kloxo-mr.6.5.0.c.2013013101
- watchdog and start/stop service already fixed
- restart service (happen when add domain for example) using file inside /usr/local/lxlabs/kloxo/etc/process. For example httpd using 'graceful' instead 'restart' for restart purpose

For Centos 5.9 issues, read viewtopic.php?f=11&t=775

64
GNU/Linux Helps / [TIP] Issues on Centos 5.9 64bit
« on: 2013-01-31, 11:05:14 »
As we know, Centos 64bit including .i386 (maybe as .i686 on Centos 6.x) package arch beside .x86_64.

We can check with 'yum list *.i386|grep installed' (for Centos 5.x) or 'yum list *.i386|grep @' (for Centos 6.x).

If you have clean OS (no Kloxo-MR or webmin or other panels), it's save when remove *.i386 version with 'yum remove *.i386'. No guarantee if your system already install Kloxo-MR.

Some issues when Kloxo-MR installed:

1. Update mysql 5.0.95 to new one (5.0.96) will failed. Need 'yum remove mysql*.i386; yum update mysql*'.
2. The same issue when switch to other branch like 'yum replace mysql --replace-with=mysql55' ('yum replace' only work after install Kloxo-MR)
3. Investigate other issues.

65
Kloxo-MR Releases / Kloxo-MR version model
« on: 2013-01-30, 00:34:17 »
Kloxo-MR have standard for version model.

We can see 'kloxo-mr-6.5.0.c.2013012803' where:

1. kloxo-mr as product name
2. 6.5.0 - major.minor.release
3. c - where a = alpha, b = beta, c = candidate and f = final
4. 20132803 - year-month-date-step

Above version model importance and match to rpm version model.

For example, we will have 'kloxo-mr-6.5.1.f.2013031501.noarch.rpm' (only example) as rpm packages and for install just enough with 'yum install kloxo-mr'.

66
Kloxo-MR Releases / Need Kloxo-MR Tester
« on: 2013-01-28, 17:16:48 »
I need someone else for helping me. His/her job is testing latest step of alpha/beta/Candidate of Kloxo-MR on various condition (fresh on centos 5, fresh on centos 6, update from Kloxo 6.1.12 and update from previous Kloxo-MR).

Report and discuss with me for detail issues and write on this forum what his/her progress.

I will give him/her 1 VPS - read <!-- m -->http://hostspectra.com/static7/products-vps<!-- m --> for KVM-10 spec

67
Kloxo-MR Releases / Kloxo-MR Install (for Dev step)
« on: 2013-01-24, 07:08:47 »
A. Install for Kloxo-MR dev (taken from http://forum.lxcenter.org/index.php?t=msg&th=18842) with adjustment for latest update

How to install:

A.1. pre-install -- better for fresh install
Code: [Select]
cd /

# update centos to latest version
yum update -y
# install some packages like package-cleanup, etc
yum install yum-utils yum-priorities vim-minimal subversion curl zip unzip telnet wget -y

setenforce 0
echo 'SELINUX=disabled' > /etc/selinux/config


A.2. Install/reinstall/upgrade -- data not destroyed with this fork - for existing kloxo (6.1.x), run 'sh /script/update' first.
Code: [Select]
# remove old script and go to
cd /tmp
rm -rf /tmp/kloxo; mkdir /tmp/kloxo
rm -f ./kloxo-mr-dev.sh


# get kloxo packer from github
wget https://github.com/mustafaramadhan/kloxo/raw/dev/kloxo/install/kloxo-mr-dev.sh --no-check-certificate

# install kloxo
sh ./kloxo-mr-dev.sh

68
Indonesia Users / Beranda Indonesia subforum
« on: 2013-01-15, 10:46:39 »
Silahkan bicara-bicara santai di thread ini.

69
Kloxo-MR Development / Kloxo-MR template-based config
« on: 2013-01-11, 12:40:26 »
Taken from http://forum.lxcenter.org/index.php?t=m ... msg_102683

This is config directories structure:
Code: [Select]
/home
   |
   |____ apache
   |       |
   |       |____ conf
   |       |       |
   |       |       |____ defaults ==> content config for 'defaults' files
   |       |       |
   |       |       |____ domains ==> content config for 'domains' files
   |       |       |
   |       |       |____ globals ==> content config for 'globals' files (including files for 'defaults' and  'domains' files)
   |       |
   |       |____ etc
   |       |       |
   |       |       |____ conf ==> overwrite files for /etc/httpd/conf
   |       |       |
   |       |       |____ conf.d ==> overwrite files for /etc/httpd/conf.d
   |       |       |
   |       |       |____ init.d ==> overwrite files for /etc/rc.d/init.d (with remove extension .init)
   |       |
   |       |____ tpl ==> template files for 'defaults' and 'domains' files (processed by 'sh /script/fixweb')
   |
   |____ bind
   |       |
   |       |____ conf
   |       |       |
   |       |       |____ defaults ==> content config for 'defaults' files
   |       |       |
   |       |       |____ master ==> content config for 'master' files
   |       |       |
   |       |       |____ reverse ==> not implementing yet
   |       |       |
   |       |       |____ slave ==> not implementing yet
   |       |
   |       |____ etc
   |       |       |
   |       |       |____ conf ==> overwrite files for /etc/name.conf
   |       |
   |       |____ tpl ==> template files for 'domain', 'master list' and 'transfered' files (processed by 'sh /script/fixdns')
   |
   |____ djbdns
   |       |
   |       |____ axfrdns==> content config for 'tcp' and 'tcp.cdb' files for transfered
   |       |
   |       |____ conf
   |       |       |
   |       |       |____ defaults ==> content config for 'defaults' files
   |       |       |
   |       |       |____ master ==> content config for 'master' files
   |       |       |
   |       |       |____ reverse ==> not implementing yet
   |       |       |
   |       |       |____ slave ==> not implementing yet
   |       |
   |       |____ dnscache ==> not implementing yet
   |       |
   |       |____ etc
   |       |       |
   |       |       |____ conf ==> overwrite files for /etc/name.conf
   |       |
   |       |____ tinydns
   |       |       |
   |       |       |____ root ==> content config for 'data' and 'data.cdb' files for master
   |       |
   |       |____ tpl ==> template files for 'domain', 'master list' and 'transfered' files (processed by 'sh /script/fixdns')
   |
   |____ lighttpd
   |       |
   |       |____ conf
   |       |       |
   |       |       |____ defaults ==> content config for 'defaults' files
   |       |       |
   |       |       |____ domains ==> content config for 'domains' files
   |       |       |
   |       |       |____ globals ==> content config for 'globals' files (including files for 'defaults' and  'domains' files)
   |       |
   |       |____ etc
   |       |       |
   |       |       |____ conf ==> overwrite files for /etc/lighttpd
   |       |       |
   |       |       |____ conf.d ==> overwrite files for /etc/lighttpd/conf.d
   |       |       |
   |       |       |____ init.d ==> overwrite files for /etc/rc.d/init.d (with remove extension .init)
   |       |
   |       |____ tpl ==> template files for 'defaults' and 'domains' files (processed by 'sh /script/fixweb')
   |
   |____ nginx
   |       |
   |       |____ conf
   |       |       |
   |       |       |____ defaults ==> content config for 'defaults' files
   |       |       |
   |       |       |____ domains ==> content config for 'domains' files
   |       |       |
   |       |       |____ globals ==> content config for 'globals' files (including files for 'defaults' and  'domains' files)
   |       |
   |       |____ etc
   |       |       |
   |       |       |____ conf ==> overwrite files for /etc/nginx
   |       |       |
   |       |       |____ conf.d ==> overwrite files for /etc/nginx/conf.d
   |       |       |
   |       |       |____ init.d ==> overwrite files for /etc/rc.d/init.d (with remove extension .init)
   |       |
   |       |____ tpl ==> template files for 'defaults' and 'domains' files (processed by 'sh /script/fixweb')
   |
   |____ php-fpm
   |       |
   |       |____ etc ==> overwrite files for /etc
   |       |       |
   |       |       |____ init.d ==> overwrite file for /etc/rc.d/init.d (with remove extension .init)
   |       |
   |       |____ tpl ==> template files for /etc/php-fpm.conf (for php 5.2) and /etc/php-fpm.d/<pool>.conf (for php 5.3/5.4) (processed by 'sh /script/fixweb')
   |
   |____ phpini
   |       |
   |       |____ etc ==> overwrite files for /etc
   |       |       |
   |       |       |____ php.d ==> overwrite file for /etc/php.d
   |       |
   |       |____ tpl ==> template files for /etc/php.ini and /home/httpd/<domains>/php.ini files (processed by 'sh /script/fixphp')
Note:
- All files inside 'conf/globals/', 'etc/' and 'tpl/' can be customize with copy this file(s) to file(s) with 'custom.' prefix name and than modified this 'custom.' file
- Files inside 'tpl/' in format 'inline-php' (embedded php code)
- After modified 'custom.' file(s) need running:
Code: [Select]
# for apache/lighttpd/nginx/php-fpm
sh /script/fixweb

# for phpini
sh /script/fixphp

# for apache
service httpd restart

# for lighttpd
service lighttpd restart

# for nginx
service nginx restart

# for php-fpm/phpini for using nginx/lighttpd/php-fpm_event/_worker
service php-fpm restart

70
Kloxo-MR Development / [Kloxo-MR 6.5.1] Change data path
« on: 2013-01-03, 11:42:32 »
As we know, data path for Kloxo-MR 6.5.0 still the same as Kloxo official:
Code: [Select]
/home
  |
  |__<user>
  |    |
  |    |__<domain> ==> document root for website
  |    |
  |    |__kloxoscript ==> phpinfo script for <user>
  |
  |__lxadmin
  |    |
  |    |__mail
  |         |
  |         |__bin ==> executable file for vpopmail (using special vpopmail for lxadmin)
  |         |
  |         |__domains
  |              |
  |              |__<domain> ==> mail data
  |
  |__kloxo
  |    |
  |    |__client
  |    |    |
  |    |    |__<user> ==> for backup data
  |    |
  |    |__httpd ==> for defaults pages (like cp., webmail. and etc), ssl, awstats and etc
  |
  |__httpd
  |    |
  |    |__<domain> ==> php.ini
  |         |
  |         |__dirprotect
  |         |
  |         |__stats
  |
  |__apache/lighttpd/nginx/php-fpm/phpini ==> for config

For Kloxo-MR 6.5.1, data path propose to change to:

Code: [Select]
/home
  |
  |__<user>
  |    |
  |    |__<domain> ==> php.ini
  |    |    |
  |    |    |__www  ==> document root for website
  |    |    |
  |    |    |__mail ==> mail data
  |    |    |
  |    |    |__dirprotect
  |    |    |
  |    |    |__stats
  |    |
  |    |__backup
  |
  |__configs ==> for apache/lighttpd/nginx/php-fpm/phpini for config
  |
  |__defaults ==> for defaults pages (like cp., webmail. and etc), ssl, awstats and etc

Need discussion/feedback/response from Kloxo-MR users.

71
Kloxo-MR Development / Kloxo-MR for Centos 6
« on: 2013-01-02, 20:45:11 »
At this moment, my latest code of Kloxo-MR (not upload yet to github) ready for Centos 6.

Still not resolve for qmail. I will try until Sun (6 Jan 2013) to resolve this.

If not success I will upload to github latest code without Centos 6 support and prefer for final release for 6.5.0 release.

72
When using Php 5.3+ for Kloxo-MR, using horde will be appear something like:
Quote
Deprecated: Assigning the return value of new by reference is deprecated in /home/kloxo/httpd/webmail/horde/lib/Horde/Perms/datatree.php on line 82

Deprecated: Assigning the return value of new by reference is deprecated in /home/kloxo/httpd/webmail/horde/lib/Horde/Prefs.php on line 847

Warning: Cannot modify header information - headers already sent by (output started at /home/kloxo/httpd/webmail/horde/lib/Horde/Perms/datatree.php:82) in /home/kloxo/httpd/webmail/horde/index.php on line 97

Need a little hack for '/home/kloxo/httpd/webmail/horde/config/conf.php':
Replace:
Code: [Select]
<?php
with:
Code: [Select]
<?php
// MR -- disable warning when using php 5.3+
ini_set"display_errors"0);

This code will be include on Kloxo-MR next upload.

When using php-fpm, need 'service php-fpm restart' after update above code.

Pages: 1 ... 3 4 [5]

MRatWork Affiliates:    BIGRAF(R) Inc.    House of LMAR    EFARgrafix

Page created in 0.053 seconds with 14 queries.

web stats analysis