Search results

  1. M

    litespeed not starting

    If PHP create a lot of session files under /tmp/, you can change session path in php.ini to utilize /dev/shm, it may help. Try a opcode cache if you do not use one yet.
  2. M

    Forget password admincp

    If you are trying to use 32bit package on 64bit OS, you need to install the 32bit compatible libraries. http://www.litespeedtech.com/support/forum/showthread.php?t=1082&highlight=ia32
  3. M

    AWstats template

    You cannot use it in awstats.model.con, only use $vh_domai in the vhost template, awstats integration section.
  4. M

    Lsapi api

    You can use our PHP-LSAPI and Ruby-LSAPI code as an example. All client side code is open, the API is pretty much like FCGI, we can provide a simple sample code like the "echo" FCGI example. We do not spend much time to push it as an third party integration API as there is not much interest in...
  5. M

    [Resolved] phpmyadmin context blank page

    you need to install libmcrypt-dev package and compile PHP from source code with mcrypt enabled.
  6. M

    AWstats template

    /usr/local/lsws/add-ons/awstats/wwwroot/cgi-bin/awstats.model.conf that's the global model configuration file. For each vhost, you can have a model configuration file as well. Usually at somewhere under vhost root.
  7. M

    MIME Type could not be changed in 4.0.12

    Apache's MIME configuration file will override LiteSpeed MIME configuration for Vhosts configured via httpd.conf.
  8. M

    litespeed not starting

    For shared hosting using PHP suEXEC, only eAccelerator is recommended. If you have enough spare memory in your server, you can try put eAccelerator disk cache in /dev/shm. It helps. You may want to increase the "PHP suEXEC Max conn" a little if you got pretty busy vbulletin web sites.
  9. M

    [Resolved] [ERROR] Can not open directory for URI: + 404 Not Found

    It is easy to confirm there is a permission issue or not. Just try sudo -u nobody cat /home/username/public_html/.htaccess If you get permission denied error, there is a permission issue, maybe you need to check permissions of the parent directory.
  10. M

    [Resolved] phpmyadmin context blank page

    Looks like a PHP problem, have you checked error.log and stderr.log? You can try enabling debug logging.
  11. M

    AWstats template

    Yes, you can use $vh_domain
  12. M

    php/lsapi crash since 5.2.9

    Bingo! That's what I suspected. You may want to try the updated 4.0.12 package see if the symlink issue is still there, we have addressed a few related issues. The older release wont receive any bug fixes any more.
  13. M

    MIME Type could not be changed in 4.0.12

    How did you get a MIME type? in httpd.conf, .htaccess?
  14. M

    Litespeed exited on signal 11

    This is fixed in the latest 4.0.12 i386-freebsd6 build.
  15. M

    [RESOLVED] LSAPI 5.2 register_long_arrays

    It is intentional. Will change the implementation to make php.ini work.
  16. M

    php/lsapi crash since 5.2.9

    Can you try 4.0.12 std? Maybe it is caused by PHP changes in the build configuration for solaris, generate code with incompatible byte alignment. What is the compiler used?
  17. M

    [RESOLVED] Restart problem (old server isn't killed)

    Are you sure you removed "LSAPI_PPID_NO_CHECK" completely from env, instead of set it to "0"? As long as "LSAPI_PPID_NO_CHECK" is present, regardless value, LSAPI will not check PPID. lshttpd process that starts the LSAPI app in suEXEC mode cannot kill it due to permission issue, only the...
  18. M

    AWstats template

    awstats.model.conf should be in the conf/ directory under awstats working directory. change the vhost name from LSWS web console may help.
  19. M

    [RESOLVED] LSAPI 5.2 register_long_arrays

    You can turn it on with php_value in .htaccess. register_long_arrays is going to disappear in PHP anyway.
Top