MCGWD
Forum Replies Created
-
I had this problem too. Turns out it was an .htaccess issue. I was using the 5G BLACKLIST/FIREWALL by PerishablePress.com for security. Anyways I removed that code from my .htaccess file and the blank screen issue was resolved.
Apparently some of the RewriteCond (eg [ ]) are now needed in WP 3.5.
Figured this out for anyone who may need this… you will need to edit radslide/setup.php
Changed ‘administrator’ to ‘moderate_comments’ in the following function (basically using a capability role used by both admins and editors).
// create menu function radslide_create_menu() { $menu_slug = 'radslide_slideshows'; add_menu_page('radSLIDE Slideshows', 'radSLIDE', 'moderate_comments', $menu_slug, 'radslide_page_slideshow'); add_submenu_page($menu_slug, 'radSLIDE Slideshows', 'Slideshows', 'moderate_comments', $menu_slug, 'radslide_page_slideshow'); add_submenu_page($menu_slug, 'radSLIDE Help', 'Help', 'moderate_comments', 'radslide_help', 'radslide_page_help'); add_submenu_page($menu_slug, 'radSLIDE Uninstall', 'Uninstall', 'administrator', 'radslide_uninstall', 'radslide_page_uninstall'); }I too would like to know if this is possible.
Just sent a donation. Keep up the excellent work JLeuze. Can’t wait for version 1.3… if you still need beta testers let me know. Thanks!
This plugin looks to be one of the best I found so far for slideshows, but the inability to add multiple slideshows is a major (and its only) drawback.
Forum: Fixing WordPress
In reply to: Remove feed from wp_headI had the same problem. Try commenting out the automatic_feed_links function in your themes functions.php file if it is in there.
Forum: Installing WordPress
In reply to: WP installed, but 404 on pagesTry resetting your permalinks to default then back to custom. I had the same problem and this worked for me.