Avatar

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

admin

About

Username
admin
Joined
Visits
8,800
Last Active
Roles
Administrator

Comments

  • What problems are you seeing? Have you done steps 4-5 found here? http://www.getfuelcms.com/user_guide/general/installing
  • Thanks for the report. That's been fixed in the repo. Specifically, the "theme_module" setting needed to be "blog" instead of empty.
  • 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.
  • You could do the check in the model's form_fields method to make sure the proper person is modifying the model information.
  • 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…
  • Thanks for the contribution. Eventually I'd like to get an area on the site more dedicated to community modules.
  • No worries. Glad you figured it out.
    in Custom 404 Comment by admin April 2011
  • Thanks for bringing that to my attention. I've posted a fix.
  • Thanks!... and glad it worked for you.
  • 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?
    in Cronjobs Comment by admin April 2011
  • 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…
    in Cronjobs Comment by admin April 2011
  • Yes. There are a few that we would like to do eventually and that is one of them unless someone else gets to it first
  • Setting the user and password in the cronjob config didn't change the ownership for you?
    in Cronjobs Comment by admin April 2011
  • Did the patch you submitted regarding the user fix this issue for you?
    in Cronjobs Comment by admin April 2011
  • 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…
    in Cronjobs Comment by admin April 2011
  • 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 realized the documentation on the server needed to be updated. Have you read this yet? http://www.getfuelcms.com/user_guide/modules/cronjobs
    in Cronjobs Comment by admin April 2011
  • Are you able to get a normal CodeIgniter 2 instance up and running OK on this server and able to browse to sub pages?
  • Sorry, the only format is at either getfuelcms.com/user_guide or can also be found in the install (if you login to the admin or your install)
    in pdf guide Comment by admin April 2011
  • I believe so.
  • Ahh... OK. That should be fixed now.
  • 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.
  • Currently, the above hook is only available on models.
  • 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 …
  • That should probably work to.
  • 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…