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-04-16, 17:49:51

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.


Messages - MRatWork

Pages: 1 ... 1005 1006 [1007] 1008 1009 ... 1037
15091
Kloxo-MR Technical Helps / Re: Webserver Configuration Issue
« on: 2013-02-17, 21:49:17 »
Try running 'yum update' from ssh. Usually it's because fail in yum process (conflict and or missing depencencies)

15092
Kloxo-MR Technical Helps / Re: No musql in php
« on: 2013-02-17, 21:47:07 »
Php54 remove mysql module from 'standard' package. It's php policy.

Bigger company have the some policy. They are migrate to MariaDB.

15093
Kloxo-MR Releases / Re: Need Kloxo-MR Tester
« on: 2013-02-17, 21:37:40 »
Quote from: "Spacedust"
Running /script/fixweb just shows php code from Afterlogic webmail...

I was change rpms for kloxo*.rpm to kloxomr*.rpm. Try running 'yum install kloxo-mr*'. This new rpms will be replace the old one.

Need 'sh /script/fixwebmail' after update to kloxomr*.

15094
Kloxo-MR Technical Helps / Re: No musql in php
« on: 2013-02-17, 21:33:46 »
For php-fpm, you must run 'service php-fpm restart' after add php module. Don't need reboot.

15095
For suphp, this issue related to ownership and or permissions. For others, it's related to php itself.

Try switch to php (that mean php 5.3 on Centos 6) and try 'sh /script/fixweb; service php-fpm; service httpd restart; service nginx restart'.

15096
Kloxo-MR Technical Helps / Re: No musql in php
« on: 2013-02-17, 21:09:15 »
No. mysql.ini with content 'extension=mysql.so' and mysqli.ini with content 'extension=mysqli.so'

15097
Kloxo-MR Releases / Re: Need Kloxo-MR Tester
« on: 2013-02-17, 20:43:01 »
Quote from: "Spacedust"
Quote from: "MRatWork"
I will try to fix this issue, but worry not on 6.5.0. The code for not easy to 'learn'.

This time, still stuck for mailing-list issue.

Thank you. I hope you we will fix qmail on port 587 too ;)

I see you've started dovecot migration process. Will this be an alternative to qmail or will it just replace courier-imap ?
Still based-on qmail-toaster. That mean just change courier-imap to dovecot.

15098
Kloxo-MR Technical Helps / Re: Webserver Configuration Issue
« on: 2013-02-17, 20:39:11 »
Try back to php (on Centos 6 mean 5.3 version) and then switch again to php54. I found this issue but it's not Kloxo-MR fault but ius repo itself.

Remember, only php-fpm_worker/_event need php-fpm. Mod_php, suphp and fgcid doesn't need it.

15099
Kloxo-MR Releases / Re: Need Kloxo-MR Tester
« on: 2013-02-17, 20:28:49 »
I will try to fix this issue, but worry not on 6.5.0. The code for not easy to 'learn'.

This time, still stuck for mailing-list issue.

15100
Kloxo-MR Technical Helps / Re: No musql in php
« on: 2013-02-17, 20:22:22 »
Check inside /etc/php.d. Must be found 'mysql.ini' and or 'mysqli.ini'. If not found, run 'yum install php53u-mysql'.

15101
Kloxo-MR Technical Helps / Re: Limiting bandwidth?
« on: 2013-02-17, 07:41:46 »
Ok, you can try with:

1. Modified /home/nginx/etc/conf.d/custom.~lxcenter.conf:
Code: [Select]
...
    limit_conn_zone $binary_remote_addr zone=addr:10m;
...
to:
Code: [Select]
...
    limit_conn_zone $binary_remote_addr zone=addr:10m;
    limit_req_zone  $server_name  zone=one:10m rate=100r/s;
...

2. /home/nginx/tpl/custom.domains.conf.tpl
Code: [Select]
...
## web for '<?php echo $domainname?>'
server {
    listen <?php echo $ip?>:<?php echo $port?>;
<?php
        
if ($count !== 0) {
?>

...

to:

for limitation for domain 'level'
Code: [Select]
...
## web for '<?php echo $domainname?>'
server {
    listen <?php echo $ip?>:<?php echo $port?>;

<?php
    
if ($domainname === 'yourdomain.com') {
?>

    limit_req one;
<?php
    
}
?>

<?php
        
if ($count !== 0) {
?>

...

or:
for limitation for user 'level'
Code: [Select]
...
## web for '<?php echo $domainname?>'
server {
    listen <?php echo $ip?>:<?php echo $port?>;

<?php
    
if ($user === 'admin') {
?>

    limit_req one;
<?php
    
}
?>

<?php
        
if ($count !== 0) {
?>

...
Adjustment value of 'rate=100r/s' (permit 100 request/second) and 'yourdomain.com' (just example yourdomain.com is domain you want to limitation) or 'admin'.

Don't forget running 'sh /script/fixweb; service nginx restart' after that.

15102
Kloxo-MR Releases / Re: Need Kloxo-MR Tester
« on: 2013-02-17, 06:54:45 »
Quote from: "Spacedust"
Quote from: "MRatWork"
Webalizer covert data from /var/log/httpd to their presentation (html and image) inside '/home/httpd/<domain>/webstats/webstats'

Does it work with nginxproxy ? My customers won't be able to see their own logs without this.
Yes, it's work for nginx-proxy.

Different with awstats, webalizer not real-time process but convert per-day.

You can see stats for this forum to know about webalizer.

15103
Kloxo-MR Technical Helps / Re: Limiting bandwidth?
« on: 2013-02-17, 01:55:32 »
Modified custom.domains.conf.tpl inside /home/nginx/tpl.

15104
Kloxo-MR Releases / Re: Need Kloxo-MR Tester
« on: 2013-02-17, 01:53:58 »
Webalizer covert data from /var/log/httpd to their presentation (html and image) inside '/home/httpd/<domain>/webstats/webstats'

15105
Kloxo-MR Releases / Re: Need Kloxo-MR Tester
« on: 2013-02-17, 01:25:45 »
This '/home/httpd/domain.pl/stats/domain.pl-custom_log' is awstats data. Not related to collectquota.

Pages: 1 ... 1005 1006 [1007] 1008 1009 ... 1037

Top 10 Social Networking:    Facebook    Twitter    LinkedIn    Pinterest    Google Plus    Tumblr    Instagram    VK    Flickr    Vine

Page created in 0.055 seconds with 20 queries.

web stats analysis