Displaying 20 results from an estimated 91 matches for "norcross".
2006 Apr 12
8
newbie radrails question
...ppPart1 at
http://wiki.awebfactory.com.ar/awebfactory/published/DemoAppPart1
When I click on the DepotServer and try to start it WEBbrick is not starting.
I can cd to the base directory and run script/server and it works.
Any idea what I''m doing wrong?
Thanks
Greg
--
Greg Freemyer
The Norcross Group
Forensics for the 21st Century
2006 Feb 15
5
Lighttpd now works for production. Development is broken?
...setup to support my production instance.
Now when I try to run rails/app.devel/script/server it appears to try
and run lighttpd.
Unfortunately this fails. Do I need to update my lighttpd config to
support devel, or somehow force script/server to launch WEBrick?
Thanks
Greg
--
Greg Freemyer
The Norcross Group
Forensics for the 21st Century
2006 Feb 10
5
Re: Manually running dispatch.fcgi fails (Please help!!)
...is:
>
> #!/usr/bin/ruby
> require File.dirname(__FILE__) + "/../config/environment"
> require ''fcgi_handler''
>
> RailsFCGIHandler.process!
>
> Can you run your dispatch.fcgi from the command line?
>
> Greg
> --
> Greg Freemyer
> The Norcross Group
> Forensics for the 21st Century
>
--
Greg Freemyer
The Norcross Group
Forensics for the 21st Century
2006 Jul 10
3
search plugin?
...ongs_to type fields, so
I need something that works well with the Rails models.
Any recommendations?
== Example of what I need to work
Assume I have a :belongs_to field1 in my model.
I want to search all my records for hits in the field1.name associated field.
Thanks
Greg
--
Greg Freemyer
The Norcross Group
Forensics for the 21st Century
2006 May 05
2
newbie ruby string match question
...the login screen.
When I''m on the page I care about the controller variable is
"#<ActiveRbac::UserController:0x408b3d6c>"
So I want something like:
if controller contains ActiveRbac::UserController
What is the right syntax for the above?
Thanks
Greg
--
Greg Freemyer
The Norcross Group
Forensics for the 21st Century
2005 Dec 27
3
created_on & updated_on - helper to display date only
...not the
time. Best wold be a simple 12/28/05 type of presentation.
I''ve found the format helpers in rdoc. (ie.
distance_of_time_in_words_to_now ), but none seem to be what I''m
looking for.
How do I control the date format of a timestamp field?
Thanks
Greg
--
Greg Freemyer
The Norcross Group
Forensics for the 21st Century
2005 Dec 22
4
Is "case" a magic name
...to show up.
I just did a "generate scaffold case case" (I think that is correct).
Now when I try to list my cases, I''m getting a syntax error on all of
the view source code that references "case".
ie. <% for case in @cases %>
Thanks
Greg
--
Greg Freemyer
The Norcross Group
Forensics for the 21st Century
2006 Aug 10
7
Mongrel and SSL?
I have a small intranet app with only 20 or so users.
I''m currently using lighttpd w/ssl for production and mongrel for dev.
I don''t think Mongrel supports ssl, but what is the easiest front-end
to put in front of it? Pound?
Thanks
Greg
--
Greg Freemyer
The Norcross Group
Forensics for the 21st Century
2006 Jan 16
17
LoginEngine / UserEngine conceptual help
...nup page to the existing users with logins? Or better yet just to
myself and one other person?
If not, should I consider also using the user engine and then only
providing a very basic website to anyone who registers but I have not
yet granted advanced rights to?
Thanks
Greg
--
Greg Freemyer
The Norcross Group
Forensics for the 21st Century
2006 Jul 17
3
Plugins and Engines
I''m trying to work out how to use the functionality from a plugin in an
engine. It sounds weird, but it''s actually not so strange.
I assume I can''t just add a vendor directory to an Engine, so some
strategy for getting the plugin in the lib folder is probably necessary
(and then requiring the plugin, perhaps?).
-- Yehuda Katz
--
Posted via
2006 Jan 16
2
My first test - named fixture not autoloading instance variable
...he third one is failing because @first is nil.
Per the book @first should be automatically created because it is the
name of my fixture. (ie. the scaffold named the first fixture "first"
and I should be able to reference it as @first.)
Any idea what is wrong?
Greg
--
Greg Freemyer
The Norcross Group
Forensics for the 21st Century
2006 Apr 04
4
Ruby 1.8.4 on SUSE 10.0 howto
...y.spec.orig ruby.spec
28d27
< Patch2: ruby-1.8.4-no-eaccess.diff
181d179
< %patch2
I then compiled up the rpm via "rpmbuild -bb ruby.spec"
I then went to the /usr/src/packages/RPMS/i586 directory and installed
the all the various 1.8.4 rpms.
HTH
Greg
--
Greg Freemyer
The Norcross Group
Forensics for the 21st Century
2005 Dec 23
4
DRY relative to edit and show
...ltiple rows/columns and I want my show form to look the
same.
Currently I''ve modified my show view to use _form, but now all the
fields are read/write and obviously they need to be read only on the
show form.
Any ideas, or just do form layout work twice?
Thanks
Greg
--
Greg Freemyer
The Norcross Group
Forensics for the 21st Century
2008 Jan 15
2
Reproducible samba bug with directory name
...hat at any time, but if there is any diagnostic value in
> analyzing this, I'll hold off.
>
> Thanks
> Greg
> --
> Greg Freemyer
> Litigation Triage Solutions Specialist
> http://www.linkedin.com/in/gregfreemyer
> First 99 Days Litigation White Paper -
> http://www.norcrossgroup.com/forms/whitepapers/99%20Days%20whitepaper.pdf
>
> The Norcross Group
> The Intersection of Evidence & Technology
> http://www.norcrossgroup.com
>
--
Greg Freemyer
Litigation Triage Solutions Specialist
http://www.linkedin.com/in/gregfreemyer
First 99 Days Litigation W...
2006 Jan 16
2
Basic (newbie) Webrick / ssl config question
...fying "server".
The trouble is my "script/server" is a very simple 3 line script the
runs "commands/server".
Where do I find "commands/server"?
And if I only want the production environment to run SSL is that
easily accomplished?
Greg
--
Greg Freemyer
The Norcross Group
Forensics for the 21st Century
2006 Mar 15
5
Passing params to a component
...s[''master_id'']
@todos = Todo.find :all
render :layout => false
end
Which is my attempt to instantiate and load @master_id.
The todos list view has a simple debug display of:
<%= h(@master_id) %>
Nothing is being displayed by the above.
--
Greg Freemyer
The Norcross Group
Forensics for the 21st Century
2006 May 11
2
Adding user name to production log?
...(11%) | 200 OK [https://68.213.19.251/opportunity/new]
I would like to add the user''s login name. Is there an easy way for
me to extend the above and add it? Obviously I have it in a session
variable, I just don''t know where to add the log statement.
Greg
--
Greg Freemyer
The Norcross Group
Forensics for the 21st Century
2006 Jan 27
1
Basic Many-to-One association
...se/list.rhtml file to replace
<%=h CaseStatus.find(a_case.status_id).status %>
with
<%=h a_case.case_status.status %>
Now that this is done, you should be able to use
"a_case.case_status.active" as well in the controller.
Hope that helps
Greg
--
Greg Freemyer
The Norcross Group
Forensics for the 21st Century
2006 Mar 30
11
Rails 1.1 and Ruby 1.8.3
I''ve seen that Rails 1.1 is not reliable with Ruby 1.8.2 so you should
upgrade to 1.8.4
I''m running ruby 1.8.3. What''s the story with it? Do I need to
upgrade before I try Rails 1.1?
Thanks
Greg
--
Greg Freemyer
The Norcross Group
Forensics for the 21st Century
2006 Mar 01
4
RailsFCGIHandler(NameError)
/usr/lib/ruby/gems/1.8/gems/activesupport-1.2.5/lib/active_support/dependencies.rb:200:in
`const_missing'': uninitialized constant RailsFCGIHandler (NameError)
from /var/rails/depot/public/dispatch.fcgi:24
I get the above log from my webserver running on apache+FastCGI
Any help would be greatly appreciated,
Mohammad