Template is missing

114 views
Skip to first unread message

Bazley

unread,
Mar 31, 2008, 6:45:06 AM3/31/08
to Ruby on Rails: Talk
I have installed Ruby, RubyGems, Rails, MySQL and sqlite3. After
starting the server and viewing a simple application called
'greeting.rhtml' I get the following message in FireFox:

Template is missing

Missing template app/greeting.html.erb in view path C:/Documents and
Settings/Me/Desktop/rubydev/hello/app/views

I am a newbie and really don't know where to go from here. Any
suggestions..? Thanks!

Thorsten Mueller

unread,
Mar 31, 2008, 7:12:52 AM3/31/08
to rubyonra...@googlegroups.com
it's as simple as the message tells you, the file greeting.html.erb
in folder C:/Documents and
Settings/Me/Desktop/rubydev/hello/app/views
is missing.

this should contain the html/erb code to display your data
for simple testing/make it run, you can just place an empty file with
the name there or put some simple html in it like:

<h1>Greeting</h1>

that's all to it, you should see the content of the file in your browser
--
Posted via http://www.ruby-forum.com/.

Bazley

unread,
Apr 10, 2008, 5:20:19 PM4/10/08
to Ruby on Rails: Talk
Thanks, it is now working. But I don't really understand - what on
earth is a html.erb file? And why does this file work but the .rhtml
file doesn't?

Frederick Cheung

unread,
Apr 10, 2008, 5:23:41 PM4/10/08
to rubyonra...@googlegroups.com

.html.erb is the new name for .rhtml. Both should still work though.

Fred

Bazley

unread,
Apr 10, 2008, 5:30:49 PM4/10/08
to Ruby on Rails: Talk
It's a bit of a niggle that the .rhtml file should work but it
doesn't, despite the html.erb file working fine. Is there anything you
can recommend I do to investigate and/or fix this..?

Dark David

unread,
May 12, 2010, 7:56:08 AM5/12/10
to rubyonra...@googlegroups.com
Hi, I am also new to Ruby on Rails and html....after reading your
comment i now know that i need to create a html.erb file but my question
is how do i create an html.erb file???? using notepad??? Do i jus type
(da file name) followed by html.erb??? I've tried dis but it still says
"Template is Missing"

Thanks and hope 2 hear 4m u soon!
--
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 rubyonra...@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-ta...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

Marnen Laibow-Koser

unread,
May 12, 2010, 8:20:33 AM5/12/10
to rubyonra...@googlegroups.com
Nothing needs to be "fixed". The .rhtml naming scheme is deprecated in
Rails 2, and I believe it's been removed entirely in Rails 3. So don't
use it!

If you have a tutorial that uses .rhtml, that's a sure sign that it's
out of date. Find a current one.

Best,
--
Marnen Laibow-Koser
http://www.marnen.org
mar...@marnen.org

Marnen Laibow-Koser

unread,
May 12, 2010, 8:23:31 AM5/12/10
to rubyonra...@googlegroups.com
Dark David wrote:
> Thorsten Mueller wrote:
>> it's as simple as the message tells you, the file greeting.html.erb
>> in folder C:/Documents and
>> Settings/Me/Desktop/rubydev/hello/app/views
>> is missing.
>>
>> this should contain the html/erb code to display your data
>> for simple testing/make it run, you can just place an empty file with
>> the name there or put some simple html in it like:
>>
>> <h1>Greeting</h1>
>>
>> that's all to it, you should see the content of the file in your browser
>
> Hi, I am also new to Ruby on Rails and html....after reading your
> comment i now know that i need to create a html.erb file but my question
> is how do i create an html.erb file???? using notepad??? Do i jus type
> (da file name) followed by html.erb??? I've tried dis but it still says
> "Template is Missing"
>
> Thanks and hope 2 hear 4m u soon!

It's just a text file. You create it in a text editor, the same way
you'd create a plain HTML file for a static website.

A thought: if you don't know how to create static Web pages, then you're
not ready to
start working with Rails (or any other Web programming framework) quite
yet. Learn HTML first, then come back.

Best,
--
Marnen Laibow-Koser
http://www.marnen.org
mar...@marnen.org


Dark David

unread,
May 12, 2010, 8:36:28 AM5/12/10
to rubyonra...@googlegroups.com
> It's just a text file. You create it in a text editor, the same way
> you'd create a plain HTML file for a static website.
>
> A thought: if you don't know how to create static Web pages, then you're
> not ready to
> start working with Rails (or any other Web programming framework) quite
> yet. Learn HTML first, then come back.
>
> Best,
> --
> Marnen Laibow-Koser
> http://www.marnen.org
> mar...@marnen.org

Its cool mate, I've solved the problem myself. I was using NOTEPAD
before but I tried SciTe and it works.

dana t.

unread,
Apr 4, 2011, 11:59:40 AM4/4/11
to rubyonra...@googlegroups.com
Dark David wrote in post #911654:

> Its cool mate, I've solved the problem myself. I was using NOTEPAD
> before but I tried SciTe and it works.

Strange this would work in one text editor and not the other. It should
have been a simple bit of HTML code.

Colin Law

unread,
Apr 4, 2011, 12:16:42 PM4/4/11
to rubyonra...@googlegroups.com
On 12 May 2010 13:36, Dark David <li...@ruby-forum.com> wrote:
>> It's just a text file.  You create it in a text editor, the same way
>> you'd create a plain HTML file for a static website.
>>
>> A thought: if you don't know how to create static Web pages, then you're
>> not ready to
>> start working with Rails (or any other Web programming framework) quite
>> yet.  Learn HTML first, then come back.
>>
>> Best,
>> --
>> Marnen Laibow-Koser
>> http://www.marnen.org
>> mar...@marnen.org
>
> Its cool mate, I've solved the problem myself. I was using NOTEPAD
> before but I tried SciTe and it works.

Are you sure the file created by notepad had the correct full name,
possibly it had .txt on the end. You are using Windows after all,
perhaps it hid the extension for you.

Colin

Raphael P.

unread,
Jun 29, 2013, 11:32:37 AM6/29/13
to rubyonra...@googlegroups.com
Template is missing
Missing template salutation/hello, application/hello with
{:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw,
:ruby, :jbuilder, :coffee]}. Searched in: *
"C:/Users/RAPHAEL/hello/app/views"



How can I solve this problem ?

Walter Lee Davis

unread,
Jun 29, 2013, 2:04:57 PM6/29/13
to rubyonra...@googlegroups.com
Does that file exist at either of the sub-paths indicated, or not? If not, move it there, or create it there. Check also that you may have a folder called 'salutations' (plural) and you may have written salutation/hello in your view or controller (wherever you called render).

Walter
> --
> You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-ta...@googlegroups.com.
> To post to this group, send email to rubyonra...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/69b00cfddbccda0cd90b8aff449a5dbe%40ruby-forum.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>

Raphael P.

unread,
Jun 30, 2013, 12:14:43 AM6/30/13
to rubyonra...@googlegroups.com
Walter Davis wrote in post #1113937:
> Does that file exist at either of the sub-paths indicated, or not? If
> not, move it there, or create it there. Check also that you may have a
> folder called 'salutations' (plural) and you may have written
> salutation/hello in your view or controller (wherever you called
> render).
>
> Walter

Dear Walter,

Thank your help.

Uday (Dave)

unread,
Nov 12, 2013, 10:28:23 AM11/12/13
to rubyonra...@googlegroups.com
Thanks walter!! even this helped me! I was so blind to write 'trail' for 'trial' lol!! :P

Regards,
Ud
Reply all
Reply to author
Forward
0 new messages