Search results

  1. N

    bud video

    the fastest way to identify and resolve this issue, is to log in your server to see what is happening. and provide the steps to reproduce the issue.
  2. N

    bud video

    please provide more info about this issue. what's the upload script, php, perl or other? any log message ? is the video uploaded to the server successfully (check the size)? any play back issue under litespeed? (assume you upload video with apache, then switch back to litespeed, see...
  3. N

    [Resolved] How do I configure subdomains?

    >should I just add the subdomain.domain.com to listen for that domain/vhost? yes, please go this way
  4. N

    [Resolved] How do I configure subdomains?

    you can create multiple virtual hosts, echo virtual host for each subdomain, i.e., just treat each subdomain as an independent domain. or for package like workpress, can create only one virtual host for it, but the package itself can manage multiple subdomains (enable multisite) in...
  5. N

    [Resolved] openlitespeed: Return 404 when a php file is requested

    I've not tested with open ls 1.2.2 yet ... but looks like it's updating fast, so feel free to find and submit more bug reports! tested on 4.2.3, same result, it should be ideal to block it. record the test result here: index.php is the index file RewriteCond %{SCRIPT_NAME} \.php$ RewriteRule...
  6. N

    Two php crashes since our last update of litespeed and php

    Hi Monarobase, from developer, FYI:
  7. N

    [Resolved] openlitespeed: Return 404 when a php file is requested

    Sorry again. re-tested under open ls 1.2 and lsws 4.2.3. same result with you for open ls 1.2 and 1.0.4 RewriteCond %{SCRIPT_NAME} \.php$ RewriteRule /(.*)$ /notexist.html [L,R=404] working perfectly under 4.2.3 (you can try 4.2.3 standard version if possible) it seems open ls 1.0.4 or 1.2...
  8. N

    [Resolved] openlitespeed: Return 404 when a php file is requested

    I got same result with you on open ls 1.2 it acts like [OR] is ignored. tested on lsws 4.2.3, the result is expected. however, this simpler version: RewriteCond %{SCRIPT_NAME} \.php$ RewriteRule /(.*)$ /notexist.html [L,R=404] works under open ls (1.0.4 and 1.2 may have no difference here)...
  9. N

    [Resolved] openlitespeed: Return 404 when a php file is requested

    default is AND. A) B) [OR] C) ==>( A and B ) or C this is apache rule, litespeed or open litespeed will follow it. if not, it's bug.
  10. N

    External Application config through Apache Config

    yes, please refer http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed_wiki:multiple_phps_in_control_panel_lsws please refer http://www.litespeedtech.com/support/forum/showthread.php?t=6115 "DisableCgiOverride On"
  11. N

    [Resolved] openlitespeed: Return 404 when a php file is requested

    following rules can pass through all your patterns: RewriteCond %{REQUEST_FILENAME} \.php$ [OR] RewriteCond %{SCRIPT_NAME} \.php$ RewriteRule /(.*) /error404.html [L,R=404] /error404.html must exist. otherwise may cause the "loop redirection" issue in openls. (tested on openls 1.2)
  12. N

    [Resolved] openlitespeed: Return 404 when a php file is requested

    Sorry, re-tested on open lsws 1.2 with RewriteRule /.*.php$ /err404.html [L] show "500 Internal Server Error" in error.log: 2013-07-08 07:25:27.248 [INFO] [ip:49485:SPDY3-3] [REWRITE] Source URI: '/test.php/bbb.php' => Result URI: '/error404.html' 2013-07-08 07:25:27.248 [INFO]...
  13. N

    [Resolved] openlitespeed: Return 404 when a php file is requested

    in the case you described, just RewriteRule /.*.php$ /err404.html [L] will do. /err404.html can be a non-exist file. tested on openlitespeed 1.2
  14. N

    New Installation cant access Admin Page

    I made a copy of your old installation: /usr/local>cp -a lsws lsws.000 and installed 4.2.3 standard version to /usr/local/lsws standard version has limitation which will load max 5 apache's virtual hosts. please refer: http://www.litespeedtech.com/litespeed-web-server-editions.html...
  15. N

    New Installation cant access Admin Page

    the issue is: can't start up litespeed at all. and couldn't find any clue from logs/error.log, also it's centOS 5.9... finally, I found there are 4 "tcpserver" processes running there. I tried to kill them: #killall tcpserver then litespeed start up successfully ! and admin console can...
  16. N

    installing zend

    it's to my surprise, too, search out this: http://stackoverflow.com/questions/11584109/load-zend-optimizer-for-php-5-3 "Zend Optimizer doesn't exist for PHP 5.3. The product was renamed ZendGuard when it was released for PHP 5.3. However, ZendGuard cannot load files that were encoded for...
  17. N

    installing zend

    /php-5.2.x/ZendOptimizer.so for 5.2.x should not work with php-5.3.x. you need rebuild or copy /php-5.3.x/ZendOptimizer.so so working with php-5.3.x
  18. N

    New Installation cant access Admin Page

    weird issue --- usually it just works. I can log in to take a look if you're ok.
  19. N

    New Installation cant access Admin Page

    most likely firewall issue. to ensure firewall open these ports's access to you.
  20. N

    [Solved] Having date() warnings

    need ensure you have changed the right php.ini first under document root of problem site, put a phpinfo.php page, access it, to determine which php.ini is loaded.
Top