Search results

  1. M

    Litespeed and DirectAdmin

    Maybe the best way is to let us login to your server with temp root access to investigate.
  2. M

    Litespeed and DirectAdmin

    http://www.litespeedtech.com/docs/webserver/config/general#phpSuExec
  3. M

    4.2.12 Enterprise crash

    latest 4.2.12 build should have addressed that. Please force reinstall.
  4. M

    About Mod_Proxy or Something Alternative in Litespeed For Ghost Blogging.

    It requires us to add the web server external app back end automatically, we will add this to our list of feather requests.
  5. M

    Setting PHP without timeout

    Access your second script directly from a browser see if it can execute for 300 seconds. If it can, the timeout is with the first script. Maybe full debug logging will be helpful.
  6. M

    [Closed] 503 Service Unavailable in WHMCS

    check output of locate the libxml2.so.2 , make it available at desired location by creating symbolic link or just copying it. ldd command should be successful without any missing dependency.
  7. M

    Setting PHP without timeout

    No, you have to set it high enough, the default is pretty high now, probably an hour or so, before it is 5 minutes. set it high, and override PHP max execution time in PHP code or HTAccess. http://www.php.net//manual/en/function.set-time-limit.php
  8. M

    Setting PHP without timeout

    You add it to the "environment" configuration for the external app. it was not set explicitly by default.
  9. M

    LSCache disk usage

    You can clean the cache directory with a cron job. with something like find "/path/to/cache/dir/" -type f -mtime +1 -delete 2>/dev/null or find "/path/to/cache/dir/" -type f -mtime +1 2>/dev/null | xargs rm -f
  10. M

    [Resolved] litespeed files locking

    You can modify the configuration file directly. the webadmin console limit need to be changed.
  11. M

    [Resolved] litespeed files locking

    Please try 4.2.12, it is more aggressive with closing open file descriptors. For user experiencing NFS silly rename trouble, can configure LSWS to cache small files in memory when possible to minimize open files by tuning "Max Cached Small File Size", "Total Small File Cache Size", can start...
  12. M

    [Resolved] 500 Error, Redirection Loop on Webmail, Cpanel etc

    please try 4.2.12 /usr/local/lsws/admin/misc/lsup.sh -f -v 4.2.12
  13. M

    Connection refused, restart!

    Please try the latest 4.2.12 build. /usr/local/lsws/admin/misc/lsup.sh -f -v 4.2.12
  14. M

    Connection refused, restart!

    That's normal messages, server detects that there is no PHP process listen on those domain socket, and start a new set. As long as the site working fine, nothing to worry about.
  15. M

    Feature request : WebDav

    OwnCloud write its own webdav support (probably in PHP), it does not depends on web server's WebDAV support. actually, it will break if web server's WebDAV support has been enabled. We need to investigate why OwnCloud does not work that well together with LiteSpeed. LiteSpeed should passes the...
  16. M

    Feature request : WebDav

    Or, If you use cPanel control panel, WebDav is one of cPanel feature, called "Web Disk". http://docs.cpanel.net/twiki/bin/view/AllDocumentation/CpanelDocs/WebDisk#Main Web Disk Account
  17. M

    [Resolved] .htaccess problem under LiteSpeed, not parsing variables in 'Header set link' instruction

    LiteSpeed does not support using variables in "Header" directive yet, we add that feature to our to do list. I will be implemented in our 4.2.x or in 5.0 release.
  18. M

    Mod Ruid2

    You need to fix the permission problem. The Apache mod_ruid2 require some privileged capabilities to function, which give httpd processes the permission to read that .htaccess, but it has increase the security risk in case the server has been hacked via Apache security hole. LiteSpeed does not...
  19. M

    Litespeed Main Server Access Log

    By default, cPanel log vhost accesses to domlogs, what configuration changes you did to make Apache log everything to the global log file? By removing the domlogs configuration in the vhost configuration? We need to know what you did exactly to the configuration, which works for Apache, but not...
Top