similar to: Weird error

Displaying 20 results from an estimated 2000 matches similar to: "Weird error"

2006 Apr 27
12
Stealing users IP address
Is there a functiaon to take the IP address of person who submits to a form example: <input id="user_ip" name="user[ip]" type="hidden" value="<%= some_ip_call %>" /> -- Posted via http://www.ruby-forum.com/.
2006 Jan 01
4
rails under windows and mysql make webrick unstable
hi, I have installed ruby and rails under windows(exactly this one: http://rubyforge.org/frs/download.php/4174/ruby182-15.exe that includes rubygems) the thing is that while trying to install the mysql gem, it seemd to try to build the native extension, so I finally added a compiled version that I found in http://dema.ruby.com.br/ the problem is that webrick behaves quite unstable while
2006 Jun 14
1
Loop to insert into database
I have a form that will display a brief description of a topic and provide links (1 to many) for that topic. So I currently have two tables Articles and Links. I also some stuff on the form that will add links to the form so that you can create as many was you would like. The problem I am having is finding out how to submit each link to the databasen and aligning those links to the
2006 Jan 01
5
scaffold not working on Windows XP
Hello, I did a fresh install of ruby182 and gem rails --include-dependencies Now when I do: rails receipts cd receipts ruby script\generate scaffold receipt receipt rails does not create the views or controller. What can I do? Thanks Frank
2006 Feb 24
3
Offline Installation
Hi I want to install Rails in my windows laptop but I don''t have internet conecction at home, so I''m saving in a usb drive the ruby installer (ruby182-15.exe) and the gems package (rubygems-0.8.11.zip) , could anyone point me what other files do I''ve to take home.
2006 May 25
8
Looking for AOL, MSN, Yahoo "Rails Buddies"
I''m an independent software developer that spends a fair amount of time each day working on Rails-related project. t''d be really great to meet some people to chat about rails, software development, or whatever else geeky stuff via IM! If interested, shoot me an e-mail or reply here. Personally, I''m a little apprehensive about putting all my info out there on a list
2005 Aug 09
12
Eclipse with RDT
Has anyone used Eclipse with RDT (http://wiki.rubyonrails.com/rails/show/RubyDevelopmentTools)? I have never used Eclipse. Would it be worth my time to setup Eclipse with RDT to create my first rails project?
2005 Feb 18
2
Fixed column widths in FXTable?
Is there a way to make an FXTable''s column widths (and row heights) unchangeable by the user? By experimentation it looks to me like leaving out TABLE_COL_SIZABLE and TABLE_ROW_SIZABLE from the options field in FXTable.new() has no effect. I can still drag the intersection between two column heading buttons to change the column width. The code I''m using to test this is
2005 Feb 18
5
FXTable segfaults after multiple setTableSize calls
When I empty and refill an FXTable multiple times with a large data set (10,000 rows x 1 column in the example below, around 1000 rows x 6 columns in a more complicated app), the application eventually fails with a segmentation fault. The number of repetitions required to produce the segfault is rather random, ranging from just a couple reps to 15 or 20 in some trials. The program disappears
2013 May 02
3
I Know It's A Stupid Question......
........But I'm trying to give my son a "cool-yet-kind-of-geeky" 13th Birthday Present......he hinted he liked the CentOS logo, but where would I find things that are branded with it?....searching the web doesn't really help me much, only because I'm not sure what I need to be looking for...any help would be greatly appreciated! Thanks in advance!! EGO II
2007 Dec 20
4
Unanswered question
How long does one have to typically wait for an answer to a post? Tomorrow my message will have been up a week, and I've gotten no replies. It was about whether a file, while it was being written to, could subsequently be opened by another client for reading. I used a DVR with chasing play as an example. Didn't seem like that difficult of a question, but maybe it isn't geeky
2006 May 27
2
[Repost] OpenID and my db schema
Hi, I posted this before, but didn''t get an answer, so I''m trying again. I''ve recently decided to use OpenID to let users log in to my site instead of old fashioned account creation. They''ll be able to add a small amount of personal details (about three things) to their account, and post messages in the site BB. I have an openid_users table which stores the
2006 May 24
4
AR foreign key problem.
Hello Railslist, (I''m using RadRails 0.6.3 on Windows XP with Ruby 1.8.4, Rails 1.1 and SQLite3) I have two tables in the database: "locations" and "customers": customers.sql --- id INT PRIMARY KEY name VARCHAR 255 address VARCHAR 255 postal_code VARCHAR 255 city VARCHAR 255 --- locations.sql --- id INT PRIMARY KEY postal_code TEXT longitude FLOAT latitude FLOAT
2006 May 24
5
rxml vs rhtml
I have been wondering if anyone here knows which format is faster for your templates? I am curious cause in the near future I may be using some expensive scripts (timewise) and would like to try and squeak out as much performance as possible. Is Ruby like other languages (ASP classic for example) that inccur a penalty by switching between HTML and Ruby Code? Ben -- Posted via
2006 Apr 08
7
How to create your own markup language ?
I''m actually looking to create my own markup language, after a look to the greats markdown and textilize markup languages they seem to be more complexes that what I need, so not feating with my application. Any help is welcome ;-) -- Grosjean S?bastien
2006 Apr 22
6
Friendly Reminder (OT)
Today, I had a tragic hard drive crash. I hadn''t updated anything to SVN in two weeks. I''m posting this here as a reminder to my beloved Rails community. Everyone, right now..... make a backup of your rails work. Make sure its on two disks. Many of you already do that automatically, but just make sure its working. Two near-release rails plugins were lost in the tragic crash
2006 Mar 31
4
javascript help
Hi list, I have a list of tags. I want to be able to click on a tag and have that tag name populate an input field. I think delicious used to allow you to click on existing links to tag your bookmark similar to this (moving instead to auto_complete). My guess is the code looks something like this.... <form> <input type="text" name="all" id="discover"
2006 May 29
19
WYSIWYG Editors and Rails
Hi everyone, I''m currently investigating re-writing our School CMS application in Rails and the only drawback I can see is there isn''t an ample supply (if any) of WYSIWYG In-browser editors written with a raw Ruby backend. We currently use KTML4 which is written with PHP as a base. I''m interested to hear from anyone who''s integrated a PHP based editor into
2005 Dec 30
9
cannot load engines plugin/scaffold broke
from C:/ruby/lib/ruby/gems/1.8/gems/activesupport-1.2.5/lib/active_suppo rt/dependencies.rb:214:in `require'' from script/plugin:3 I get the above error. Also, I cannot get scaffold to work. I installed ruby182-15 and did a gem rails I am using Windows XP Thanks Frank _______________________________________________ Rails mailing list
2007 Oct 12
6
abstract_class... what exactly does it do
Hi, Does anyone know much about abstract_class? Does it actually prevent instances of the class from being created? Does it disable certain methods? I already know what it''s for, but I want to know what setting self.abstract_class=true actually does. The reason I ask is that I want to use it for a slightly unorthodox purpose. I want a class who''s only attributes are its