Are you wanting the field to act similar to the datetime field in which it has multiple fields that get concatenated (date, hour, min, am/pm) into a single value? If that's the case, I would look into using something like a "custom" field:
$field…
That error message seems specific to your hosting environment so it's tough to say. Are you able to access the site at http://{myhost.com}/index.php/fuel ?
There looks to be an issue with newer versions of PHP when saving that throws an error in which I've pushed a fix for.
https://github.com/daylightstudio/FUEL-CMS-Forms-Module/commit/3e9fa8a9e6dfd8647972dfe7821dee2af13752a9
However, I don't think…
There could be a few different things in play here. I would test first to see if the error displays if you don't echo it. Also, I'd change the field types to see if one of the field types is causing the issue. Lastly, do you have an issue if simply …
Is this page setup in the CMS, a view file, or is it run through a controller?
If it's a CMS page or a view file, you may need to adjust the MY_config$config['max_page_params'] = 0; to something like:
$config['max_page_params'] = array('mypage…
The error may be due to running out of memory. Because the data records have a reference to the CI object, If you do a print_r on the result set, it will cause an infinite loop. If you do something like the following, does it print out data:
fore…
Ha... it's not an attempt at branding honest. It is inheriting the background color from the html tag in the fuel/assets/main.css though. That main.css file is meant to be overwritten with your own.
Is it a foreign key relationship? If so, you can specify the $foriegn_keys property on the model (array syntax) and it will trigger a dropdown with the modal to add/edit.
If this is happening in one of your custom modules, it may have to do with the sanitization of the fields and the xss_clean() function that is run by default. Try adding the following to your MY_fuel_modules.php as a parameter to your specific modul…
There currently isn't a built in way to do that and you'd likely need to extend the existing Module::items() controller where it uses the following to add actions to the data table.
$this->data_table->add_action(...)
Then you'd need to …
The asset_folder query string parameter in the one that isn't working is looking for a folder of assets/images/news which I'm guessing doesn't exist or isn't writable and is causing that 404 (you can look in the fuel/modules/fuel/controllers/Assets.…
This sounds like a change that was introduced with the upgrade from CI 2 to CI 3 in 1.4 and if you have a controller of myctl, any page with that URI segment will use that controller. If I remember correctly the reason, the CI hooks to make that ha…
You first would want to normalize the date into something MySQL will be able to compare against so you'd need to convert your d/m/Y to a Y-m-d format.
Then try changing your line to something like the following:
{$videos = fuel_model(videos, arr…