It looks like you're new here. If you want to get involved, click one of these buttons!
We need to make the page admin driven and hence I wanted to add a page for this URL, How can I go about this request. As each time I try adding (:any) or \(:any\), the characters get be escaped
about-us/board-of-directors/enterprises/(:any)
Comments
I tried adding only :any at the end of the URL but still I am not getting the page. I am getting a 404 for any fragment I use at the end of the URL.
about-us/board-of-directors/enterprises/:any in the browser gives the desired page
about-us/board-of-directors/enterprises/{director-name} in the browser gives 404.
Thanks.
$config['max_page_params'] = array('about-us/board-of-directors/enterprises/' => 1);
Now,
about-us/board-of-directors/enterprises/:any in the browser gives the desired page
about-us/board-of-directors/enterprises/{director-name/any-other-word} in the browser gives the page at "about-us/board-of-directors/enterprises/" route.
about-us/board-of-directors/enterprises/
Do I have to make any change to the location parameter of the page
about-us/board-of-directors/enterprises/:any , currently this is used as the location
Any luck here.. I tried allowing certain characters in the config/config.php file's permitted_uri_chars but still the same result.
I tried debugging around :any in the Pages controller of the fuel folder but didn't find anything relevant just a line which is already doing its part Stuck on this for some time now. Any help would be appreciated. Thanks.
https://github.com/daylightstudio/FUEL-CMS/commit/a71d525e64c562e4854621e69194ac2189a1ced5
Thanks alot..