ruby on rails problem

K

Ken Fettig

Hello, I have a Ruby on Rails question. I have used a layout in a
controller, and I have image files referenced in the layout. I have the
image files in the public/images dir. When I reference the controller in a
URL directly ( http://127.0.0.1:3000/students ), Rails finds the image
files. When I reference it indirectly like the following (
http://127.0.0.1:3000/students ), Rails does not find the image files. I am
using the Webrick server. Does anyone know what I am doing wrong, or if
there is a bug that I do not know of? How do I work around this?

Thanks Much
Ken
 
M

Michael Buffington

The URLs you pasted are identical so I'm not sure how relevant this
answer is, but here goes:

Whenever I reference images, I do so like so:

/images/image.gif (the first / being very important - it indicates
"starting at the base URL" or "from the root").

That way, regardless of what context the layout is executing in, the
browser will always look for the image off the root URL (like
http://127.0.0.1:3000/images/image.gif).
 
K

Ken Fettig

Thank you so much!!!! That did the trick!!!!! Much appreciated!


The URLs you pasted are identical so I'm not sure how relevant this
answer is, but here goes:

Whenever I reference images, I do so like so:

/images/image.gif (the first / being very important - it indicates
"starting at the base URL" or "from the root").

That way, regardless of what context the layout is executing in, the
browser will always look for the image off the root URL (like
http://127.0.0.1:3000/images/image.gif).
 
A

Adam P. Jenkins

Michael said:
The URLs you pasted are identical so I'm not sure how relevant this
answer is, but here goes:

Whenever I reference images, I do so like so:

/images/image.gif (the first / being very important - it indicates
"starting at the base URL" or "from the root").

That way, regardless of what context the layout is executing in, the
browser will always look for the image off the root URL (like
http://127.0.0.1:3000/images/image.gif).

The problem with this solution is it only works if your app is running
as document root, which will be the case if you're running under
Webrick, but not necessarily otherwise. If you want your app to be able
to work correctly even when not installed under document root, use the
image_tag helper function instead of absolute URLs. That is, instead of
writing

<img src="/images/image.gif"/>

Write:

<%= image_tag "image.gif" %>

If your app is installed under somewhere other than document root, this
will still expand to a valid url. See the documentation for the
ActionView::Helpers::AssetTagHelper module for other similar helper
functions for javascript files and stylesheets.

Here's a more general helper function I use to generate links to any
static file. Add this function to the ApplicationHelper module in
app/helpers/application_helper.rb:

def link_to_file(name, file, *args)
if file[0] != ?/
file = "#{@request.relative_url_root}/#{file}"
end
link_to name, file, *args
end

Which you'd use like:

<%= link_to_file "Installer Program", "installer.exe" %>

Which would generate

<a href="/installer.exe">Installer Program</a>

under Webrick, but if your app is installed under Apache using FCGI, at
say http://your.host.com/yourapp/, then the generated link would be

<a href="/yourapp/public/installer.exe">Installer Program</a>

without any changes to your code.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,995
Messages
2,570,236
Members
46,822
Latest member
israfaceZa

Latest Threads

Top