Changeset 802754
- Timestamp:
- 11/11/2013 09:53:16 PM (12 years ago)
- Location:
- log-viewer
- Files:
-
- 14 added
- 2 deleted
- 3 edited
-
branches/rewrite/admin (added)
-
branches/rewrite/admin/assets (added)
-
branches/rewrite/admin/assets/css (added)
-
branches/rewrite/admin/assets/css/admin.css (added)
-
branches/rewrite/admin/assets/js (added)
-
branches/rewrite/admin/assets/js/admin.js (added)
-
branches/rewrite/admin/class-log-viewer-admin.php (added)
-
branches/rewrite/admin/includes (added)
-
branches/rewrite/admin/includes/class-files-view-page.php (added)
-
branches/rewrite/admin/views (added)
-
branches/rewrite/admin/views/admin.php (added)
-
branches/rewrite/admin/views/files-view.php (added)
-
branches/rewrite/class.plugin.php (deleted)
-
branches/rewrite/helper.inc (deleted)
-
branches/rewrite/log-viewer.php (added)
-
branches/rewrite/readme.txt (modified) (6 diffs)
-
branches/rewrite/uninstall.php (added)
-
readme.txt (modified) (5 diffs)
-
trunk/readme.txt (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
log-viewer/branches/rewrite/readme.txt
r801627 r802754 6 6 Requires at least: 3.4 7 7 Stable Tag: 13.11.09 8 Latest Version: 13.11. 09-17288 Latest Version: 13.11.11-2248 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 19 19 20 20 To activate Wordpress logging to file you have to set `define( 'WP_DEBUG_LOG', true );` in your wp-config.php file. 21 In Multisite installations you have to be Super Admin for using this plugin. 22 Additionally inn Singlesite installations you have to have the 'edit_plugins' capability which is by default only granted to admins. 21 23 22 24 If you're experiencing problems please report through support forum or check FAQ section. If you have suggestions feel free to submit your view. … … 30 32 **ToDo:** 31 33 32 * handling files in MU installations34 * Adding Dashboard functionality ( and/or File View in Dashboard menu (WP_NETWORK_ADMIN) ) 33 35 * catching some not set requirements 34 36 * adding in-code documentation … … 36 38 37 39 == Changelog == 40 41 = 13.11.11 = 42 * rewrite based on the great [WordPress-Plugin-Boilerplate](https://github.com/tommcfarlin/WordPress-Plugin-Boilerplate) of Tom McFarlin 43 * optimizations for Multisite installations 44 * securing Singlesite installations 38 45 39 46 = 13.11.09 = … … 81 88 == Frequently Asked Questions == 82 89 90 = I am admin! Why can't i see the Tools > Log Viewer menu entry? = 91 If your on a Multisite installation you have to be a Super Admin. 92 If your on a Singlesite installation you additionally have to have the 'edit_plugins' role. 93 94 = But i am a Super Admin with super powers and still can't see the Tools > Log Viewer menu entry! = 95 Pow! Slam! Donk! ... as stated you have to have 'edit_plugins' role. There are Wordpress constants like 'DISALLOW_FILE_EDIT' which deactivates this even for the greatest of the admins. 96 Have a look at [http://codex.wordpress.org/Roles_and_Capabilities](http://codex.wordpress.org/Roles_and_Capabilities) or do a websearch for 'wordpress.org DISALLOW_FILE_EDIT' the have a talk to your site maintainer. 97 83 98 = How to enable debug.log = 84 99 Simply add `define( 'WP_DEBUG_LOG', true );` in your wp-config.php file. … … 91 106 92 107 = In Files View i only get the error message "Could not load file." or "No files found." = 93 It looks like there isn't a *.log file in WP_CONTENT_DIR. W ich could mean there are no errors. Yay!108 It looks like there isn't a *.log file in WP_CONTENT_DIR. Which could mean there are no errors. Yay! 94 109 If there are files, it could be that they are not readable ( check your permissions ) or it's a bug ... Booo! 95 110 -
log-viewer/readme.txt
r801627 r802754 19 19 20 20 To activate Wordpress logging to file you have to set `define( 'WP_DEBUG_LOG', true );` in your wp-config.php file. 21 In Multisite installations you have to be Super Admin for using this plugin. 22 Additionally inn Singlesite installations you have to have the 'edit_plugins' capability which is by default only granted to admins. 21 23 22 24 If you're experiencing problems please report through support forum or check FAQ section. If you have suggestions feel free to submit your view. … … 30 32 **ToDo:** 31 33 32 * handling files in MU installations34 * Adding Dashboard functionality ( and/or File View in Dashboard menu (WP_NETWORK_ADMIN) ) 33 35 * catching some not set requirements 34 36 * adding in-code documentation … … 36 38 37 39 == Changelog == 40 41 = 13.11.11 = 42 * rewrite based on the great [WordPress-Plugin-Boilerplate](https://github.com/tommcfarlin/WordPress-Plugin-Boilerplate) of Tom McFarlin 43 * optimizations for Multisite installations 44 * securing Singlesite installations 38 45 39 46 = 13.11.09 = … … 81 88 == Frequently Asked Questions == 82 89 90 = I am admin! Why can't i see the Tools > Log Viewer menu entry? = 91 If your on a Multisite installation you have to be a Super Admin. 92 If your on a Singlesite installation you additionally have to have the 'edit_plugins' role. 93 94 = But i am a Super Admin with super powers and still can't see the Tools > Log Viewer menu entry! = 95 Pow! Slam! Donk! ... as stated you have to have 'edit_plugins' role. There are Wordpress constants like 'DISALLOW_FILE_EDIT' which deactivates this even for the greatest of the admins. 96 Have a look at [http://codex.wordpress.org/Roles_and_Capabilities](http://codex.wordpress.org/Roles_and_Capabilities) or do a websearch for 'wordpress.org DISALLOW_FILE_EDIT' the have a talk to your site maintainer. 97 83 98 = How to enable debug.log = 84 99 Simply add `define( 'WP_DEBUG_LOG', true );` in your wp-config.php file. … … 91 106 92 107 = In Files View i only get the error message "Could not load file." or "No files found." = 93 It looks like there isn't a *.log file in WP_CONTENT_DIR. W ich could mean there are no errors. Yay!108 It looks like there isn't a *.log file in WP_CONTENT_DIR. Which could mean there are no errors. Yay! 94 109 If there are files, it could be that they are not readable ( check your permissions ) or it's a bug ... Booo! 95 110 -
log-viewer/trunk/readme.txt
r801627 r802754 6 6 Requires at least: 3.4 7 7 Stable Tag: 13.11.09 8 Latest Version: 13.11. 09-17288 Latest Version: 13.11.11-2248 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 19 19 20 20 To activate Wordpress logging to file you have to set `define( 'WP_DEBUG_LOG', true );` in your wp-config.php file. 21 In Multisite installations you have to be Super Admin for using this plugin. 22 Additionally inn Singlesite installations you have to have the 'edit_plugins' capability which is by default only granted to admins. 21 23 22 24 If you're experiencing problems please report through support forum or check FAQ section. If you have suggestions feel free to submit your view. … … 30 32 **ToDo:** 31 33 32 * handling files in MU installations34 * Adding Dashboard functionality ( and/or File View in Dashboard menu (WP_NETWORK_ADMIN) ) 33 35 * catching some not set requirements 34 36 * adding in-code documentation … … 36 38 37 39 == Changelog == 40 41 = 13.11.11 = 42 * rewrite based on the great [WordPress-Plugin-Boilerplate](https://github.com/tommcfarlin/WordPress-Plugin-Boilerplate) of Tom McFarlin 43 * optimizations for Multisite installations 44 * securing Singlesite installations 38 45 39 46 = 13.11.09 = … … 81 88 == Frequently Asked Questions == 82 89 90 = I am admin! Why can't i see the Tools > Log Viewer menu entry? = 91 If your on a Multisite installation you have to be a Super Admin. 92 If your on a Singlesite installation you additionally have to have the 'edit_plugins' role. 93 94 = But i am a Super Admin with super powers and still can't see the Tools > Log Viewer menu entry! = 95 Pow! Slam! Donk! ... as stated you have to have 'edit_plugins' role. There are Wordpress constants like 'DISALLOW_FILE_EDIT' which deactivates this even for the greatest of the admins. 96 Have a look at [http://codex.wordpress.org/Roles_and_Capabilities](http://codex.wordpress.org/Roles_and_Capabilities) or do a websearch for 'wordpress.org DISALLOW_FILE_EDIT' the have a talk to your site maintainer. 97 83 98 = How to enable debug.log = 84 99 Simply add `define( 'WP_DEBUG_LOG', true );` in your wp-config.php file. … … 91 106 92 107 = In Files View i only get the error message "Could not load file." or "No files found." = 93 It looks like there isn't a *.log file in WP_CONTENT_DIR. W ich could mean there are no errors. Yay!108 It looks like there isn't a *.log file in WP_CONTENT_DIR. Which could mean there are no errors. Yay! 94 109 If there are files, it could be that they are not readable ( check your permissions ) or it's a bug ... Booo! 95 110
Note: See TracChangeset
for help on using the changeset viewer.