Search results

  1. M

    4.0.2: 403 error for all static files

    The new release still do not allow symbolic link to a directory out side virtual host root, so if you want to share phpMyAdmin code among many users, you have to configure it through "Alias" in httpd.conf, or "Static Context" from LSWS console. That's the way to bring external directories...
  2. M

    4.0 and upload progress bars

    Please wait for 4.1 release.
  3. M

    htaccess and DocumentRoot

    Just touch the .htaccess inside the docroot, it will reload both htaccess file, no need to restart the server.
  4. M

    Password protection using htaccess & LiteSpeed?

    With the combination of rewrite rule, missing customized 401 error page, it will show the problem. Need to verify Apache's behavior under the same condition. The work around is to create a error page for 401.
  5. M

    4.0.2: 403 error for all static files

    Please download and try 4.0.3 release package. Just change the version number in the download link to get it. Should work better.
  6. M

    htaccess and DocumentRoot

    We have produced a 4.0.3 release package including this. You can give a try. Just change the version number in the download link.
  7. M

    LSWS support AcceptPathInfo and MultiViews ?

    No MultiView, have to use rewrite rules to do it. LiteSpeed set PATH_INFO when possible.
  8. M

    ioncube not loading

    Try run the lsphp5 -i from command line, it should dump a message why iocube cannot be loaded. /path/to/lsws/fcgi-bin/lsphp5 -i
  9. M

    mod_rewrite (redirect and etc)

    It cause infinite redirections because it rewrite the url when "domain.com" is used, so the result URL is the same as the original.
  10. M

    Bizzare .htaccess Issue

    I think the issue is that a custom error page for 401 has been defined in the configuration, but the file does not exist for your vhost, so the 401 reply will be rewritten to index.php. Try adding a 401 page under the document root, usually, it is /401.shtml for cPanel server.
  11. M

    Prevent users to something in .htaccess

    That's the way Apache works.
  12. M

    Apache binary patch (DirectAdmin)

    You can check the rc script related to Apache under /etc/init.d either httpd or apache.
  13. M

    Password protection using htaccess & LiteSpeed?

    Can you show us the whole .htaccess file? Maybe something else affect this. Any thing special for index.php? Also, you can enable debug logging.
  14. M

    Prevent users to something in .htaccess

    http://httpd.apache.org/docs/1.3/mod/core.html#allowoverride disable FileInfo and Options override. It is configurable via "Apache Configuration" in WHM.
  15. M

    4.0.2: 403 error for all static files

    If VH_ROOT is $SERVER_ROOT/www-html/xyz, the server will not serve anything beyond its vhost root. Your vhosts are configured natively, not through httpd.conf, right?
  16. M

    ioncube not loading

    check the phpinfo() see if the correct php.ini has been used, and php.ini has give the correct path to ioncube module, you may need to put the ioncube module under /usr/local/lib/php/extensions/...
  17. M

    mod_rewrite (redirect and etc)

    to redirect from www.domain.com to domain.com, you have to match the www domain name. RewriteEngine On RewriteCond %{HTTP_HOST} ^www.domain\.com$ [NC] RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L] or RewriteCond %{HTTP_HOST} !^domain\.com$ [NC] RewriteRule ^(.*)$ http://domain.com/$1...
  18. M

    Atomic ModSecurity Rules

    try command touch /etc/asl/whitelist
  19. M

    503 Errors

    Are you using the latest 4.0.2? You may need to strace those lsphp5 processes. Maybe it was caused by a bad script. Also, check stderr.log and error.log
  20. M

    503 error with Rails 2.3.2

    Have you upgrade Litespeed to the latest?
Top