Search results

  1. M

    Устан&

    You should not change config file directly, use the web admin interface. server's config file is at lsws/conf/httpd_configure.xml Example virtual host's config file is at lsws/DEFAULT/conf/vhost.xml Make a copy of lsws/DEFAULT/ directory to something like lsws/myweb/ add a virtual host from...
  2. M

    RC3 1.5 LDAP ldap_simple_bind: Can't contact LDAP server

    The "R" packet is originated by the client, but I thought it is from the server side. :-) So, it is definitely a problem of the client. The differences between the LDAP APIs called by "ldapsearch" and "lsws" are: "ldapsearch" use synchronized API, lsws use asynchonized API in order not to...
  3. M

    RC3 1.5 LDAP ldap_simple_bind: Can't contact LDAP server

    This means the server side closed the connection. What packets is exchanged before this one? "S" (SYN) packet or "P" (data) packet? "-x" switch (simple bind method) should be used with "ldapsearch" command in order to match lsws'. Please add "-X" parameter to "tcpdump" command to view...
  4. M

    RC3 1.5 LDAP ldap_simple_bind: Can't contact LDAP server

    We had installed Mandrake 9.2 on one of our test machine. We run lsws on that machine, connected to ldap server on a Redhat box successfully. Then we installed the default openload packages on Mandrake 9.2 CD, setup our test user DB, and successfully connected to the Mandrake box from the...
  5. M

    RC3 1.5 LDAP ldap_simple_bind: Can't contact LDAP server

    lsws is linked with OpenLDAP 2.2.11 client library, so it may not compatible with 2.1.x releases. Can you try 2.2.x. Or, if you think 2.1.x release is more stable, we can switch to 2.1 then.
  6. M

    RC3 1.5 LDAP ldap_simple_bind: Can't contact LDAP server

    No, lsws does not explicitly set a timeout, the default should be used. Does the LDAP server require authentication? Is SASL authentication being used? lsws only do simple authentication though. Is TLS connection being used?
  7. M

    RC3 1.5 LDAP ldap_simple_bind: Can't contact LDAP server

    It is strange. Which Linux distribution are you using? What kind of LDAP server is it? OpenLDAP or a commercial one? Is that a TLS or plain connection? LSWS use OpenLDAP's client library to contact LDAP server, and that's the error message reported by the library. If you have not...
  8. M

    External Modules

    Thank you for your praise. Yes, LiteSpeed support external modules through the Fast CGI interface. This interface provide great performance which even beats Apache's in-process module. There is a C library available at http://www.fastcgi.com/. I believe you can easily implement this interface...
  9. M

    Installing phpBB2 under litespeed webserver

    Thank you for the update. For technical reason, lsws does not force php fcgi processes to stop when lsws quits under some situations. We will have this issue addressed soon. It really caused a lot of troubles. And after changing php.ini, you just do "killall php" to make sure all php...
  10. M

    https ?

    Do you mind sharing the ssl accelerator hardware solution, I am very interested in how it works. Thanks. :-) I still couldn't believe name based SSL vhost possible. After reading the squid configuration options you posted and cf.data.pre in squid source code (version 3.0 and 2.5), I think...
  11. M

    Installing phpBB2 under litespeed webserver

    It is a PHP, MySQL problem, but not related to litespeed. Please make sure the mysql socket is configured properly in php.ini (mysql.default_socket), check the phpinfo.php page, make sure mysql socket can be accessed by the user that php process runs as. You probably noticed that we are...
  12. M

    https ?

    I am confused. :? Are you talking about have squid listen on port 443 only and dispatch ssl requests to NATed internal address based on the host header in the encrypted request header? or squid listen on multiple ports, each port is associated with one backend virtual host? If it is...
  13. M

    https ?

    You can host multiple ssl virtual hosts with one litespeed web server without using a reverse proxy. Actually, I think Apache can do that as well, so I am confused a little bit by the reason why you need a squid reverse proxy in front of apache, especially when all the servers are on the same...
  14. M

    Great webserver

    Thank you for your feedback. There is no need to run multiple litespeed instances in order to host multiple web sites, it is designed to do so with only one instance and running multiple instances on one machine is not allowed. :-) You are welcome to join our beta testing team, there is no...
  15. M

    1.5RC1 context

    Those bugs has been fixed in release 1.5RC2.
  16. M

    Check email logs...

    There was a problem with our domain register, it has been fixed. :-)
  17. M

    PHP stderr lost

    Thank you for the suggestion. :-) Right now LSWS does graceful restart, means that the old LSWS instance still need the old PHP processes before it finishs all pending requests. Let new LSWS instance to manage old PHP processes may break the graceful restart. I am thinking to have the...
  18. M

    PHP stderr lost

    Thank you for the bug report. PHP fast CGI does not strickly follow fast CGI specification, it still writes standard error to the original stderr (file handle 3). PHP's stderr is assigned to a anonymous pipe when it was started by LSWS, LSWS log every thing received from the pipe to the...
  19. M

    Log Errors

    You can safely ignore this warning message, it means the socket address " uds://tmp/lshttpd/admin_php.sock associated with admin_php fast cgi process is busy, so LSWS guess admin_php is running (left over of previous lsws instance). You can leave it alone or just do "killall admin_php". Best...
  20. M

    LDAP schedule

    No problem. :-) It is on top of the to do list right now, will be the next major feature enhancement, release 1.5 is scheduled at the end of May. I will let you know when it is ready in the beta release earlier. Best regrads.
Top