Jump to content

Featured Replies

Posted

Hello,

I got a 2S100/6 error when I submit my content item form. Printing the $e->getMessage() on dispatcher front, I got requested_route_404.

Still no idea of what's wrong.

Any idea?

Solved by newbie LAC

Go to solution
  • Solution

Hello,

Debug next code (system\Dispatcher\Standard.php)

			try
			{
				$this->module = \IPS\Application\Module::get( $this->application->directory, \IPS\Request::i()->module, static::i()->controllerLocation );
			}
			catch ( \OutOfRangeException $e )
			{
				\IPS\Output::i()->jsFiles = array_merge( \IPS\Output::i()->jsFiles, \IPS\Output::i()->js( 'app.js' ) );
				throw new \DomainException( 'requested_route_404', 6 );
			}

 

  • Author

Oh I had the brilliant idea of add a hidden field name 'module'.

Thank you! 👍

Recently Browsing 0

  • No registered users viewing this page.