Search results

  1. W

    Minor version numbers in LSWS 5

    Would adding +1 to a minor build number require much more time to the fix ? For exemple you could have : 5.0.0 build 25 5.0.0 build 26 5.0.0 build 27 […] 5.0.0 build 2468 You could then ask customers what build they have. Maybe you could look how git works for commits, you just enter a small...
  2. W

    Minor version numbers in LSWS 5

    Hello, Any chance of adding minor version number sor build numbers to Litespeed 5 ? The only way to know if you have the latest version is to force an update. It would be much easier if we could just check what the build number is. It would also be nice to have access to some form of list of...
  3. W

    Black hole with litespeed ?

    Hello, We have still got this issue and are having another issue: because of the number of tries to show the webpage, it's writing thousands of lines to the user's access log files. Is there a way to no log these entries for this domain ?
  4. W

    PHP crashing when APC is enabled

    It was cPanel's fork bomb protection causing theses values : we now have : core file size (blocks, -c) 0 data seg size (kbytes, -d) unlimited scheduling priority (-e) 0 file size (blocks, -f) unlimited pending signals (-i)...
  5. W

    PHP crashing when APC is enabled

    This value was from inside a user's account. Some of the values do seem low though… The value for root user is : ulimit -a core file size (blocks, -c) 1000000 data seg size (kbytes, -d) unlimited scheduling priority (-e) 0 file size (blocks...
  6. W

    PHP crashing when APC is enabled

    Hello, I'm under the impression that this is a shared memory issue. I moved accounts that had issues to phpselector and disabled apc and suhosin for them. I've just checked and no core dumps but instead I've got the following the the php error logs : [19-Jan-2014 15:47:15...
  7. W

    PHP crashing when APC is enabled

    Hello, We enabled APC for PHP with LS Processgroup mode and on a few sites there have been PHP crashes and core dumps created. This is with PHP 5.3 which is currently our native version. Here is the output for dumps for both sites : #0 0x00000000007dfb6d in do_bind_function () #1...
  8. W

    Feature request : support for a free mod security ruleset

    Just to post an update on this. Although we have not tested them yet, there is a new promissing modsecurity ruleset : https://waf.comodo.com We're waiting to get some feedback from users before installing these rules on a production server and also waiting for the next plugin update...
  9. W

    Looking for a good Mod Sec

    This sounds very hopefull. cPanel asked us what we thought about them supplying a modsecurity ruleset and now I see Comodo did this before them. http://www.melih.com/2013/12/28/free-mod_security-rules/ http://www.webhostingtalk.com/showthread.php?t=1334902 I've downloaded the full...
  10. W

    [Resolved] xcache resetting cache every 36 seconds if left idle

    I think I did not wait long enough when I updated php selector last night. It now seems to be working as it should. I presume it was an old version of LSAPI 6.6 and the latest update has a more recent version. It's in situations like this we rearlise how important subversion or build...
  11. W

    [Resolved] Workergroup - Keeping parent processes alive

    I belive the problem has been solved. Yesterday I updated phpselector alt-php'ss and still couldn't get past the 30 seconds. After doing this I changed a setting in the litespeed interface and restarted litespeed, but it seems this was not enough. I checked just now and managed to wait...
  12. W

    [Resolved] xcache resetting cache every 36 seconds if left idle

    It's a shame there is no sub-numbering for lsapi versions. Like for exemple 6.6.1, 6.6.2, how can I tell if cloudlinux used the latest version of lsapi when they packaged their php with 6.6 ? I will try and test this with the native php ( version 5.3)
  13. W

    [Resolved] xcache resetting cache every 36 seconds if left idle

    It is a new process that causes the problem : Each time I waited a bit longer : xcache cache duration : 11 seconds. posix_getppid : 1047197 posix_getpid : 1047200 posix_getpgid : 1047197 posix_getuid : 504 xcache cache duration : 37 seconds. posix_getppid : 1047197 posix_getpid : 1047200...
  14. W

    [Resolved] xcache resetting cache every 36 seconds if left idle

    I've updated the script to : <?php $time = time(); if (!xcache_isset("time")) { xcache_set('time', $time); } $xcachecurtime = xcache_get('time'); print('xcache cache duration : '. ($time - $xcachecurtime). ' seconds.<br />'); print('posix_getppid : '.posix_getppid().'<br />')...
  15. W

    [Resolved] xcache resetting cache every 36 seconds if left idle

    I've sent you a private message with the URLs. Thanks
  16. W

    [Resolved] xcache resetting cache every 36 seconds if left idle

    I set Max Idle Time in litespeed's settings to 3600 then to 1200 but no luck it still resets after 30 seconds. It does sound very likley that this is something to do with that setting not working. In Extranal App > lsphp5 I've got : Max Connections 1000 Environment...
  17. W

    [Resolved] xcache resetting cache every 36 seconds if left idle

    Also, could you ask your developpers if there is a variable to set the timout of a forked process in processgroup mode or something similar with a 30 second timeout ?
  18. W

    [Resolved] xcache resetting cache every 36 seconds if left idle

    It's under suexec process group that I need this to work. The suexec deamon mode doesn't work for us as opcache fails due to the fact the cache would have to be larger than what APC and Xcache can cope with. Also you can not do variable cache safely in suexec deamon mode, only in the...
  19. W

    [Resolved] xcache resetting cache every 36 seconds if left idle

    How long can you wait in between two refreshes before the cache is reset ? It should be able to be left idle for the sime specified in the xcache settings. I'm trying to find out how to fix why the cache is reset in the following situation : I call the script in my browser. I wait for 40...
  20. W

    [Resolved] xcache resetting cache every 36 seconds if left idle

    Just tested with php 5.4.22 and xcache 3.1.0, same problem, this time it's closer to 30 seconds (30 seconds ok, 34 not ok) then 35 that the cache is reset.
Top