hammertime79
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Review Site Builder] [Plugin: WordPress Review Engine] Two thingsOh and another thing, can you PLEASE explain why you are using base64 encoding??????
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VhMDQwOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNhMDAwMWEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
Same thing happens for me. Is this plugin not supported any more?
Same problem here. Disappointed that the developer still hasn’t replied after 6 months.
I’m having this problem also. Does anyone know why this is? It appears even with all plugins disabled.
Seems the developer is no longer supporting this plugin. Pretty disappointing to abandon something that can break people’s websites so badly.
Can you at least advise me on how to undo the changes this plugin made?
Totally agree with this. Would be a welcome addition!
What’s the point in using Magic Action Box with this? You can’t even add it as a widget!
Same thing happening here.
When I try to upload an image into a post it gives me an error saying file permissions are not right…. BUT… it specifies the path from the site you cloned. i.e /home/originalsite/public_html/wp-content/uploads/2011/09
when it should actually be: /home/duplicatesite/public_html/wp-content/uploads/2011/09.
Here is the error message I get.
“myimage.jpg” has failed to upload due to an error
Unable to create directory /home/originalsite/public_html/wp-content/uploads/2011/09. Is its parent directory writable by the server?How do I change this?
Uploading the images manually via FTP is a temporary work around at the moment.
Forum: Installing WordPress
In reply to: Can't install plug-ins or themes after upgrading to 3.0.1James
What does that do?
I was having a similar problem to the orignal poster and tried your fix.
However now when I click to go to the plugin page I get this.
ID, ‘plugins_last_view’, $status); $page = isset($_REQUEST[‘paged’]) ? $_REQUEST[‘paged’] : 1; //Clean up request URI from temporary args for screen options/paging uri’s to work as expected. $_SERVER[‘REQUEST_URI’] = remove_query_arg(array(‘error’, ‘deleted’, ‘activate’, ‘activate-multi’, ‘deactivate’, ‘deactivate-multi’, ‘_error_nonce’), $_SERVER[‘REQUEST_URI’]); if ( !empty($action) ) { $network_wide = false; if ( ( isset( $_GET[‘networkwide’] ) || ‘network-activate-selected’ == $action ) && is_multisite() && current_user_can( ‘manage_network_plugins’ ) ) $network_wide = true; switch ( $action ) { case ‘activate’: if ( ! current_user_can(‘activate_plugins’) ) wp_die(__(‘You do not have sufficient permissions to activate plugins for this site.’)); check_admin_referer(‘activate-plugin_’ . $plugin); $result = activate_plugin($plugin, ‘plugins.php?error=true&plugin=’ . $plugin, $network_wide); if ( is_wp_error( $result ) ) { if ( ‘unexpected_output’ == $result->get_error_code() ) { $redirect = ‘plugins.php?error=true&charsout=’ . strlen($result->get_error_data()) . ‘&plugin=’ . $plugin; wp_redirect(add_query_arg(‘_error_nonce’, wp_create_nonce(‘plugin-activation-error_’ . $plugin), $redirect)); exit; } else { wp_die($result); } } $recent = (array)get_option(‘recently_activated’); if ( isset($recent[ $plugin ]) ) { unset($recent[ $plugin ]); update_option(‘recently_activated’, $recent); } if ( isset($_GET[‘from’]) && ‘import’ == $_GET[‘from’] ) { wp_redirect(“import.php?import=” . str_replace(‘-importer’, ”, dirname($plugin)) ); // overrides the ?error=true one above and redirects to the Imports page, striping the -importer suffix } else { wp_redirect(“plugins.php?activate=true&plugin_status=$status&paged=$page”); // overrides the ?error=true one above } exit; break; case ‘activate-selected’: case ‘network-activate-selected’: if ( ! current_user_can(‘activate_plugins’) ) wp_die(__(‘You do not have sufficient permissions to activate plugins for this site.’)); check_admin_referer(‘bulk-manage-plugins’); $plugins = isset( $_POST[‘checked’] ) ? (array) $_POST[‘checked’] : array(); $plugins = array_filter($plugins, create_function(‘$plugin’, ‘return !is_plugin_active($plugin);’) ); // Only activate plugins which are not already active. if ( empty($plugins) ) { wp_redirect(“plugins.php?plugin_status=$status&paged=$page”); exit; } activate_plugins($plugins, ‘plugins.php?error=true’, $network_wide); $recent = (array)get_option(‘recently_activated’); foreach ( $plugins as $plugin => $time) if ( isset($recent[ $plugin ]) ) unset($recent[ $plugin ]); update_option(‘recently_activated’, $recent); wp_redirect(“plugins.php?activate-multi=true&plugin_status=$status&paged=$page”); exit; break; case ‘update-selected’ : check_admin_referer( ‘bulk-manage-plugins’ ); if ( isset( $_GET[‘plugins’] ) ) $plugins = explode( ‘,’, $_GET[‘plugins’] ); elseif ( isset( $_POST[‘checked’] ) ) $plugins = (array) $_POST[‘checked’]; else $plugins = array(); $title = __( ‘Upgrade Plugins’ ); $parent_file = ‘plugins.php’; require_once( ‘./admin-header.php’ ); echo ‘
‘; screen_icon(); echo ‘
‘ . esc_html( $title ) . ‘
‘; $url = ‘update.php?action=update-selected&plugins=’ . urlencode( join(‘,’, $plugins) ); $url = wp_nonce_url($url, ‘bulk-update-plugins’); echo “How do I undo whatever your suggested fix did?
Forum: Plugins
In reply to: Error with OnlyWire PluginHey developer guy, my submissions are failing, when I create a new post it is not Auto Posting, it says failed for status. What am I doing wrong? I have created OnlyWire account and entered login details for all services etc.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Thickbox – Click image for next rather than closeHey Paulio
I got the click on image for next thing to work, but now the actual “Next” link at the bottom of the image has stopped working. Do you have a solution for this?
Thanks in advance.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Thickbox – Click image for next rather than closeOk think I found how to do that one. Just replace /wp-includes/js/thickbox/loadingAnimation.gif with the one from slideshow.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Thickbox – Click image for next rather than closeOutstanding Paulio, thank you.
It would be ideal for the thickbox to remain open once the end of the gallery is reached, but not essential.
Do you know if it’s possible to change the loading graphic? Perhaps to the circular one shown in slideshow?
Thanks for your help on this one.
Have you recreated the thumbnails in Manage gallery?