From: Harish TM Date: 2006-07-12T06:10:55+09:00 Subject: Re: CGI with Ruby ------=_Part_6306_33450715.1152652252647 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Just to add on was looking through the wordnet files (the ones that got installed) and here is a part file wordnet.rb: # This file contains functions for finding relations for English words. It # requires the Ruby-WordNet module to be installed; if it is not installed, # calling the functions defined by this file will raise NotImplemented # exceptions if called. Requiring this file adds functions and constants to the # Linguistics::EN module. module Linguistics module EN @hasWordnet = false @wnError = nil @wnLexicon = nil # Load WordNet and open the lexicon if possible, saving the error that # occurs if anything goes wrong. begin ( ERROR GENERATED HERE) require 'wordnet' @hasWordnet = true rescue LoadError => err @wnError = err end why is it that wordnet.rb is including wordnet? its the same file right? Harish On 7/12/06, Harish TM wrote: > > Hey john, > Thanks for the reply > > > Here is the Apache error log entry. > > > [Wed Jul 12 01:35:49 2006] [error] [client 192.168.0.34] > /usr/lib64/ruby/site_ruby/1.8/linguistics/en/wordnet.rb:117:in > `wnL\exicon': > WordNet functions are not loaded: No such file to load -- wordnet > (NotImplementedError), referer: > > http://192.168.0.\34/cgi-bin/TextToTermsStart.rb?name=Harish&account=Account1&theme=Theme1 > > > Interestingly I get the same error when I ssh into the server from a > windows > machine (putty) and try to run the program from command line (although the > program works when I run it from the server on command line) Also the > program runs when I ssh into the server from another Linux machine. ( I > have > tried to access it through a browser from both windows and Linux and it > does > not work ) > > > here is that error msg: > > > suseserver2:/srv/www/cgi-bin # ruby extract_from_string.rb > /usr/lib64/ruby/site_ruby/1.8/linguistics/en/wordnet.rb:117:in > `wnLexicon': > WordNet functions are not loaded: No such file to load -- wordnet > (NotImplementedError) > from > /usr/lib64/ruby/site_ruby/1.8/linguistics/en/wordnet.rb:175:in > `synsets' > from {Autoloaded: > /usr/lib64/ruby/site_ruby/1.8/linguistics.rb}:98:in `synsets' > from /usr/lib64/ruby/site_ruby/1.8/linguistics.rb:98:in `call' > from /usr/lib64/ruby/site_ruby/1.8/linguistics.rb:98:in > `method_missing' > from extract_from_string.rb:53:in `extractSyn' > from extract_from_string.rb:87:in `extractPhrase' > from extract_from_string.rb:211 > > > > I thought it had something to do with permissions and have tried changing > them around. Then tried some things with the Apache config, but since the > ssh is not working it looks like that is not the error. I am at a complete > loss... > > is there some Wordnet stuff I need to preload > > > Harish > > > > > On 7/12/06, John Gabriele wrote: > > > > On 7/11/06, Harish TM wrote: > > > Hi, > > > I am having some problems with Ruby CGI code. What I am trying > > to do > > > is to use the Ruby WordNet Modules when working with some CGI > programs. > > I > > > need the CGI program to call a couple of functions defined in a > > different > > > module. The CGI program seems to run fine when run from the command > line > > > (offline mode) but when run from a browser it does not load the > WordNet > > > modules. > > > > > > Could someone please help out with this. > > > > What does your apache error log say? > > > > > > ------=_Part_6306_33450715.1152652252647--