Template is missing

114 προβολές
Παράβλεψη και μετάβαση στο πρώτο μη αναγνωσμένο μήνυμα

Bazley

μη αναγνωσμένη,
31 Μαρ 2008, 6:45:06 π.μ.31/3/08
ως 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

μη αναγνωσμένη,
31 Μαρ 2008, 7:12:52 π.μ.31/3/08
ως 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

μη αναγνωσμένη,
10 Απρ 2008, 5:20:19 μ.μ.10/4/08
ως 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

μη αναγνωσμένη,
10 Απρ 2008, 5:23:41 μ.μ.10/4/08
ως rubyonra...@googlegroups.com

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

Fred

Bazley

μη αναγνωσμένη,
10 Απρ 2008, 5:30:49 μ.μ.10/4/08
ως 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

μη αναγνωσμένη,
12 Μαΐ 2010, 7:56:08 π.μ.12/5/10
ως 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

μη αναγνωσμένη,
12 Μαΐ 2010, 8:20:33 π.μ.12/5/10
ως 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

μη αναγνωσμένη,
12 Μαΐ 2010, 8:23:31 π.μ.12/5/10
ως 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

μη αναγνωσμένη,
12 Μαΐ 2010, 8:36:28 π.μ.12/5/10
ως 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.

μη αναγνωσμένη,
4 Απρ 2011, 11:59:40 π.μ.4/4/11
ως 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

μη αναγνωσμένη,
4 Απρ 2011, 12:16:42 μ.μ.4/4/11
ως 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.

μη αναγνωσμένη,
29 Ιουν 2013, 11:32:37 π.μ.29/6/13
ως 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

μη αναγνωσμένη,
29 Ιουν 2013, 2:04:57 μ.μ.29/6/13
ως 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.

μη αναγνωσμένη,
30 Ιουν 2013, 12:14:43 π.μ.30/6/13
ως 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)

μη αναγνωσμένη,
12 Νοε 2013, 10:28:23 π.μ.12/11/13
ως rubyonra...@googlegroups.com
Thanks walter!! even this helped me! I was so blind to write 'trail' for 'trial' lol!! :P

Regards,
Ud
Απάντηση σε όλους
Απάντηση στον συντάκτη
Προώθηση
0 νέα μηνύματα