Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted April 2, 20204 yr 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?
April 3, 20204 yr 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 ); }
April 3, 20204 yr Author Oh I had the brilliant idea of add a hidden field name 'module'. Thank you! 👍