Search results

  1. C

    cannot load such file -- rack (LoadError)

    Not just simple hello word script I can even run the big website project like this successfully. https://github.com/neighborly/neighborly-donate https://github.com/catarse/catarse But, it was run on rail not litespeed.
  2. C

    Child process with pid: 10834 was killed by signal: 15, core dump: 0

    if it normal behaviour should Litespeed fix it not to produce the error to stderr? to avoid any misunderstood?
  3. C

    Child process with pid: 10834 was killed by signal: 15, core dump: 0

    I got a lot of this error message in /usr/local/lsws/logs/stderr.log How to fix it? 2015-01-09 10:45:42.066 [STDERR] Child process with pid: 10834 was killed by signal: 15, core dump: 0 2015-01-09 10:45:51.096 [STDERR] Child process with pid: 10859 was killed by signal: 15, core dump: 0...
  4. C

    cannot load such file -- rack (LoadError)

    Your idea is like "milk doesn't have a good taste then blame a straw" Would it be better if u offer me a debug version or way to debug the part of the code which produced this error message " rack (LoadError) or (LoadError)" then we would know what is cause of the problem.
  5. C

    cannot load such file -- rack (LoadError)

    well, actually I have correct the syntax after posted the reply. Even the same syntax as you suggested is still no luck.
  6. C

    cannot load such file -- rack (LoadError)

    Like this? Just tried and restarted LSWS but got same error.
  7. C

    cannot load such file -- rack (LoadError)

    What do you mean I don't get ? Can you show me example?
  8. C

    cannot load such file -- rack (LoadError)

    anyone can help? I did the same step with openlitespeed still don't get Ruby on Rail work. Anyone got experience to get it work ?
  9. C

    cannot load such file -- rack (LoadError)

    This is the detail info from "$rvm info" root@server:~# rvm info ruby-2.1.3: system: uname: "Linux server.citec.us 3.13.0-40-generic #69-Ubuntu SMP Thu Nov 13 17:53:56 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux" system: "ubuntu/14.04/x86_64" bash: "/bin/bash...
  10. C

    cannot load such file -- rack (LoadError)

    root@server:~# diff /usr/local/rvm/gems/ruby-2.1.3/gems/rack-1.6.0/lib/rack/handler/lsws.rb /usr/local/rvm/gems/ruby-2.1.3/gems/rack-1.5.2/lib/rack/handler/lsws.rb 30c30 < env[QUERY_STRING] ||= "" --- > env["QUERY_STRING"] ||= "" which one I should use?
  11. C

    cannot load such file -- rack (LoadError)

    Would this info given any clue? root@server:~# find / -name lsws.rb -exec md5sum {} \; ae20aeee5cc678b12338266a23743cdc /usr/local/rvm/gems/ruby-2.1.3/gems/rack-1.6.0/lib/rack/handler/lsws.rb f523b9e558d7fbf29846e35deb97c5ad...
  12. C

    cannot load such file -- rack (LoadError)

    did that already but problem still exist.
  13. C

    cannot load such file -- rack (LoadError)

    I got this error in /usr/local/lsws/logs/stderr.log 2015-01-04 20:04:55.686 [STDERR] /usr/local/rvm/rubies/ruby-2.1.3/lib/ruby/site_ruby/2.1.0/rubygems/core_ext/kernel_require.rb:54:in `require': cannot load such file -- rack (LoadError) from...
  14. C

    How to run Ruby on Rail + Litespeed with RackRunner.rb

    According to the README of ruby-lsapi-4.1, it said that Rack/Rails Runner has many advantages. So, I decided to use this method. However in order to get in run I need to follow the tutorial at http://www.litespeedtech.com/support/wiki/doku.php Then I find out that most of content in these...
  15. C

    How to test if Litespeed work with Ruby

    I have retry again with the same instruction provided here https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:other-ext-apps:ruby-on-rails-easy-config and https://www.geekstorage.com/blog/in...p-ruby-on-rails-with-litespeed-at-geekstorage But still endup with this error Here is...
  16. C

    How to test if Litespeed work with Ruby

    This is my directory structure /var/www/mywebsite/public/rubyappfolder where should I put "ls_rails_config" ? at /var/www/mywebsite/public/ or at /var/www/mywebsite/ Note: inside /rubyappfolder I got .env .env.example .git .gitignore .irbrc .ruby-version .travis.yml CONTRIBUTING.md...
  17. C

    How to test if Litespeed work with Ruby

    I am confused, why the official tutorial (https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:other-ext-apps:ruby-on-rails-easy-config) Didn't mention anything about ".ls_rails_config" While the one you recommend mention about it. Should I mix the configuration together?
  18. C

    How to test if Litespeed work with Ruby

    Now I managed to install Ruby-lsapi successfully. But still got stucked on how to test if Ruby really work with Litespeed. Is there any tutorial better than these website? https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:other-ext-apps:ruby-on-rails-easy-config...
  19. C

    Unable to compile lsapi-4.1

    now I managed to solved all problem and install ruby-lsapi successfully. But still got stuck on how to test if Ruby really work with Litespeed. Is there any tutorial better than these website...
  20. C

    Unable to compile lsapi-4.1

    after did some research seems like 'rb_thread_select' is obsolete, so I have changed the code of lsruby.c from LSAPI_Init_Env_Parameters( rb_thread_select ); to LSAPI_Init_Env_Parameters( rb_thread_fd_select ); but now got another compilation error # make compiling lsruby.c In file...
Top