No plugins visible in Administration screen
|
651 posts
|
Hi.. I'm loving Frog so far... one problem though: none of the plugins are listed in the Administration section of Frog. I'd like to be able to turn on/off certain plugins. Any idea what is going on? There are no errors in my logfile. Everything seems to be working without any problems, it is just the plugins that won't show in the Administration section. |
|
651 posts
|
Damn... forgot to mention I'm using the latest Subversion version of Frog. |
|
1493 posts
|
Very odd! |
|
651 posts
|
My Frog is running on:
The plugins are right where they should be and everthing seems to be working without any problem... EXCEPT for the Administration page. Truly strang... it seems to get cut off just before it starts to list the actual plugins. |
|
651 posts
|
Hmmm... damn... I just noticed... I'm also not seeing the Plugins and Settings tabs on the Administration screen. :-( |
|
541 posts
|
maybe you have some data missing in your database like a setting table or someting like that ... or maybe just the "plugins" setting try to insert this in your setting table: insert into setting (name, value) values ('plugins', 'a:5:{s:7:"textile";i:1;s:8:"markdown";i:1;s:7:"archive";i:1;s:14:"page_not_found";i:1;s:12:"file_manager";i:1;}') |
|
651 posts
|
Unfortunately... these settings are present... I've made a screenshot available at <http://www.vanderkleijn.net/public/images/frog_admin_problem.png> I've got the following tables:
frog_setting contains the following entries - admin_title Administration area - language en - theme default - enable_comment 1 - auto_approve_comment 1 - default_status_id 1 - default_filter_id 1 - plugins a:5:{s:7:"textile";i:1;s:8:"markdown";i:1;s:7:"archive";i:1;s:14:"page_not_found";i:1;s:12:"file_manager";i:1;} |
|
541 posts
|
set debug to true in the config.php file, then check the html source of this page (administration tab) ... it have to display a error somewhere, because the page is not rendered completly ( no admin menu at the top right ) if there is nothing check in your php.ini file to make sure you have display_error to "on" |
|
651 posts
|
Ha! Got it... turning on the display_error worked. I'm not using PDO because my host doesn't support it.. Turns out that the sqlite3 plugin was somehow trying to do something with PDO... I removed the sqlite3 plugin directory from the system and now the entire admin section work! Thanks! :-) |
|
541 posts
|
This is interesting !! I will check that. Thank you for the information. |