Mat Whitney
Mat Whitney
#1045 includes a great deal of discussion regarding the problems with trying to get everything working under PostgreSQL. You may be able to find the solutions to many issues there,...
The answer to why the controller re-specifies the rules is most likely that the model was updated to include the rules but one or more references to the model was...
Actually, now that I look back at the original issue, changing the maximum length of the name in the form will just make the problem worse. The reported issue is...
Any settings you create in the extended_settings_fields config value should be available using `$this->settings_lib->item('{name}')` if the settings library has been loaded (where `{name}` is the value of the name key).
Can you post the actual error message you receive? I really wouldn't expect /admin/developer to do anything more than display a 404 message unless you set a home route for...
Is the file `/application/modules/datamart/views/_top_sub_nav.php` or `/public/themes/{admin_theme}/admin/datamart/_top_sub_nav.php`? As far as I can tell, it should work if it's in the `/application/modules/datamart/views` directory, but the themes directory will cause the error you're...
No, it should be working where it is.
I guess the first thing to do is to remove the blank entry for developer from the config file, so your menus array should just be: ``` php 'menus' =>...
It shouldn't really matter, but did you build controllers for Developer and Settings (typically `/application/modules/admin/controllers/Developer.php` and `/application/modules/admin/controllers/Settings.php`)? If not, you should be getting a 404 error when you visit /admin/developer...
I know that sometimes it's easy to start changing things all over the place to try to fix a problem, but it's really difficult to troubleshoot a problem that way,...