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

  • Good to hear. Look forward to the updates.
  • You can email me the files directly. I'm currently working on getting all the text into lang files (right now, only part of it is). I have what you previously sent me for Russian which I'm currently using and will need to be added to.
  • The default 404 page that comes with FUEL is used as a starting point and is what should be modified. We often will need to go in there and make changes. It was a way for us to load in the layout without having to copy and past the raw generated HTM…
  • What if you change the upload_path field property to 'media' instead of 'videos' (and make sure media is writable)?
  • This is a problem we face as we are still getting to know git ourselves (was actually researching better ways to do it yesterday). Try the following: 1. Browse to a directory you want to make your changes (example): cd /var/www/path/to/my/dir/ 2. …
  • The sidebar menu is created by the $config['nav'] parameter in the fuel/modules/fuel/config/fuel.php file. You can overwrite that configuration parameter in your fuel/application/config/MY_fuel.php file. Also, modules like the blog add their menu it…
  • The CSS and images are located in the fuel/modules/fuel/assets directory and in particular, you would probably want to edit the fuel.css file. Alternatively, FUEL has an xtra_css configuration parameter that you can add to your fuel/application/conf…
  • Also, did you try configuring the file types that are accepted for the folder you are uploading to? There is a $config['editable_asset_filetypes'] you can set in your fuel/application/config/MY_fuel.php http://www.getfuelcms.com/user_guide/general/…
  • Hey Dustin, I'm looking into this. Questions for you though: 1. When you say 'no go' do you mean that you are getting an error on upload, or that your browser won't let you select the mp4 file to upload? 2. What browser are you using?
  • Good idea. We could tie it to the users profile. Please send when you are ready.
  • We've put it on the list to consider but it probably won't be something we tackle in the near future unfortunately. There are some other features that will probably take precedence like multi-language support. Part of the issue is figuring out what…
  • There is a second parameter you can pass in the constructor which is the module folder name (see for example any of the blog models). This tells it what config to load in that has the table names. function __construct() { parent::__construct('do…
  • If you are trying to do this within a module's create/edit form, you will need to use javascript to ajax in the options of the dependent dropdown. You can add javascript files via the "js" module parameter: http://www.getfuelcms.com/user_guide/modul…
  • I ran into the problem again last night. Were you by any chance doing anything with the Tester module? I'm trying to find out if there is a pattern to it that may be causing MySQL to act that way.
  • Can you send me the module and SQL so I can examine it locally?
  • Are these pages under a certain URI segment like 'clients'? If so, you could use a normal controller to do that. Or you could use the opt-in controller method and perhaps put the checking logic in the template itself.
  • Also, I've ran into that issue a couple times and restarting MySQL fixed the problem.
  • Is the table name suppose to be aks_medium or entity_medium?
  • Wow!... thanks a lot. As an FYI to anyone else reading, another person has provided some of the Russian translations (so now I have German and Russian). I need to dive into integrating this into the distribution more formally and look for holes tha…
  • I think I saw your issue and posted some fixes onto GitHub. The problem seemed to appear in Firefox but not in Safari and it had to do with the javascript being rendered by the safe_mailto() function used in the _blocks/header.php from the master ve…
  • Couple quick questions to help diagnose the problem: 1. Which GitHub branch are you using? master or 0.91? 2. For the preview, are you referring to the MarkItUp preview (checkbox icon) 3. Blog page titles can be automatically generated using the pa…
  • Check that these folders are writable: fuel/codeigniter/cache/ fuel/codeigniter/cache/dwoo/ fuel/codeigniter/cache/dwoo/compiled/ Also, which GitHub branch are you using, master or 0.91?
  • Some people have been using the GitHub issue tracking to submit problems, but I haven't put out a formal request for people to submit bugs through only that manner. https://github.com/daylightstudio/FUEL-CMS/issues/closed
  • You can pass group_id to the fuel_nav() function which can be either the name or the id: <?=fuel_nav(array('group_id' => 2))?> http://www.getfuelcms.com/user_guide/helpers/fuel_helper Hope that helps
  • Can you email me the template code and recreation steps that is generating this? Email should be in my forum profile. Also, is this master branch off of GitHub?
  • Excellent! Thanks for sticking with it and looking forward to the post.
  • With regards to your question about a second front controller, FUEL only uses the standard index.php as the front controller. The fuel/index.php is just a header redirect so that if you navigation to /fuel/ it will redirect you to the dashboard. Th…
  • I'm not familiar with NGINX, however, you could try putting in the $config['index_page'] = 'index.php'; in the fuel/application/config/config.php file. This will add index.php to your URIs but should at least work.
  • We do have plans to create a modules area for people to share modules. Right now, I'd suggest using the Share area of the Forum until we are able to get that up and running.
  • Right now, it's all or nothing being static or dynamic. We often will create the menu structure statically and then import it in after we have it all setup like we want it.