Ok so here is a little more info, pages like somesite.com/culinary inline editing works. However when I have an address like somesite.com/culinary/recipes it looks like textareas with ckeditor don't work in firefox and safari. Plain text works fine …
I would probably say both but at a minimum being being able to have the list view ordered that way. What happens is they order the navigation using the rearrange button and get it where they can manage it. After that when they leave the navigation a…
Sounds great ... thanks for the heads up. I have a client who is using the ckeditor and reported the following "To get a hyperlink to stick when using the page editor, you have to add the hyperlink and then view source. If you do not view source be…
Yep that does the trick, thank you! Definitely helps when developing an application that is tied in with a regular web site. Allows the client to admin the pages of the custom areas as well.
Can't track it down but it would seem that if I set a location and render_mode to auto on a Fuel_page object on initialization that it would ignore the uri and use the location to load from the database. Is that how its supposed to work or do I misu…
I'm not using a view file I am trying to use db content mapped to the location members/change_password. If I just use a location of change_password it pulls the db information just fine but when I try to us members/change password as the location it…
Ran into an item and wondering if its a bug or how its supposed to work. I was wanting to setup cms pages that map to the address of module's controllers. Like a page with a location of members and a page with a location of members/change_password. …
Yes that explanation did help me understand, thank you. I think what confused me is I couldn't find a mapping to the blog_module controller in the routes file. Seems like the blog_module is only being used for the dashboard? I think the connections …
Ok here is what I do know I have created an advanced module in a directory called members. I created a controller called members.php (code below) which I now see as an issue because when I put in someaddress.com/members in the browser that should be…
I have the csv files uploading and populating the database and everything is working great. Now I am going to create a front end interaction where a user can login and access the data. My question is concerning setting up the controller and views fo…
Got it thanks, I tried to create this in the My_fuel.php file but didn't seem to take so I just made the adjustment in the fuel.php file and that worked. Was that what you were recommending?
A little way into this and things are going well ... one quick question I have come across which is probably easy and I am just not seeing it. On advanced modules, if I am grouping it like the blog or tools how do you get that group to show up in th…
Ok I think I understand what the issue is here but am not sure how best to fix it. This section of code is at the end of fuel_helper.php and $p['parent'] is valid up to this point but not handled in the normalize scenario.
if ($p['return_normalized…
I am wondering if I am going about this wrong ... I am trying to create a directory of businesses for a portion of a site. Each business would have a page (http://www.address.com/business_name) which I can do easy enough with the page admin. Where I…
Ok I think that makes sense, so I would put the controller in the application's controller directory with code that looks like this?
require_once(MODULES_PATH.'/fuel/controllers/page_router.php'); class Some_controller extends Page_router { func…
Alright so I just needed a down and dirty simple search solution and am only worried about the database on this site, no content in view files so I created a model file and controller. Here is what I have ... hopefully this can provide some help or …