Search results

  1. Cold-Egg

    CSSJS deadlock

    mhm, maybe exclusive locks are not supported issue is not a PHP permission issue. Check https://stackoverflow.com/questions/47921408/laravel-file-put-contents-exclusive-locks-are-not-supported-for-this-stream/47922098
  2. Cold-Egg

    CodeIgniter

    It's an open-source project, feel free to fork it and modify it to your need.
  3. Cold-Egg

    CSSJS deadlock

    Hi @Banzine , I'm testing https://docs.litespeedtech.com/cloud/docker/ols+wordpress/ solution and it works fine. Could you list your file owner/group under the document root? ls -l /var/www/vhosts/localhost/html/
  4. Cold-Egg

    CodeIgniter

    The current script is for WordPress only. Since it will install OLS, PHP, and DB for you, it should be easy to install CodeIgniter manually based on it.
  5. Cold-Egg

    CodeIgniter

    Hi, You should access http://xxxxxx at port 80, not 8088. That's why it's not found. By the way, did you install it on a fresh Ubuntu server? I haven't run into such an issue before.
  6. Cold-Egg

    Cannot start after update

    The next release should have those issue fix included.
  7. Cold-Egg

    openlitespeed is functioning normally message

    May I know if this is pure OpenLiteSpeed? Any control panel on this server?
  8. Cold-Egg

    CodeIgniter

    Hi, You can try following installation commands on a fresh server. bash <( curl -k https://raw.githubusercontent.com/litespeedtech/ols1clk/master/ols1clk.sh ) -w apt-get install lsphp74-intl -y curl -sS https://getcomposer.org/installer | php mv composer.phar /usr/local/bin/composer chmod +x...
  9. Cold-Egg

    [INFO] locked pid file [/tmp/lshttpd/lsphp.sock.pid]

    PID files are written by lsphp to record their process ID while they are starting, unlock when the job finished. You can ignore those logs safly.
  10. Cold-Egg

    red on listeners and virual hosts

    Is there any other service occupied port 80/443? Check the web admin dashboard > Server error log again, this time, switch log display entry from 10 to 100 and let us know if you find anything
  11. Cold-Egg

    where to configure FilesMatch on Litessped ?

    Try the simple setup first to make sure it works. e.g. Simply set the URI to / Header Operations to Access-Control-Allow-Origin * ( no "set" needed) https://openlitespeed.org/kb/setting-up-cors-on-openlitespeed/
  12. Cold-Egg

    where to configure FilesMatch on Litessped ?

    Hi, Good to know it works. For the custom header, please check https://openlitespeed.org/kb/how-to-set-up-custom-headers/
  13. Cold-Egg

    Why is a soft link to fcgi-bin/lsphp5 required when installing OSL?

    Hi, This doc might be outdated, may I know where you found it?
  14. Cold-Egg

    Gibberish Output - Not sure what to look for

    May I ask if you have zlib compression enabled on PHP?
  15. Cold-Egg

    Best OpenLiteSpeed Tuning For 1 GB Ram VPS

    The default setting should be good for general purposes. Make sure you have LSCache enabled on the Wordpress site. https://docs.litespeedtech.com/lscache/lscwp/installation/
  16. Cold-Egg

    where to configure FilesMatch on Litessped ?

    Hi, Controlling Access to Files by context should help, https://openlitespeed.org/kb/access-control/
  17. Cold-Egg

    Header duplication when using Wordpress LSCache plugin

    Let's follow up the issue on the Wordpress forum, https://wordpress.org/support/topic/header-duplication-when-using-wordpress-lscache-plugin/
  18. Cold-Egg

    Configure SSH to wordpress

    hi, please check https://docs.litespeedtech.com/cloud/images/wordpress/#step-2
  19. Cold-Egg

    How can I disable PHP execution in a specific subdirectory?

    Hi @robyflc, I see, please ignore the context method. Please try putting this on the document root .htaccess file RewriteRule ^wp-content\/uploads(\/|.*\/|php)$ - [F,L] or put the following on the /wp-content/uploads/.htaccess file. RewriteCond %{REQUEST_URI} ^.*(\/|php)$ [NC] RewriteRule .*...
Top