You need to use the Fuel_page class like so:
$page_init = array('location' => 'contact'); $this->load->module_library(FUEL_FOLDER, 'fuel_page', $page_init); $this->fuel_page->add_variables($vars); $this->fuel_page->render();
Wh…
Possibly. I think you are on the right track with the multi select for categorization similar to the blog and categories. Passing the name of the category (as a slug or id), could generate a list of all the businesses under that category. No slug pa…
I'm assuming you would put in your own code in the _remap method above correct?
The only thing that I can think of that may not work correctly is navigating to the homepage because there is some code in Fuel_page and Fuel_pagevars that specificall…
You may need to extend the fuel/modules/fuel/controllers/page_router.php file and then in your routes config file, change the 404_override page to your extended controller.
If you wrap you content in a "code" tag, it should properly escape it.
With regards to your question, there are a couple ways to do it.
1. You could use a model hook to append it to the path (e.g. on_before_save()). Then in your record specific mod…
No one has raised up any other issue at this point but I wouldn't discount it just because of that. Do you have a different server environment that you can try to see if it is the server or if it may be an issue with the code?
According to what I've read, you can execute shell commands as different users by first echoing out the password. It's not as secure but can be done according to these links:
http://php.net/manual/en/function.exec.php
http://php.net/manual/en/functi…
Sorry for the delay in getting back to you. When you say manual work do you mean like changing paths? Basically, it does the same thing you do for setting up crontabs by calling crontab -e etc. There is a Cronjob class (fuel/modules/cronjobs/library…
I see your point and thanks for the willingness to contribute. I've hopefully saved you the trouble and pushed a fix for it (it was to the site_variables_model::form_fields method).
Try changing your $page_init to this:
$page_init = array('location' => 'sales_rep', 'views_path' => 'sales_rep');
The 'views_path' value will point fuel_page to your 'sales_rep' modules view folder. Also, the location value is used to grab the…
I'd perhaps first try to get a normal CodeIgniter Installation setup at the subdomain. That would help determine if it is FUEL specific or related to CodeIgniter.
Does that error go away if you change line 19 in the controller to?
$this->load->module_language(CAMPAIGN_MONITOR_FOLDER, 'campaign_monitor');
The README has the installation instructions. I plan on doing a more official blog post when I have …
Good point. I removed them from the initial installation and have been debating on where to put them. I've decided to create a new Modules Pack for folks to download which includes those modules as well. The GA, WP, and phpMyAdmin, are links that su…