Search results

  1. N

    Microsoft DOCX not getting appropriate MIME type

    what's the error message? in my simple installation(without cPanel), force install by run ./install.sh has always been successful.
  2. N

    [RESOLVED] failed to open stream: Permission denied (Service.php)

    for 17347: what version of lsws? which platform? latest 4.0.12 may not have this issue any more. or check again, this old issue may relate to the new issue you just resolved. the old issue may disappear after you fix the new issue.
  3. N

    Errors when trying to turn off Apache and on LSWS

    during the installation, when prompt: you select which?
  4. N

    Bad encoding

    can you give more detail regarding:swap location, mmap setting, how many files under your document root
  5. N

    Microsoft DOCX not getting appropriate MIME type

    with latest 4.0.12, docx added to MIME successfully. Content-Type in response header is what expecting: application/vnd.openxmlformats-officedocument.wordprocessingml.document
  6. N

    PHP 5.2.12 On Web Build

    upgrade to 4.0.12. php 5.2.12 and 5.3.1 is there.
  7. N

    .htaccess deny from all not work

    config "HT Access": http://www.litespeedtech.com/docs/webserver/config/general/#htaccess
  8. N

    LSWS Plesk Configuration Problem

    it should be possible. ls -l /path/to/lsws/fcgi-bin/lsphp* to check lsphp5 link to which php binary. also make sure .php is handled by lsphp5 external app. to check this: lsws web admin console -->Server -->Script Handler
  9. N

    Bad encoding

    hmm... this is a occasional issue which is hard to reproduce.
  10. N

    Microsoft DOCX not getting appropriate MIME type

    I tested a test.docx file on 4.0.12 1. Server-->General-->MIME Settings-->Add Suffixes: docx Mime Type:application/vnd.openxmlformats-officedocument.wordprocessingml.document 2.restart lsws, there is an error in error.log: [ERROR] [MIME] File...
  11. N

    php/lsapi crash since 5.2.9

    for manual build, if sapi/litespeed is lsapi 5.1, that's OK. buildconf.inc.php is used by lsws web admin console to build php.
  12. N

    Php lsapi 5.0

    /path/to/lsws/admin/html/utility/build_php/buildconf.inc.php
  13. N

    howto setup Fast CGI Authorizer?? strange errors

    I installed 4.0.12 std, and tested on a single vhost with your setting, looks working as well. just one warning: so change instances=20 to match the max connections. what's the "context" definition when you test the authorizer?
  14. N

    howto setup Fast CGI Authorizer?? strange errors

    here's my working example: <extProcessor> <type>fcgiauth</type> <name>fcgiauth</name> <address>uds://tmp/lshttpd/fcgiauth.sock</address> <note></note> <maxConns>10</maxConns> <initTimeout>20</initTimeout> <retryTimeout>0</retryTimeout>...
  15. N

    howto setup Fast CGI Authorizer?? strange errors

    need define a "Fast CGI Authorizer" External App. here is an example: #!/usr/bin/perl use FCGI; while (FCGI::accept >= 0) { if( $ENV{'REMOTE_USER' } eq "foo" && $ENV{'REMOTE_PASSWD'} eq "bar" ) { print( "Status: 200\n\n" ); } else { print( "Status: 401\n\n" ); print(...
  16. N

    Problems accessing LSWS admin

    permission of /usr/local/lsws/admin/conf/ looks ok. what's permission of /usr/local/lsws/admin/tmp ? and which user running lshttpd? nobody, lsws or ...? also please give output of groups lsadm
  17. N

    [RESOLVED] execve() Exec format error

    >Is there any way to create binaries that work for all distributions? No, clearly :) >Because I have a shared web hosting and have no direct access to compile can you trygcc -o a.cgi a.c to create your own a.cgi. maybe most shared web hosting provide gcc nowadays?
  18. N

    Litespeed randomly switches to apache and server doesn't work.

    you can do a manual install/upgrade.(same steps for install and upgrade) if you've not tried it before, refer: http://www.litespeedtech.com/docs/webserver/install/
Top