Not sure if this feature was requested.. but was this ever implemented? Can't seem to find anything from fuelcms docs. Obviously, enum wouldn't be the right type for 3+ options.. perhaps a dropdown?
2. I was on 1.0 then I upgraded to the most recent version. That might be causing it... it's not a big deal. I'll do a fresh install for my next release and I'm sure it will fix it.
Currently, I have the following implementation:
$CI =& get_instance(); $CI->load->helper('general'); $fields['remain_anonymous'] = array('displayonly' => TRUE, 'pre_process' => 'readable_boolean');
Eureka! Figured it out...
Instead of this:
$route['fuel'] = 'fuel';
$route['(:any)'] = 'profile';
$route['(:any)/(:any)'] = 'profile';
Use this:
$route['^(?!fuel)\S*'] = 'profile';
I hope this helps someone out in the future. Thanks for assistin…
If it helps, I know what's causing the problem. Adding a route for fuel will cause the issue. So, any of the following will cause problems:
$route['fuel'] = 'fuel';
$route['fuel|fuel:any'] = '$1';
$route['fuel|fuel/(:any)'] = '$1';
anyway.. i've t…
Tried everything again just now... moved everything around in different places. Not sure where to go from here... The only solution now is to not allow for dynamic urls via the following route......
$route['(:any)'] = 'profile';
$route['(:any)/(:an…
admin,
you can see this problem happening for yourself by creating a simple module and adding routes that allows for dynamic URLs like what's used for Twitter (ie: twitter.com/username).
Here's an example route file that would cause the issue:
$r…
Here's a screenshot of what is eventually loaded:
http://snag.gy/XJSij.jpg
Here's a screenshot of the network activity within Chrome's browser console:
http://snag.gy/4mwIp.jpg
Which route are you referring to? I've tried everything--placing the routes in different places, adding :any, etc. Nothing seems to work. I'll keep playing around with it..
I've upgraded to the latest version of FuelCMS. It no longer causes issues for me on the login page. However, when I try to access a simple module, it will load everything up until it loads the data associated with the module (once it tries to load …
After looking through my Network activity.. looks like things are getting hung up once Fuel reaches this point:
http://website.com/fuel/envelope_order_activities/items/?search_term=&limit=50&view_type=list&offset=0&order=asc&col…
I've put this off as the last thing before launching my site--I've tried everything and I can't seem to figure it out.. any other ideas?
What do you suggest I change the MY_fuel.php $config['fuel_path'] value to? It's currently set to the default '…
For clarification: I have a user registration process whereby if you create a username like johndoe, you will be able to access your profile at mysite.com/johndoe. Modifying the routes file like what I have in my original post should create the re-r…
Found out that the auto_validate_fields is causing the problem. Instead of removing email from the list, what's the best way to turn it off at the model level?
i just tried installing this on a fresh install of fuelcms 1.0... it would be good to mention that you need to add 'google_analytics' within $config['modules_allowed']. also, you will need to add $config['dashboards'] = array('fuel','google_analytic…
..I'd also like to add that simply replacing old files doesn't always work out so well! I was using 1.0 version from 3/4 months ago and replaced it with the current one and broke something along the way..