R_J
AdminR_J Admin
-
Re: Version 2.0.18.8 Missing Messages
"Something has gone wrong" will be replaced with a more helpful error message if you add $Configuration['Garden']['Debug'] = true; to your /conf/config.php (View Post)1 -
Re: MySQL error - Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMEST
@jray: Upgrading MySQL is the best way. Can't you ask your hoster to do the upgrade? There is a workaround, but that's a) ugly and b) possibly breaking functionality. It is ugly because you have to h… (View Post)1 -
Re: Unknown storage engine 'innodb'
Add the following lines to your configuration: $Configuration['Database']['ForceStorageEngine'] = 'myisam';$Configuration['Database']['DefaultStorageEngine'] = 'myisam'; If there is already a file /c… (View Post)1 -
Re: Location of layout Images - baseline theme
I would choose "/themes/whatever/design/images", but you are really free. But what I what not do, is adding something to the default theme. Either creating a custom theme or using the plugi… (View Post)2 -
Re: possible to make a responsive theme work with mobile without editing config.php ?
There' always a way: public function settingsController_render_before($sender) { if (!$sender->ResolvedPath == 'dashboard/settings/mobilethemes') { return; } // Get all themes. $themes = Gdn::them… (View Post)1