Questions tagged [missing-template]
44 questions
19
votes
4 answers
Googlebot receiving missing template error for an existing template
In the last couple of days, we have started to receive a missing template error when the google bot attempts to access our main home page (welcome/index). I have been staring at this for a couple of hours and know that I am just missing something…

TDH
- 392
- 3
- 14
12
votes
5 answers
Reporting Template is missing in Visual Studio 2015 Preview
I have installed Visual Studio 2015 Preview.
Now I am trying to create new report(.rdlc) from Add New Item Dialog
But I am not able to View Reporting Template option in my Add New Item Wizard, Below is the image of my Issue:
Can anyone please help…

Mr. Go
- 567
- 1
- 5
- 20
7
votes
7 answers
ActionView::MissingTemplate after Rails 3.1 upgrade
After upgrading to Rails 3.1.0 and following David Rice's instructions, all of my controllers strangely can't find their views anymore.
# rails s #
Started GET "/units" for 127.0.0.1 at 2011-09-04 07:52:23 -0400
Unit Load (0.1ms) SELECT…

Jonathan Allard
- 18,429
- 11
- 54
- 75
3
votes
1 answer
Expected response to be a success, but was 302
I have the following articles_controller:
def myarticles
@myarticles = current_student.articles.all
respond_to do |format|
format.html
format.xml { render :xml => @myarticles }
end
end
def create
@article =…

Panagiotis Petridis
- 164
- 2
- 14
3
votes
1 answer
Reporting template not available in Visual Studio 2015 C#
I want to create a .rdlc file in a WPF project but adding add new dialog box doesn't provides any option to create a new report. I have installed Microsoft SQL server data tools, express localdb and prerequisites for ssdt. Can anyone point me in the…

Saif
- 1,745
- 5
- 23
- 46
3
votes
1 answer
Rails Missing Template Error
I got the following error when trying to run my Rails server:
ActionView::MissingTemplate (Missing template pages/index, application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder]}.…

eatsleepcode
- 119
- 2
- 13
3
votes
2 answers
Rails 4 - Template is missing
I am hoping you can help me figure out why I am getting this peculiar error.
I have the following form:
index.html.erb
<%= form_for :response, :url => {:action => 'create'}, :remote => true do |f| %>
<%= f.hidden_field :template_id, :value =>…

Dodinas
- 6,705
- 22
- 76
- 108
2
votes
1 answer
Ruby On Rails - creating an object does not respect validations and showing error messages
I'm having troubles handling objects that not respect the validation.
I'm building an app in which an user can create a "Trip" model and then add steps to his trip, that I called "Traces". Each added trace prints a new part of a map present in the…

Francesco Cretti
- 216
- 2
- 9
2
votes
1 answer
Ruby on Rails - template missing error
I'm a newbie with Ruby on Rails and I know that it is kind of tricky but I just can't find a solution for this online, even though it is supposed to be the easiest thing...
I have everything set up and have created a new controller + view with rails…

Constantin Jacob
- 488
- 1
- 8
- 21
2
votes
0 answers
Missing template error when downloading current page
I am trying to save the displayed web page through a click on a button (just like when you click on the "Save As" button in the browser), but I can't figure out this error:
Missing template shipments/save_page_xls, application/save_page_xls with…

Andres Calle
- 257
- 1
- 3
- 11
2
votes
2 answers
MissingTemplate : Render partial in Rails 3.2.3
Hi I am new to Ruby on Rails and I am following Michael Hartl's book online.
In Partials section of his book. The code he used to render partial was <%= render 'layouts/stylesheets' %>
but I get this error.
I read the API and tried this <%=render…

markphd
- 1,394
- 1
- 12
- 17
1
vote
1 answer
'Template is missing' error in Rails 3.1 when trying to render
I'm trying to use Ajax with my CRUD. I'm following this tutorial.
I see this error:
Missing template posts/edit, application/edit with {:handlers=>[:erb, :builder, :coffee], :formats=>[:html], :locale=>[:en, :en]}. Searched in: *…

Nick Desaulniers
- 2,046
- 3
- 25
- 47
1
vote
1 answer
server error with uploadify in ruby on rails 3.1
I'm trying to upload a video using uploadify and paperclip on rail 3.1
When i upload a video with uploadify, the server returns an 500 error.
The development.log says:
Started POST "/videos" for 127.0.0.1 at Tue Oct 04 14:46:05 +0200…

daniel
- 41
- 3
1
vote
0 answers
What's the error in this Priority Queue based Generic skeleton? I can't find it
Can anyone help me figure out the wrongly typed portion? Which are the problematic areas here?
class Queue {
/**
* A First in, First Out Queue ADT
*/
public List elements = new ArrayList();
public void enqueue(E element) {}
public E…
1
vote
0 answers
I need to find a string within the website files. Specifically looking for the footer HTML files
I've been asked to change part of my client's website which has their social media icons in their footer. They're using WordPress, and while I'm very familiar with editing footer.php or the footer widgets, the HTML in this footer file is in neither…

Clare12345
- 181
- 3
- 14