Ticket #356 (closed defect: fixed)

Opened 17 years ago

Last modified 14 years ago

OnRequestStart error with QuickStart

Reported by: lyle@… Owned by:
Priority: normal Milestone: 3.0
Version: 3.0.178 Severity: normal
Keywords: controller.cfc onRequestStart Cc:

Description

I get the following error running through the QuickStart.

Error: The method OnRequestStart? was not found in component translator.controller.Controller.

I am missing something. Ran through it again and do not see anything about adding anything for onRequestStart to controller.cfc.

Any suggestions would be greatly appreciated.

Thanks, -Lyle

Change History

Changed 16 years ago by chuck@…

I had that problem too, copy these to the end of your /translator/controller/controller.cfc

<cffunction name="OnRequestStart" access="public" returntype="void" output="false">
</cffunction>  
   
<cffunction name="OnRequestEnd" access="public" returntype="void" output="false">
</cffunction> 

Changed 16 years ago by cfgrok

  • status changed from new to closed
  • resolution set to fixed

The references to OnRequestStart? and OnRequestEnd? have been removed from the Quickstart section in order to prevent others from encountering this issue (their presence was a legacy holdover from Model-Glue 2).

Note: See TracTickets for help on using tickets.