As I remember, according to http://docs.getfuelcms.com/general/user-management
.... "A user with the permission to manage users, will be restricted to assigning the same permissions that they have access to"...
So don't know whether I missed somethi…
If give user A access to permission, then he can assign all permission to other users including those user A didn't have.
e.g. I give user A only Assets, Pages, Users and Permissions access rights. When user A login and he can't access other pages …
Just describe more for trouble shooting here:
I create 2 CMS page in cms admin which location is "about" & "about/team", and I load and show a variable $test in both page.
Step 1.
$vars['test'] = 'global'; // put inside "_variables/global.php"
i…
Thanks, it exactly what I understand. When create the cms page, if already have a view file then will prompt to let me import those variables and also translate the PHP code into the templating code (which according to the layout settings). The prob…
Thanks for reply, I give some test to load the corresponding variable file. If it is the opt-in (use view file) way, it works. But for a page create in CMS admin then it is not. (e.g. cms page with location "home" will not load _variables/home.php, …
Thanks for comment.
Maybe I didn't specify clearly in my last question, actually I'm trying the CMS page which manage inside the CMS Admin, and at the Pages section, there is a "Upload" button on toolbar which lead to a page. In there, admin and "S…
Thanks, I figure it now, that is the methods i put in my About class (it is upper case), which "contact" is loading a view file and "team" is loading CMS page (for cms page, I need to specify "rendor_mode" to let it load from cms, although fuel_mode…
Maybe I simplify my questions:
1. MVC controller and opt-in controller can't be the same (e.g. about/contact is mvc controller, about/team is from cms opt-in, now once I have a about controller class then the opt-in controller always return 404) ?
…
Thanks for your reply.
In "about/contact" example, I add a method name "contact" in controller class, now it return an empty page (not 404, I think it is because I didn't put any code inside the method). So, is this mean the all opt-in with same co…
one more question: when I tried to use fuel_page in controller as below, it always return :
Unable to load the requested class: Fuel_page, any clue for a newbie ? thanks a lot !
$vars = array('page_title' => 'Team: My Website');
$this->load-…