search for: sfmcfar

Displaying 7 results from an estimated 7 matches for "sfmcfar".

Did you mean: sfmar
2006 Apr 27
5
one more try - ENV and FastCGI
Hi, I''m desperate, so I thought I''d try one more time in the hopes of getting a different audience. Basically. it boils down to this. Using CGI, the ENV hash is populated and is accessible from a model script. Using FastCGI, the ENV hash is empty. Can anyone explain how I can fix this? Thanks, Stan Mcfarland -- View this message in context:
2006 Feb 16
4
newbie question regarding basic AJAX form verification
Hi, I''m confused about how form verification with AJAX works. Let''s say I have a ''new.rhtml'' view that contains a form with two fields, and the form action is ''create''. Let''s assume that I also want to do some type of data validation on one of the two fields via AJAX before I submit the form. But since I''ve already
2006 May 16
3
application.rhtml ignored
Hi, I''m stuck. I have an application that''s been working fine. I made some changes to the database schema and rebuilt my models, ensuring that I did not overwrite any of the existing controller or view files. Now, whenever I display *any* of my pages, the layouts/application.rhtml file is completely ignored. I have *no* idea what''s causing this, and neither do
2006 Apr 25
1
problem with environmental variables and FastCGI
Hi, I''m trying to deploy my app using FastCGI, and I have a problem. The application works correctly in either FastCGI or CGI mode (toggling between dispatch.fcgi and dispatch.cgi in my public/.htaccess file) except that under regular CGI, my ENV hash is correctly set, but under FastCGI, the ENV hash is completely empty. I thought that environment variables were automatically passed
2006 Apr 26
3
problem with database.yml moving from 0.13.0 to 0.14.4
Hi, I''m upgrading from 0.13.0 to 0.14.4, and I''m having trouble with my database authentication. Even though the entries in my database.yml are correct, I get the following message when trying to do a ruby script/generate scaffold myClass... Access denied for user: ''@localhost to database '''' Why is the username and database name showing up as
2006 Feb 03
0
newbie trouble with find method and dual many-to-many relationship
Hi, I''m trying to do something which I think is fairly simple, but I''m stuck on the syntax. Briefly, I have three classes: users, groups, and blog_entries. There''s a M2M relationship between users and groups, and a M2M relationship between groups and blog_entries. I''ve got my classes defined ok, but in my "list" method for the blog_entries I
2006 Mar 08
6
Difficulty with params hash and submit_to_remote
Hi, Is there any trick to initializing the params hash via submit_to_remote()? I have a form with two submit methods - the regular, non-AJAX method, and the AJAX method. The regular method works like a champ. The submit_to_remote invokes the correct controller, but the params hash is empty except for the values for :action and :controller. I''d show my code, but it''s on