Search results

  1. N

    Can't load multiple PHP pages at once

    if the image's suffic is jpg/png etc, I think still ok to use X-LiteSpeed-Location the X-LiteSpeed-Location is like redirect (but internal not external), pass this file to web server(here litespeed) to handle it. so if the file name is .jpg, web server will think it a jpeg image and generate...
  2. N

    Can't load multiple PHP pages at once

    should be, and you can comment out line 62-73.
  3. N

    Can't load multiple PHP pages at once

    it's PHP script which limit the downloads. looks like the PHP script use the session cookie to archive this goal. in firefox, open a tab, can access a URL to download a 50M file, when open 2nd tab, access same URL, it'll wait until 50M file download completed. if open the URL in another...
  4. N

    Can't load multiple PHP pages at once

    please PM the website's domain name and brief the test steps, I test in my browser.
  5. N

    Can't load multiple PHP pages at once

    how about open 2nd file in another browser ? can download 2 files at the same time ?
  6. N

    [solved] PHP uploads not setting owner/group

    Thanks for your update!
  7. N

    [solved] file_get_contents does not work on LSWS 4.2.1

    this issue has become clear: while file_get_contents not working, run shell command: #curl -I www.bing.com curl: (7) Failed to connect to 2001:4870:a14a:100::cebe:4fd2: Network is unreachable #host www.bing.com www.bing.com is an alias for a134.dsw3.akamai.net. a134.dsw3.akamai.net has...
  8. N

    admin console not loading

    strange issue, 1st time to hear about. how about you change port 7080 to other one like 7100 ? what's the output of: #netstat -ntlp |grep 7080
  9. N

    [Ask Help] High CPU Load

    in your case(shared hosting, should always enable php suExec) should not happen. you can PM us your lsws admin console(:7080)'s access for quicker communication.
  10. N

    [Ask Help] High CPU Load

    can you post real-time stat screen shot and Server->Security settings screen shot. high load is a issue, should fix it. but again please be aware: your have 32 CPUs, so load 32 or 64 should not be a big surprise comparing with 1 or 2 CPU system which load is 32 or 64 too. 32 or below is quite...
  11. N

    Compatible mod_security rules

    those unsupported rules should not break lsws since they'll be ignored. if some rules really break lsws, we'd like to know, and fix it. in such case, we can co-operate to find the solution. for example, we can login your server, identify if it's gotroot rules break lsws and if so, which rule...
  12. N

    [Ask Help] High CPU Load

    a few suggestions: 1.Server -> External App -> lsphp5: Max Connections:35 PHP_LSAPI_CHILDREN=100 the 2 value should match or equal. you can change PHP_LSAPI_CHILDREN back to default 35 2.first screen shot: PHP suEXEC Max Conn:5 try change it to 10,20 3.you have 32 CPUs, load is 24...
  13. N

    Load TIme

    this is a strange issue. not common or known issue. but from the info you've provided is not enough to give any advise. what's your lsws version ? what app are you running ? what OS ? it may give more info for trouble-shooting.
  14. N

    [solved] Your PHP installation appears to be missing the MySQL extension

    what's your php version and php build options ?
  15. N

    [solved] GD Jpeg Issues

    some useful info from the output: since it's "--with-gd" instead of "--with-gd=shared", so no need load gd.so now. edit /etc/php.d/gd.ini, comment out "extension=gd.so" line. this is not related to jpeg issue, but since it's php 5.4.6, should load ioncube module for php 5.4.x. current one...
  16. N

    [solved] GD Jpeg Issues

    please try #strace /usr/local/lsws/fcgi-bin/lsphp5 test.php > a.jpg 2>test.log at command line. check test.log, see any useful info in it.
  17. N

    [solved] GD Jpeg Issues

    the output of the test php is wrong, so your php not compile jpeg correctly. just now I build php 5.4.6 with options '--with-gd' '--with-jpeg-dir' only, test script return right result.
  18. N

    [solved] GD Jpeg Issues

    can change the build option from "--with-gd=shared" to "--with-gd", and rebuild php ? see if it resolves the issue. another tip, to narrow down the issue, you can run test program to see if working as expected or giving out any error message. for example...
  19. N

    [solved] GD Jpeg Issues

    please give output of ldd /usr/local/lsws/fcgi-bin/lsphp5 as well
  20. N

    [solved] GD Jpeg Issues

    what's your lsphp5 build options? run /usr/local/lsws/fcgi-bin/lsphp5 -i|head
Top