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

  • Hmm... couple things to check first: 1. Does your fuel/modules/fuel/config/fuel.php file have a line 'jquery/plugins/jquery.cookie', Around line 151? 2. If you view source on the page, do you see that plugin being included in the header of the page…
  • For multiple classes try "multifile select_assets" (order matters). The "select_assets" class can pass a second class argument as the folder you want to select from (e.g. "select_assets images") so "select_assets multifile" would actually be that ar…
  • The issue being that the list view is stuck with a spinning graphic? If so, can you use Firebug to see what kind of AJAX response you are seeing after going to that page and if there are any errors. I'm currently not able to replicate the issue so a…
  • Try creating a branch and pulling like so from your current repo: git checkout -b demo origin/demo http://help.github.com/remotes/
  • Actually, there was a bug in the last commit that was preventing that from showing up. The latest version should have it fixed now.
  • Are you able to use Firebug to check the AJAX requests those graphics pertain to. On a successful AJAX request, those spinner graphics should go away.
  • I think that may depend on your server/user setup for 766 permissions working.
  • What is the file size of the PDF document? If it is over 1000KB then it won't upload unless you've changed the FUEL config. You can change the max upload file size for FUEL in MY_config using the 'assets_upload_max_size' parameter. Or sometimes your…
  • A few questions: 1. When you say no luck, do you mean that that file is not being saved to the folder or is the image not being resized correctly? 2. Does $data['full_path'] have the correct path to to where you want the image to upload and is that …
  • If the field name ends with "image" or "img" then FUEL will automatically create both a file upload and image select field for that field. You can overwrite that in your form_fields method though. The key to getting the asset select window is to add…
  • With regards to your questions: 1) FUEL uses the HMVC Modular Extensions library and to my knowledge, there isn't an easy way at the moment to get subdomains to map to modules.(https://bitbucket.org/wiredesignz/codeigniter-modular-extensions-hmvc/wi…
  • Are you able to get a normal CI installation running with .htaccess and browsing to a controller (e.g. /test)? Although I don't think this is your issue since you have it working locally, what happens if you create a "views/_variables/test.php" fil…
  • The nav_key is a unique value for your navigation items in a whole group. You can match against it in the "Selected" field. The "Selected" field you can add regular expression to have navigation items be active. For example, you could place in the "…
  • Try using /index.php/test/some_value and see if that works. If it does, and you are sure that .htaccess is enabled with URL rewriting, make sure the RewriteBase path is set correctly on the server based on the web root folder (if any) that your fuel…
  • I'm able to replicate the problem but only on a WAMP server. It works OK on XAMPP, MAMP and my Mac OSX native apache server. Any chance you want to try on a XAMPP server to see if it works?
  • Are you using the latest version found here? https://github.com/daylightstudio/FUEL-CMS If so, can you give me reproduction steps? I'm not able to replicate it locally.
  • I'll push a fix for that SCRIPT_FILENAME path. With regards to the styles sheet, we don't have any additional CSS or themes to download. We normally customize that for client's design and use the common.cs and reset.css as starting points.
  • I've pushed a change to make nav_keys unique regardless of parent. Labels aren't used because it's possible to have the same label for different menu items.
  • The fuel/modules/fuel/controllers/navigation.php file should have at the top the following: require_once('module.php'); class Navigation extends Module { In your case the require_once will probably need a different path to point to the module.php …
    in Filters Comment by admin May 2011
  • Actually... "nav_key" should probably be a unique value but currently is only unique if it has the same parent. Let me look into that.
  • What happens if on line 12 you set '/' to '\' (back slash to a forward), in the explode call?
  • You'll want to extend the Module controller.
    in Filters Comment by admin May 2011
  • The navigation module may be a good one to look at. The module has the 'filter' parameter set on at fuel/modules/fuel/config/fuel_modules.php which takes an array of parameters similar to what you would use for form_builder. The options for the sele…
    in Filters Comment by admin May 2011
  • The values being returned to the form_fields method are only those pertaining to that model (table), so in your case, you'll probably need to use $_POST. There is also a model property normalized_save_data (e.g. $this->normalized_save_data) but t…
  • You can alter your questions_model form_fields method to include the answers in the edit form, and then use an on_after_save hook too process the answers back to the answers model. To get the answers of your question, you can use the Questions_mod…
  • I believe I've ran into this before and it had something to do with the value of $_SERVER['SCRIPT_FILENAME'] being different across platforms. What platform are you running it on (WAMP, XAMPP... etc) and what is the value of $_SERVER['SCRIPT_FILENAM…
  • I've just posted a fix for this. https://github.com/daylightstudio/FUEL-CMS/commit/e01b9df5badae012f9190ff9fc91c29383a58fdf
  • The .htaccess should stay right next to the index.php file. The RewriteBase in the .htaccess may need to be changed if your FUEL installation is in a subfolder on your webserver (e.g. http://localhost/my_fuel_site/ would have a RewriteBase of /my_fu…
    in .htaccess Comment by admin May 2011
  • Unfortunately not... good news is that I'm able to replicate and will post a fix today.