On 3/7/07, Octavian Rasnita <[EMAIL PROTECTED]> wrote:
If I just delete the file Show.pm and restart the server, the program works fine, but if I put it back and restart, it gives that error. I have seen the same thing under Linux and Windows.
You'd get along a lot better if you actually read the docs and error messages. You can't forward to a Catalyst View that doesn't implement a process() method or it'll throw an exception, which was just what happened in your case. You probably need to run: script/myapp_create.pl view MyView TT To create a TT view that has a process() method implemented. Or just change TT to whatever type of view you want. Either that or implement a process() method yourself. -- Eden Cardim Instituto Baiano de Biotecnologia Núcleo de Biologia Computacional e Gestão de Informações Biotecnológicas Laboratório de Bioinformática -- "you seem to think that 'close enough' is close enough... please learn to be 'literal' around programming." merlyn - on irc.freenode.net#perl _______________________________________________ List: [email protected] Listinfo: http://lists.rawmode.org/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/[email protected]/ Dev site: http://dev.catalyst.perl.org/
