Search results

  1. N

    loading webite and downloading file speed is really low !

    please capture screen shots when user complain again: 1)output of "top -c" in command line 2)"Real-Time Statistics" in lsws admin console->Actions->Real-Time Stats
  2. N

    php upgrade to 5.3 sites show this err

    in php.ini, add date.timezone="posixrules" then restart lsws
  3. N

    Increase Connection Timeout for specific script

    .htaccess or httpd.conf
  4. N

    litespeed serving index.html.gz incorrectly (re-compressed?)

    did some tests in lab. following rules in .htaccess are needed to make it working: <FilesMatch "(\.html\.gz|\.json\.gz)$"> Header set Content-Encoding "gzip" </FilesMatch> RewriteRule ^(.*) "/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz" [L] ===> RewriteRule ^(.*)...
  5. N

    litespeed serving index.html.gz incorrectly (re-compressed?)

    you're right. then how about RewriteRule ^(.*) "/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz" [L] ===> RewriteRule ^(.*) "/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz" [L,E=no-gzip:1]
  6. N

    litespeed serving index.html.gz incorrectly (re-compressed?)

    not sure if this rewriterule will help: RewriteRule \.html\.gz$ - [E=no-gzip:1] put it just before super-cache rules.
  7. N

    Trying to use APC but it seems to be clearing out?

    does this file exist? /usr/local/lsws/lsphp5/lib/php/extensions/no-debug-non-zts-20060613/xcache.so
  8. N

    ./rrdgraph_install.sh ?

    updated the package. * * * * * $PHP_BIN $DEST_DIR/ls_stats/update.php > /dev/null is recommended. this will redirect STDOUT only to /dev/null, but not STDERR. so if there is any error message to STDERR, e.g., "/path/to/lsphp5" is deleted for some reason, you'll receive an warning email...
  9. N

    ./rrdgraph_install.sh ?

    maybe in cron job: * * * * * $PHP_BIN $DEST_DIR/ls_stats/update.php add > /dev/null, i.e., * * * * * $PHP_BIN $DEST_DIR/ls_stats/update.php > /dev/null will disable email.
  10. N

    ./rrdgraph_install.sh ?

    Seems getting CRON emails every minute now this rrdgraph add-on itself don't send out email. it looks your cron job send out email once the rrdgraph job runs(it runs once / 1 minute). it may relate to your linux's setting. no email ever received per our tests.
  11. N

    ./rrdgraph_install.sh ?

    will delete those 2 files in package please check if file /tmp/rrdtool.log is writable -- it will be updated by cron job.
  12. N

    ./rrdgraph_install.sh ?

    thanks. please try: modify /path/to/ls_stats/config/log.php 'logger' => new logger_syslog(), to 'logger' => new logger_file("/tmp/rrdtool.log"),
  13. N

    ./rrdgraph_install.sh ?

    please try: modify /path/to/ls_stats/config/main.php 'rrdtool' => '/usr/bin/rrdtool', to 'rrdtool' => '/usr/local/cpanel/3rdparty/bin/rrdtool',
  14. N

    feature request: imitation of apache directive SetHandler server-status

    rrdgraph just out from 4.1.9 --- http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed_wiki:rrd_graph_monitoring it's the initial version and will improve later per user's feedback
  15. N

    fsockopen Error

    how about #curl -I www.paypal.com at command line ? it looks like a DNS failure
  16. N

    [Solved] few bugs in the file *.error.lsws.log

    admin console->Actions->Version Manager
  17. N

    "disable" instead of just "delete" on listeners and virtualhosts

    there is a way to disable a virtual host admin console -> click Actions, will list listeners and virtual hosts on the right side of a vhost, click the square button
  18. N

    [Solved] few bugs in the file *.error.lsws.log

    not sure for issue 2, for issue 1, please try latest 4.1.9 build.
  19. N

    random users complain timeout issue

    please check current value: admin console->Server->Tuning->Connection Timeout (secs)
  20. N

    [solved] Understanding .rtreport stats ?

    should be -- first line is for server level requests, others for virtual hosts.
Top