Search results

  1. A

    FollowSymLinks and SymLinksIfOwnerMatch

    how about: Configuration-->Virtual Hosts-->select 1 host Basic->Security->Restrained:Yes
  2. A

    htaccess & php[45]-script

    how about info.php4 with the .htaccess(not remove)? display correct or not?
  3. A

    404 Not Found

    Configuration -->Virtual Hosts-->select one host then configure it. through its General tab, can see "Customized Error Pages"
  4. A

    404 Not Found

    is it this one? select one Virtual Host-> General-> Customized Error Pages
  5. A

    Failed to generate the realtime reports!

    FYI: cd /usr/local/lsws/bin ./lswsctrl stop cd /usr/local/apache/bin ./apachectl start
  6. A

    Failed to generate the realtime reports!

    reinstall 4.02 may resolve the issue
  7. A

    Why not install PHP 5.* by default in LWS 4.*

    in our case, php is used in every page but minimum, so we still prefer php4 because of performance. if there's an option to install php4 or php5 or both during installation, that may be best in user's standpoint.
  8. A

    Password protection using htaccess & LiteSpeed?

    I append to above .htaccess, tested on latest 4.0.2, looks no problem. when /index.php exists, every non-exist page for example http://domain.com/123/4.html will display /index.php content but url remain as http://domain.com/123/4.html by clear browser cache, the authentication box always...
  9. A

    mod_rewrite (redirect and etc)

    I tested, RewriteEngine On RewriteCond %{HTTP_HOST} ^11.22.33.44$ RewriteRule (.*) http://domain.com/$1 works as well. i.e., http://11.22.33.44/folder/x.php?x=1&y=2 --> http://domain.com/folder/x.php?x=1&y=2 another lesson learned: to test the redirect in Firefox 3, must clear browser cache! I...
  10. A

    mod_rewrite (redirect and etc)

    #redirect all links www.domain.com to domain.com #Redirect in .htaccess: RewriteEngine on RewriteRule ^$ http://domain.com #rewrite links with ip to links with domain name instead ip RewriteCond %{HTTP_HOST} ^11.22.33.44$ RewriteRule ^(.*)$ http://domain.com/$1 [R=301] not sure if it actually...
  11. A

    compile php from lsws panel

    1)I think so too 2)in http://www.litespeedtech.com/php-litespeed-sapi.html it says "LiteSpeed PHP delivers up to 30% better performance than FastCGI PHP and 50% better performance than Apache mod_php" you can also build php manually, see...
  12. A

    Webhostingtalk powered by LiteSpeed

    what web server they are using before?
  13. A

    "Redirection Loop"

    just looked up apache document: http://httpd.apache.org/docs/trunk/rewrite/rewrite_intro.html "The main difference with per-server rewrites is that the path prefix of the directory containing the .htaccess file is stripped before matching in the RewriteRule" so there's difference for...
  14. A

    "Redirection Loop"

    how about this one? just one line: RewriteRule ^/$ http://domain.com/cubecart/index.php [L]
  15. A

    "Redirection Loop"

    can't get out a good Rewrite Rule at the moment :) there is one workaround may work in your case. create a index.html in your document root: <html> <head> <meta HTTP-EQUIV="REFRESH" content="0; url=cubecart/index.php"> </head> </html>
  16. A

    "Redirection Loop"

    This will cause infinite redirect: http://domain.com-->http://domain.com/domain.com-->http://domain.com/domain.com/domain.com/... try: change last RewriteRule to RewriteRule ^.*$ /cubecart/index.php [L]
  17. A

    permision error

    Hi tasarla, What I got from your post: 1.you set directory /public_html/Themes/Night permission to 644 2.then you start litespeed you found permission of /public_html/Themes/Night has changed to 744 3.but when you start apache instead of litespeed, the directory's permission...
  18. A

    Clients not using Litespeed

    can you share how to get Nginx support? forum, email, or chat? the support is from community users or from Nginx? A bit curious how a freeware can support so well. Thanks.
  19. A

    About the license and CPUs

    interesting ... can you specify more about it: how can 12 disks achieve 5x IO performance than 4 disks? what's your RAID card? Thanks.
Top