Search results

  1. N

    Install on CentOS5.5, Plesk, need to work with vBulletin

    I meant you don't need install plesk at all, litespeed + vBulletin will work well. since you do need Plesk, so Plesk + trial license litespeed + vBulettin will be the easiest way to go. usually, user setup Plesk + apache + app and make them working, then install litespeed which will read and...
  2. N

    Install on CentOS5.5, Plesk, need to work with vBulletin

    using --with-mysqli instead of --with-mysqli=shared,/usr/bin/mysql_config to get it easier. run phpinfo(), search "extension_dir", xcache.so should be there.
  3. N

    Install on CentOS5.5, Plesk, need to work with vBulletin

    if you only have one vhost, and mainly test vBulletion, suggest not to read httpd.conf which managed by plesk. that only increase the complexity. when install standard or trial litespeed, do not choose any control panel. after installation, create a virtual host in admin console for...
  4. N

    vB seo + litespeed cache

    yes. http://www.litespeedtech.com/litespeed-web-server-editions.html see "Disk cache (mod_cache) Support"
  5. N

    Litespeed Apache Replacement

    here php should be ok, not ".php" "AddType application/x-httpd-php .php" is the default setting. if you have to set it again in .htaccess, maybe it's overridden by virtual host setting. what the problem virtual host section in httpd.conf? you can paste it here.
  6. N

    Centos 5.x AIO

    4.1 support AIO. latest version is 4.1RC4/RC5
  7. N

    Install on CentOS5.5, Plesk, need to work with vBulletin

    build php may have problem. for all option with "shared", need build additional .so as well. or remove all "shared", rebuild php again.
  8. N

    Install on CentOS5.5, Plesk, need to work with vBulletin

    1. #netstat -ntlp to check if litespeed is running 2.try run litespeed on port 80 to see if it works: --- stop Apache, change Apache Port Offset to 0, restart LSWS, all hosted web sites are powered by LiteSpeed now. 3. since not for shared hosting setup, try PHP suEXEC => No
  9. N

    Not ignoring user aborts. Help.

    please refer this post: http://www.litespeedtech.com/support/forum/showthread.php?t=3322 I think this is similar with your case -- litespeed works in this case but I guess the php script need some modification -- for example, when request a file on remote server, not the whole file, but only...
  10. N

    [solved] cURL ERROR: Protocol https not supported or disabled in libcurl

    result of #ldd /usr/local/lsws/fcgi-bin/lsphp5 ?
  11. N

    Cant upload videos in a tube site.

    LiteSpeed Support Forums > LiteSpeed Web Server > LSWS 4.1 Release > 4.1rc5 http://www.litespeedtech.com/support/forum/showthread.php?t=4805
  12. N

    Cant upload videos in a tube site.

    so maybe upload progress bar's issue. please install 4.1RC5 and try. 4.0.20 will be there and not be overwritten. can switch between them with one click.
  13. N

    Cant upload videos in a tube site.

    do you use any tool to display the upload progress?
  14. N

    Cant upload videos in a tube site.

    have you tried to upload small size file? please inform it's 100% failure or some files ok some not.
  15. N

    Fresh CentOS 5.5, fresh LSWS Standard, won't start

    strange. not sure if there is another process(for example apache) already listen to port 80? what's output of: #netstat -ntlp #uname -a
  16. N

    [solved] httpd.conf rewrite rules issue with 4.1RC5

    We also received other 2 reports regarding RC5 + mod_rewrite, and updated RC5. please do a "Force Reinstall" to see if it'll fix your problem.
  17. N

    [PROBLEM] WordPress not working even with "--with-mysql"

    the problem may due to "shared" --with-mysql=shared,/usr change to --with-mysql=/usr should be ok. this apply for all other options with "shared" in it.
  18. N

    vB seo + litespeed cache

    the last line of your rewrite rule is RewriteRule ^(.+)$ vbseo.php [L,QSA] remove the "L", change to RewriteRule ^(.+)$ vbseo.php [QSA] then add those rules follow #rules for litespeed cache: in my first post to your .htaccess
  19. N

    [solved] rewriterule moving from apacha to litespeed

    Rewriterule ^(.*)/([0-9]+)-(.*).html$ index.php?page=$2 best add [L] at end of the line. e.g., Rewriterule ^(.*)/([0-9]+)-(.*).html$ index.php?page=$2 [L] this applies to other rules -- add [L] if possible. this will improve the performance.
Top