Search results

  1. N

    [Resolved] LiteSpeed Path Issue

    made 2 changes, the cPanel plugin RVSitebuilder working now:
  2. N

    Building custom php

    which OS version of your server? uname -a and the output of ~>ls -l /bin/sh /bin/bash
  3. N

    Disable PHP4

    no need delete it. in lsws admin console, check "Script Handler" settings. as long as .php is associated with lsphp5, lsphp4 is not called for .php script.
  4. N

    [Resolved] LiteSpeed Path Issue

    so I think the issue is almost clear: the order of include paths. when include "RVSeagullMod/lib/SGL/FrontController.php" it searches FrontController.php in order of include_path you wish it get /usr/local/lib/php/RVSeagullMod/lib/SGL/FrontController.php instead of...
  5. N

    [Resolved] LiteSpeed Path Issue

    what's the include_path value in phpinfo() output?
  6. N

    [Resolved] LiteSpeed Path Issue

    as the warning message suggested, FrontController.php is located at /usr/local/lsws/lsphp5/lib/php/RVSeagullMod/lib/SGL/ so you need add /usr/local/lsws/lsphp5/lib/php/RVSeagullMod/lib/SGL/ or (should be better) /usr/local/lsws/lsphp5/lib/php/ to your open_basedir (search php.ini)
  7. N

    Building custom php

    not sure this helps: in http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed_wiki:php:lsapi step 4: -- this is for manual build. for build php through lsws admin console,to simplify the issue, you can change current build options from to see if same error occurs. your...
  8. N

    [Resolved] LiteSpeed Web server cp20.xx on cp20.xx restarts automatically

    can you identify which vhost caused the 503 errors? is this newly added vhost or vhost installed new software package or plugin? does a complete stop/start (not graceful restart) have any difference?
  9. N

    MaxFind Error

    please contact sales@...
  10. N

    [Resolved] XCache: PHP Out of memory if cache size > 64M

    assume php in non-suExec mode? php in suExec mode not utilize opcode cache efficiently. what's the memory limit setting for a php process? it can set in php.ini like normal php, also there are "Memory Soft/Hard Limit" setting for lsphp. How about try APC? performance-wise, APC should not be...
  11. N

    LiteSpeed is not runing!!!!!!

    can you try 1-CPU license to see any difference?
  12. N

    4.1rc2

    please copy flowplayer-3.2.3.swf etc to your server and test again. need copy this file as well: releases.flowplayer.org/swf/flowplayer.controls-3.2.2.swf
  13. N

    Litespeed 4.0.16 (4.0.15) terrible slow ! Why ?

    so your server run cPanel. the error log file is /usr/local/apache/error_log. any messages in it?
  14. N

    Bandwidth

    checked an busy website, same problem. looks like a bug
  15. N

    libjpeg.(a|so) not found. But it's there!

    maybe your server lack of header files of jpeg to build with php, need #yum install libjpeg-devel.i386 or #yum install libjpeg-devel.x86_64 i.e., package with -devel in package name. run to check if the -devel- package installed or not.
  16. N

    [Resolved] PHP 5.3.3 + APC 3.1.4 = Error 503

    not sure add apc.mmap_file_mask=/tmp/apc.XXXXXX to php.ini to have any difference. from phpinfo, your current "Configure Command": while mine is quite simple try simplest one to see if it still have problem.
  17. N

    [Resolved] PHP 5.3.3 + APC 3.1.4 = Error 503

    hmm... APC 3.1.4 is out this month: 3.1.4 beta 2010-08-05 I compiled php 5.3.3 and apc 3.1.4 using "Compile PHP" in admin console and was ok. what's your APC settings in php.ini? if you run lsws/fcgi-bin/lsphp-5.3.3 -i, it may give same error message.
  18. N

    Stop Execution of Dynamic Files with less than X Perms

    it may be normal. assume the url is domain.com/test.php, and php suExec enabled. and under user "filetest"'s document root: /home/filetest/public_html when anyone in the internet access domain.com/test.php lsphp5 will run as user "filetest", pick up test.php and execute it. this is...
  19. N

    WSGI + Directadmin + Shared Hosting

    litespeed not support wsgi directly yet. see if this wiki any help for you: http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed_wiki:python_ajp_wsgi
  20. N

    virtual host mapping

    in native configuration, just define 2 listeners. one is for IP:80 another is IP:443 and define one vhost --- mydomain1.com then in each listener configuration, map to this vhost. no special -- just like normal listener configuration.
Top