search for: ihvzjarskl1brrn4pjnoqq

Displaying 17 results from an estimated 17 matches for "ihvzjarskl1brrn4pjnoqq".

2005 Mar 31
6
Text in boxes for regular web pages
I have to say... since it''s bugged me _many_ times, that i *hate* these text boxes with the sliders that are being used to display text (for instance, on Rails documentation pages... but it''s not just Rails). Very often you can''t really read the text because it goes past the right border of the box. So you have to go to the bottom of the box to move the slider to
2009 Dec 13
20
Need help...NameError in InteractController#add_to_cart
Hi,I am developing a web app and am following the text-Agile web development.....Each time I click my "add to cart" button" i always get the  page below:I have double checked to see if i have errors in my code,there was none,please what do i need to do to proceed? NameError in InteractController#add_to_cartundefined local variable or method `find_cart'' for
2010 Jan 08
6
How to change a rails app to INstant rails app???
i have a rails app , i need to change that app to instant rails app. i have been using Net beans as IDE is der an easy step to do that??? rather creating a new one by copy paste? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to
2009 Sep 22
3
RE: We're sorry something went wrong when I use -d mysql
Hi: I am trying to make an application using mysql. When I do rails name -- d mysql, and then run mongrel. I will go to localhost:3000 and when i check my application environment, I get an error We''re sorry something went wrong. Now, when I do the same procedure without using --d mysql and just use the defalt sqllite. When I check my application environment it shows the information.
2006 May 19
11
Prototype / Scriptaculous & Dojo
Are these libs compatible ? At the very least I''d like to be able to use Prototype & Dojo ? Thoughts welcome.. Matt _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
2005 Apr 18
11
Create a pseudo-model from SQL query?
I''m having a hard time figuring out how to build my application using Rails. As i go along, simple questions occur to me like: are you supposed to have a separate model class (each in its own file, in the app/models directory) for each table in your database? You''d think that something as basic as this would be laid out in the introductory documentation but, alas, the
2011 Mar 31
2
multiple vhosts running off of one passenger/rails app
Hi, I''ve been googling quite a bit - but up until now to no use :( My problem is how to configure Apache conf (and perhaps Passenger) for this setup to work: <VirtualHost *:80> ServerName oxen.company_A.com DocumentRoot /var/www/html/oxen/sites/company_A/public PassengerAppRoot /var/www/html/oxen SetEnv OXID 23 </VirtualHost> <VirtualHost *:80>
2012 Nov 30
3
Rails Course Booking System
Hi all, i have just finished reading Beginning Rails 3 and have done as many tutorials on the web I can find. So I have decided for my first real project I would like to create a system where an admin can created courses controlled from some sort of back-end. Users could then register an account book and pay for course utilizing maybe some sort of calender system. Am I starting out too big for
2008 Oct 16
4
InstantRails and SQLite
Hy, I''m using InstantRails for my RoR developments and it is really great. However I have a little problem since a few days. Here is the situation, I''m using InstantRails 2.0 with PHP 5.2.6 (I upgraded following the InstantRails procedure). I''m using MySQL as a database for my application but recently downloaded a forum (FluxBB) which need SQLite to work. My problem is
2005 Aug 08
68
Pluralized Controller Names?
If I do: script/generate controller Photo I get a controller named photo_controller. OTOH, if I do: script/generate scaffold Photo I get a controller named photos_controller. (Note that the controller name is pluralized). I realize that I''m specifying the controller name explicitly in the first case, but it seems odd to me that the scaffold command generates a pluralized
2012 Jan 24
7
Ruby update
Hello, I''m using instantrails 2 to develop RubyOnRails projects on windows and need to update my ruby version to 1.8.7 (I''m still using 1.8.6). I downloaded ruby 1.8.7 here http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7.zip and unzipped files in the ruby folder of instantrails but when I check "ruby -v" I still got 1.8.6 (I tried a gem update and same thing, some gems
2010 Jul 02
22
MySQL not Connected ...... *pull hair*
I''m trying to run " rake db:migrate " and im getting an error back: ------------------------------------------------------------------------ C:\wamp\www\demoproject>rake db:migrate (in C:/wamp/www/demoproject) rake aborted! Mysql::Error: query: not connected: CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB (See full trace by running task
2011 May 10
7
Webrick script/server file does not exist
Hello all, I worked fairly enough with PHP and MySQL, but am very new to Ruby. I have Windows machine with Apache and MySQL installed previously. Both Apache and MySql were stopped while installing Ruby. I tried several ways to install Ruby 1.8.7 and one-step installer. I can use Ruby with netbeans 6.0.1 with its own Ruby or with the one I installed now. The problem starts when I try to create
2005 Aug 15
0
"rails" follows symlinks in generated files?
A minor issue, but I''m seeing that when we generate a application skeleton using the "rails" command, the generated script files follow the symlink of our ruby installation. On our machines, ruby is installed under /usr/pkg/ruby/ruby182/ with a symlink /usr/pkg/ruby/ruby -> /usr/pkg/ruby/ruby182/ Our sysadmins like using the symlinks as a way of managing the
2005 Sep 07
0
using Oracle bind vars in Rails
Has anyone looked into having ActiveRecord use Oracle bind vars? I don''t know if the same concept is supported in other dbs, but Oracle''s OCI driver supports late binding with dramatically improved performance. I did a quick test to confirm that I could expect the same performance improvement through the Ruby OCI8 driver, and in a simple test it looks to be a 5x improvement.
2008 Oct 29
0
digest
please change me to digest --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to
2010 Nov 06
0
multi lines in button_to
I am using ROR 2.2.2. In order to make my layout look a bit better I would like to put two words on a button label and have them on two lines. I tried to put a break in the label text but it just ended up as escaped html. Is there any way to put in multi-lines other than writing my own button_to helper? I couldn''t find any help in the documentation or on google. Thanks Norm --