diff --git a/app/views/errors/missing_action.thtml b/app/views/errors/missing_action.thtml new file mode 100644 index 000000000..0dbd36f19 --- /dev/null +++ b/app/views/errors/missing_action.thtml @@ -0,0 +1,22 @@ +
You are seeing this error because the action =$this->missing_action;?> + is not defined in controller =Inflector::camelize($this->name);?> +
+ + +
+Notice: this error is being rendered by the app/views/errors/missing_action.thtml
+view file, a user-customizable error page for handling invalid action dispatches.
+
+Error: Unable to execute action =$this->missing_action;?> on +=Inflector::camelize($this->name);?> +
+ ++ print_r($this); ?> +diff --git a/app/views/errors/missing_controller.thtml b/app/views/errors/missing_controller.thtml new file mode 100644 index 000000000..7423fbbd5 --- /dev/null +++ b/app/views/errors/missing_controller.thtml @@ -0,0 +1,20 @@ +
You are seeing this error because controller =$this->missing_controller;?> + could not be found. +
+ +
+Notice: this error is being rendered by the app/views/errors/missing_controller.thtml
+view file, a user-customizable error page for handling invalid controller dispatches.
+
+Fatal: Unable to load controller =$this->missing_controller;?> +
+ + ++ print_r($this); ?> +diff --git a/app/views/errors/missing_view.thtml b/app/views/errors/missing_view.thtml new file mode 100644 index 000000000..4324fb03e --- /dev/null +++ b/app/views/errors/missing_view.thtml @@ -0,0 +1,22 @@ +
You are seeing this error because the view =$this->missing_view;?> + for action =$this->params['action'];?> + in controller =Inflector::camelize($this->name);?> could not be found. +
+ +
+Notice: this error is being rendered by the app/views/errors/missing_view.thtml
+view file, a user-customizable error page for handling missing/invalid views during rendering.
+
+Fatal: Unable to load view file =$this->missing_view;?> for +action =$this->params['controller'];?>::=$this->params['action'];?> +
+ + ++ print_r($this); ?> +diff --git a/app/views/layouts/default.thtml b/app/views/layouts/default.thtml index a4323b652..447c447c1 100644 --- a/app/views/layouts/default.thtml +++ b/app/views/layouts/default.thtml @@ -7,10 +7,10 @@ - -