Welcome Guest, Not a member yet? Register   Sign In
Route wont work
#1

(This post was last modified: 01-02-2025, 02:47 AM by 4usol.)

Hi,

i try to run a simple redirection but i failed.

Code:
redirect('access_denied/index/myval');

it should rout to the controller in my base-folder "access_denied" to the funtion "index" and the values for the index-function with "myval".

routes.php
Code:
$routes->get('access_denied', '\App\Controllers\Access_denied::index'); //no result ->The route for "access_denied/index/myval" cannot be found
$routes->get('access_denied/(:any)', '\App\Controllers\Access_denied::index'); ->The route for "access_denied/index/myval" cannot be found

What i'm doing wrong?

Update
The Route: $routes->get('accessdenied/(:any)', 'Access_denied::index/$1');
dont work like it should be, i will always redirect to the shield/login page - maybe there is a problem with the settings about the shield-routes?

in the Filter Config is this:
Code:
public array $globals = [
        'before' => [
            // ...
            'session' => ['except' => ['login*', 'register', 'auth/a/*', 'logout']],
        ],
        // ...
    ];

if i comment this line out, the route seems to work. Now i ask myselt how i can change the filter.

I want that all pages avivable outside a subfolder in the controllers named "myadminarea" this folder should be only accessable for loggedin users.
Reply


Messages In This Thread
Route wont work - by 4usol - 01-02-2025, 01:16 AM
RE: Route wont work - by captain-sensible - 01-02-2025, 02:44 AM
RE: Route wont work - by 4usol - 01-02-2025, 02:47 AM
RE: Route wont work - by michalsn - 01-02-2025, 07:00 AM
RE: Route wont work - by 4usol - 01-02-2025, 08:18 AM
RE: Route wont work - by michalsn - 01-02-2025, 08:30 AM
RE: Route wont work - by 4usol - 01-02-2025, 08:40 AM
RE: Route wont work - by michalsn - 01-02-2025, 08:48 AM
RE: Route wont work - by 4usol - 01-02-2025, 10:22 AM
RE: Route wont work - by michalsn - 01-02-2025, 11:05 AM
RE: Route wont work - by 4usol - 01-02-2025, 11:06 AM
RE: Route wont work - by michalsn - 01-02-2025, 11:15 AM



Theme © iAndrew 2016 - Forum software by © MyBB