I actually debated that quite a bit so I'm glad to hear feedback. I was originally going to have the 0.92 be just like the 0.91 branch and by default be the demo site, but then there was the problem of needing to know what files were OK to delete fo…
That's a good idea to do a blog post on the subject. An update module would be nice as well, but as you can imagine, can be pretty tricky to implement. GIT is a cheap, although sometimes challenging, way for us to do it until we are able to bridge t…
That seems like it may be more of a uri_protocol issue. What is it currently set to? Check out this post about half way down where it starts with "miles_kailburn" to see if it helps:
http://www.getfuelcms.com/forums/discussion/comment/75/#Comment_75
OK... I believe I found the issue. It had to do with a comment in the fuel/application/config/MY_fuel_modules.php file that had a space before the closing "/" which was causing an unterminated string error that was being supressed by @ (in case anyo…
I really appreciate the research into the issue. I believe I've replicated the issue on a MAMP install due to the information you provided. I'm looking into a fix and will post it as soon as I can.
For your CI 2 test page at:
http://www.plumeriawebdesign.com/aes/
Can you create a test controller and method on it so I can test additional URI segments work with .htaccess (e.g. http://www.plumeriawebdesign.com/aes/test). This will help me unders…
OK... a few more questions:
What is your $config['uri_protocol'] value set to in the fuel/application/config/config.php?
What is your $config['index_page'] value set to in the fuel/application/config/config.php?
If you feel like getting your ha…
I'm glad you were able to get it to work. However, I'd like to make it easier for you. The fuel_nav() function "should" do that querying for you to determine the parent id based on the uri_segment. If you go to the fuel/modules/fuel/helpers/fuel_hel…
Sounds like it should be working under normal circumstances. A few questions for ya:
1. Are you able to browse to the page at mydomain.com/fuelcms/index.php?/fuel (with the index.php?... or with the index.php sans "?")
2. Are you able to get a norm…
And 8 is the id of the parent location you want to start the menu at for the B page (e.g. B id = 8)? Or is 8 the id of the A menu item? If A is the id of the A menu item, then that is where the problem is. Instead of hard coding in the number, you c…
Here's the same bug reported:
https://bitbucket.org/ellislab/codeigniter/issue/332/newlines-in-textareas-are-duplicated
The person reporting it seemed to just set "_standardize_newlines" = FALSE in that class.
Regardless, it sounds like I need to …
OK... I think I've found the issue. It seems to be deep within the CI's Input class on line 83. That changed between the CI 2.0 beta to the Official release from:
$str = str_replace(array("\r\n", "\r"), "\n", $str);
TO
$str = str_replace(array("\r\n…
The 0.9.2 did upgrade the MarkItUp! version and I'm wondering if that is causing the issue. The file updated is located at fuel/modules/fuel/assets/js/jquery/plugins/jquery.markitup.pack.js
I'll check it out on my end too.
1. The index.html files were actually put in place so that git would recognize those folders since they had no contents (git will ignore empty folders... but I've seen other ways around this in git). The no folder access should probably be done at t…
Is this with a fresh database or an existing? If an existing, be sure to run the fuel/install/fuel_0.9.2_upgrade.sql file.
Also, what platform are you running it on (MAMP, WAMP etc).
What's the name of the field? If it is a name that is in the auto_date_add model property, then it will automatically be generated for you. The default column names that will do this are 'date_added' and 'entry_date'.
http://www.getfuelcms.com/user_…
Hmm. Those two dropdowns should be unrelated. The versions dropdown doesn't show up if there are know archived versions, and perhaps maybe that's what you are seeing?
The fuel/modules/fuel/models/base_module_model.php file has a get_others() method that your models inherit which you can overwrite in your own model. That's what's used to generate that dropdown list.