Tagged Questions

2
votes
1answer
82 views

Thin Crashes Hard with Ramaze

So, I'm just trying out Ramaze for a new project, and I'm wondering why it won't work with Thin, but will with ramaze start (which is webrick I guess). Here's what it gives me: …
2
votes
2answers
323 views

Thin + Nginx Production ready combination for RubyOnRails Application.

I have recently installed Nginx + Thin on my deployment server, but i am not sure how this will perform in last requests & responses situation. lets say 1000/req per sec. so the speed on thin is …
1
vote
4answers
110 views

Oracle ResultSetMetaData getPrecision/getScale

I'm using Oracle's JDBC thin driver (10.2.0.3) for connecting to an Oracle 10g database. I'd like to get information about the database columns, so I use ResultSetMetaData. The most important …
1
vote
3answers
151 views

PHP and Oracle using a thin driver

Is there a thin driver for Oracle available to be used with PHP (for example as an extension)? I cannot install the OCI driver/client, but need to be able to access an Oracle database.
1
vote
4answers
640 views

Capistrano + thin + nginx with user not allowed to sudo howto?

I have a scenario like this which I want to use capistrano to deploy my ruby on rails application: The web application is on a thin cluster with the config file stored under /etc/thin. also an init …
0
votes
1answer
6 views

Why does my rdebug session say “*** No sourcefile available”

I'm not sure what the pattern of behaviour is but some programs - notably simple rack.ru based ones running in thin - can't easily be debugged. When a breakpoint is tripped, no source is available …
0
votes
1answer
54 views

Thin (ruby) is barfing

Simple sinatra app: require 'rubygems' require 'sinatra' get '/' do "Hey" end Then: $ ruby test.rb And when I hit http://localhost:4567, it drops the connection and I get: …
0
votes
0answers
20 views

How to use ruby thin with CGI scripts?

I've written some ruby CGI scripts (using the Ruby CGI class) that I serve from my production server using lighttpd. I want to test them on my development server using thin. Basically, I want to drop …
0
votes
0answers
60 views

Ruby, Sinatra and Streaming

I'm furiously trying to debug why iTunes isn't accepting the data I'm sending to it (as a DAAP Server) - you can see what I'm trying to do on the github page. The only difference I can find between …
0
votes
0answers
47 views

Can Apache BalancerMember be configured to use unix domain sockets?

I am using the Apache Proxy balancer directive to hook up a set of thin servers (for Rails). Like so: <Proxy balancer://thinservers> BalancerMember http://127.0.0.1:5000 route=thin0 …
0
votes
1answer
108 views

Ruby can’t link with MS C runtime (msvcr90.dll)

Hi folks. I was attempting to run the Ruby Thin demo application on Windows/XP when I got an error that Windows couldn't find "msvcr90.dll" for Ruby 1.8.7 -- I found a redistributable and put that in …
0
votes
3answers
320 views

POSTing an HTML form to remote.cgi - written in Ruby?

I am working on a website hosted on microsoft's office live service. It has a contact form enabling visitors to get in touch with the owner. I want to write a Ruby script that sits on a seperate …