Search results

  1. M

    [Resolved] LiteSpeed + Cloudlinux : DNS resolution failed

    Looks like it works to me. Resolution pour www.google.com: 173.194.40.114 Resolution pour mysql1.web4all.fr: 10.101.100.241
  2. M

    How to know Open Litespeed is running?

    check server signature with firebug or chrome developer tool. phpinfo should show "Server API: Litespeed v6.6"
  3. M

    SuExec Usage with LSAPI and dynamic command line Parameter

    Create a external app for each vhost, you can do whatever you want. but a user with a lot of subdomain is able to start a lot more PHP processes. It might become a problem. But, if want per subdomain php.ini, there is no other way around it.
  4. M

    SuExec Usage with LSAPI and dynamic command line Parameter

    Your existing Apache configuration wont work with LiteSpeed. LiteSpeed only assign one group of PHP process per account to limit the resource usage. So, the php.ini setting has to be per account.
  5. M

    [Resolved] LiteSpeed + Cloudlinux : DNS resolution failed

    No, you should turn off ExtApp chroot mode, just use CageFS.
  6. M

    SSI in LS4?

    It should work. what if you remove the setting about html, htm, only leave the shtml one?
  7. M

    [Resolved] Issue with mod_headers

    It works with current release. Maybe you did not enable .htaccess properly.
  8. M

    Drupal CSS & JS Aggregation problem

    I think I knew what happened. along the path to the target CSS/JS file, there are multiple .htaccess file containing "Header set Content-Encoding gzip", so that header was added multiple times, LSWS treat "Header set ..." the same way as "Header append ...". this issue was not fixed in...
  9. M

    Protected Directory problem login

    What authentication realm is used? we need to check the content of .htaccess file for the protected directory. Please check the error_log for any related errors.
  10. M

    error 503

    three "connection reset" will result in one 503 error. In your case, it could be the process limit is too low for that account. check stderr.log as well.
  11. M

    error 503

    The log entries you posted does not cause 503 errors, 503 error is usually caused by PHP crashing. You need to look for log entry with "connection reset by peer".
  12. M

    Drupal CSS & JS Aggregation problem

    Possible to get a temp root access to check the setup quickly.
  13. M

    PHP crashing when APC is enabled

    Thanks for the update. Can you please more explicit with the change you made to cPanel to fix it? we may add a wiki entry for how to enable per user SHM.
  14. M

    Black hole with litespeed ?

    Please change rewrite rule to RewriteRule .* - [E=blockbot:1,E=dontlog:1]
  15. M

    [Resolved] Litespeed Curl in PHP Unable to resolve host name - CLI / nGINX PHP-FPM works

    If you use CloudLinux Cagefs, the /etc/resolv.conf in the user jail need to be updated. Or, you chroot the PHP process?
  16. M

    Drupal CSS & JS Aggregation problem

    Are you using the latest 4.2.6 package, if not sure, please do /usr/local/lsws/admin/misc/lsup.sh -f -v 4.2.6 It should handle drupal's default .htaccess just fine. LSWS wont compress it again when serve any ".gz" files from drupal's cache. So, the header problem should only happen if there...
  17. M

    mod security - potential bug w/ default action under Request Filter

    I could not make it crash by changing "deny" to "drop". Do you get core file under /tmp/lshttpd/bak_core/ ? Please install gdb to check the core file with gdb. If you set admin's email, you will get email bug report for the crash.
  18. M

    [Resolved] modsecurity bug - can't block traffic when HTTP request header is missing

    Please force reinstall 4.2.6 again. was trying to make SecRule REQUEST_HEADERS:Accept-Language "^$" works, but Apache mod_sec treat REQUEST_HEADERS:Content-Length differently, if it does not exist, Apache uses value of "0".
  19. M

    disbale php

    Please read more about the difference between "php_admin_value" and "php_value".
Top