I made the wrong assumption earlier that you were using the 0.91 branch so the link:
http://example.com/index.php/about
Would not work anyways. However this link should for the 0.9 branch:
http://www.aseasyas.co.za/index.php/example
Which is a sta…
Also, it may be helpful to know what the actual uri_protocol is being used by debugging the code in the fuel/codeigniter/core/URI.php _fetch_uri_string method and with the uri_protocol set to auto in the config.
Hmm... You may want to try throwing up a basic CI 2 install with a simple controller and page (e.g. http://example.com/about) and seeing if you can get that to work with .htaccess and mod_rewrite (the .htaccess that comes with FUEL should be similar…
Also, is the mod_rewrite module working with your .htaccess (it is possible to have .htaccess enabled but not have the mod_rewrite module installed). Have you used this server before with other CI projects using mod_rewrite?
Do you have a URL you can send me (you can email it to me if you don't want to post it here)?
Also, are you able to get to any of these pages:
http://example.com/index.php/fuel
http://example.com/index.php/about
http://example.com/index.php?/about
It may be an .htaccess issue. Are you sure mod_rewrite is allowed on the host? Also, did you set "admin_enabled" to TRUE in the fuel/application/config/MY_fuel.php file?
That sounds like it may be a difference in the URI_PROTOCOL used by CodeIgniter. Try the following:
1. Got to the fuel/application/config/config.php file and change
$config['index_page'] = 'index.php?'; // Note the question mark at the end
2. In t…
You are welcome and thanks for the kind words. To merge the latest CI 2.0 release into the 0.91 branch, you can simply replace the entire fuel/codeigniter folder with the contents of the system folder from CI 2.0. I'm not aware of any changes to the…
Hah... just saw the news (almost was going to ask if anyone new when it was going to be released). Most likely Reactor if it proves stable and responsive to fixes and features.
Nice work. I would maybe put checks to make sure their isn't an error for the file uploaded, but otherwise, that should do it. The on_after_post hook can be used if you need to process the image in any way on the server first.
As an FYI, the file f…
Are you referring to opening up a single window and being able to select multiple files at once to upload? If so, that, unfortunately, is not supported out of the box at the moment and would require some extra coding on your part. It does look like …
Extracting all the text into language files is currently being worked on locally in a 0.92 branch. It's pretty far along but probably will be another week+ before it's ready. As far as the name of the module, the parameter you want it "module_name".…
I'll check that out... I ran into an issue the other day importing the views when that was turned on as well (and have since posted a fix for that). I have a feeling it may be in issue in other places that are using javascript to submit form paramet…
Thanks for sharing and we appreciate the feedback.
Let us know if you want us to see if there is a better way to do your navigation (sometimes it may warrant 2 files though like you have though)
Thanks for the input and we'll certainly consider it. We've run into that issue as well and our solution was to add a border-right to the li tags and add the appropriate padding. This left us without the need for any additional HTML. The only issue …
Ok... that took longer then I’d hoped... the fix appears to be to download the latest version of Dwoo from:
https://github.com/Seldaek/Dwoo
And replace it in your libraries folder.
The next version 0.93 will include the latest version of both CI a…
Did you create the page in the FUEL admin or did you create a static view file in the fuel/application/views/ folder?
If you created it view the admin, you should be able to browse to that page's URI location that was set in the admin (e.g. "about…
There currently isn't an easy way to set the cache TTL per page when using FUEL's caching. The FUEL caching kicks in only on pages generated by the admin (if their cache setting for that page is checked to yes), or if you are using the opt-in contro…
Not sure at the moment. Any chance you could email me the view files to test out locally and maybe even that compiled Dwoo template file? My email address is under my profile page.
Thanks for the interest and we are glad you find it useful.
With regards to your issue, I actually think that may be a CI 2.0 bug. I just updated my local repo yesterday to the latest CI 2.0 (for the next version, 0.92) and am not seeing that proble…
Blocks should work with the syntax you provided in pages created in the admin. Did you originally have the page as a static view file and then import it and if so, did it work OK as the static file? Also, is the block a static view file or is it als…
A couple questions for you to help debug:
1. Which branch did you download from (master or 0.91)
2. Are you using fuel_block() to merge in the block in your layout or view files?
3. What are you currently seeing in your frontpage (assuming frontpa…