Quantcast
Channel: Topic Tag: error | WordPress.org
Viewing all 31701 articles
Browse latest View live

patriceporterp on "[Plugin: Menu] Can't get into site after code addition"

$
0
0

I know next to nothing about programming but I can copy with the best of them. So, trying to add a search box to my navigation menu, I copied this code (from http://bavotasan.com/2011/adding-a-search-bar-to-the-nav-menu-in-wordpress/) into my functions.php (in my Pinnacle child theme):

add_filter( 'wp_nav_menu_items','add_search_box', 10, 2 );
function add_search_box( $items, $args ) {
$items .= '

  • ' . get_search_form( false ) . '
  • ';
    return $items;
    }

    So now I can't get into the site at all (it tells me to contact the server administrator), and I'm guessing it's because it's changed the menu structure, which I don't know how to access from outside of WordPress (I'm using I-Page file manager).

    https://wordpress.org/plugins/menu/


    ingridprent on "[Plugin: WP Ultimate Recipe] Fatal error activating plugin"

    $
    0
    0

    Hi there,
    I've got this warning when I want to activate the plugin:

    Fatal error: Class 'VP_FileSystem' not found in /var/www/vhosts/17/130228/webspace/httpdocs/esict.nl/wp-content/plugins/wp-ultimate-recipe/vendor/vafpress/bootstrap.php on line 24

    Thanks for your help!

    https://wordpress.org/plugins/wp-ultimate-recipe/

    Olly - OWMC on "[Plugin: Bilingual Linker] OutputBilingualLink not working anymore"

    $
    0
    0

    Built a mutlisite last year and got it working beautifully with Bilingual Linker using this code:

    echo OutputBilingualLink( $post->ID, '<div class="english"></div>', '<div class="flag" title="English">', '</div>');

    It's come to reworking the site and I found my links had vanished. Discovered it was a fatal error - undefined function "OutputBilingualLink".

    I've been digging around in the forums for 2 hours now and it seems that "echo OutputBilingualLink" has been replaced with "the_bilingual_link". (note missing "echo").

    So I've tried using "the_bilingual_link", however this now messes with what i had in the parentheses ($post->ID, '<div class="english"></div>', '<div class="flag" title="English">', '</div>').

    What happened? Plugins shouldn't just break like this without a strong warning from the author on update.

    Also, if OutputBilingualLink is truly not valid anymore, why is it still on the installation instructions?

    EDIT - OK I see whats going on. The plugin has improved I think. But this has completely messed up my site. I'm going to have to put some time into rewriting my markup and css. It would be at least a bit helpful if the link inserted by "the_bilingual_link" could have a class assigned to it.

    There is literally nothing in google about this at all.

    https://wordpress.org/plugins/bilingual-linker/

    CyberMama on "[Plugin: All-in-One Event Calendar] Error message on cloning an event"

    avidaprod on "[Plugin: Online Backup for WordPress] Decrypt failing though encryption settings are correct"

    $
    0
    0

    Hi,

    I have a big problem trying to decrypt my backups. Everytime I receive the error message "The activity failed: The encryption details provided were incorrect." However, I know 100% that the details are accurate. No doubt about it. I have the password in a protected text file, it has never been modified ! Is there any way to recover an already existing backup any other way than through the plugin interface on the website. Does it make any difference to change the encryption password on the site for already existing backups (I wouldn't believe it does, but just checking...). Any other smart ideas ???

    Any help is greatly appreciated.
    Thanks in advance.

    https://wordpress.org/plugins/wponlinebackup/

    olavrossland on "[Plugin: Google Calendar Events] Error after upgrade Googel Calendar Events"

    $
    0
    0

    After upgrading the Google Calendar Events (GCE) Im not able to show the calendar in the widget on my site http://www.kfkvinnherad.no.

    ERROR:
    Warning: array_merge(): Argument #2 is not an array in /customers/6/5/f/kfkvinnherad.no/httpd.www/wp-content/plugins/google-calendar-events/includes/class-gce-display.php on line 30 Warning: Invalid argument supplied for foreach() in /customers/6/5/f/kfkvinnherad.no/httpd.www/wp-content/plugins/google-calendar-events/includes/class-gce-display.php on line 60

    When I come into the side , it looks as if the calendar is displayed correctly, but the error message comes when I refreshes the page.

    So far I have followed all the troubleshooting suggestions such as to disable all plugins etc, but without success with it.

    Some suggestions for troubleshooting ?

    https://wordpress.org/plugins/google-calendar-events/

    jsnbrn on "[Plugin: WooCommerce - excelling eCommerce] We were unable to process your order, please try again."

    $
    0
    0

    Running Woocommerce v 2.3.7
    Woocommerce Authorize.net Gateway 1.4.1

    After going through checkout, customers are getting a blank white page with this error message:

    {"result":"failure","messages":"
    \n\t\t\t
    We were unable to process your order, please try again.<\/li>\n\t<\/ul>\n","refresh":"true","reload":"false"}

    The orders ARE going through though and processing payments... only they are being told they are not going through and then resubmitting which charges them again.

    Only things I've found online are an issue with a Google Recaptcha which I am not using.

    Any ideas?

    https://wordpress.org/plugins/woocommerce/

    MrPel on "[Plugin: Contact Form 7 Style] 404 Error when customize or add new"


    karmadillo on "Custom post type pagination 404 error"

    $
    0
    0

    I am trying to get pagination working on a custom theme.

    I have a post type with custom taxonomies and I have pagination for those custom taxonomies and that works fine.

    However on another part of the site I have another custom post type; I am trying to paginate through the posts in this post type. Currently the posts are in a custom taxonomy also in this post type, the custom taxonomy behaves like a category.

    The URL structure is http://www.domain.com/latest-news/, however when I go to http://www.domain.com/latest-news/2/ I get a 404 error, this is the problem.

    Here is my code (sorry it's so long):

    <?php
                        $numCats = 0;
                        $paged = (get_query_var('page')) ? get_query_var('page') : 1;
                        $posts_per_page = 5;
                        $offset = ($posts_per_page * $paged - $posts_per_page);
                        $taxonomies = array(
                            'latest-cat'
                            );
                        $args = array(
                          'hide_empty' => false,
                          'parent' => 0,
                          'orderby' => 'id',
                          'order' => 'DESC',
                          'paged' => $paged
                          );
                        $terms = get_terms($taxonomies, $args);
                        foreach ($terms as $term) {
                            $args = array(
                            'post_type' => 'latest_news_item',
                            'oserby' => 'id',
                            'order' => 'ASC',
                            'posts_per_page' => -1,
                            'tax_query' => array(
                              array(
                                'taxonomy' => 'latest-cat',
                                'terms' => $term->term_id
                                )
                              )
                            );
                            $wp_query = new WP_Query($args);
                            while ($wp_query->have_posts() ) : $wp_query->the_post();
                            $numCats++;
                            endwhile;
                            $args = array(
                            'post_type' => 'latest_news_item',
                            'parent' => 115,
                            'orderby' => 'id',
                            'order' => 'ASC',
                            'posts_per_page' => $posts_per_page,
                            'offset' => 0,
                            'paged' => $paged
                            );
                            $wp_query = new WP_Query($args);
                        while ($wp_query->have_posts() ) : $wp_query->the_post();
                        ?>
                        <div class="news-events-item">
                            <h3><?php echo get_the_title(); ?></h3>
                            <?php $content = get_the_content(); ?>
                            <p class="summary"><?php echo wp_trim_words($content, '30', '...'); ?><a href="<?php echo get_the_permalink(); ?>" class="read-more">More</a></p>
                        </div>
                        <?php
                        endwhile;
                        } ?>

    The $numCats variable is just to count the number of posts so that I can set up the pagination links, and that part works.

    relausen on "[Plugin: User Access Manager] Page showing "Blocked" is shown when logging in using UAM's login form"

    EigenWijsheid on "[Plugin: Post Index] caused error"

    $
    0
    0

    This plugin was working fine for at least a year, but after last WP update I encountered a 'has_cap deprecated error' which totally screwed up my site.

    Too bad, because I haven't seen another plugin that could replace it that does the same thing.

    If the developer would update the plugin it would be greatly appreciated :-)

    Thank you for being able to use your nice plugin sofar!

    https://wordpress.org/plugins/post-index/

    jbeneauthor on "[Plugin: SMK Sidebar Generator] Uploaded to 3.0 now I can't post or use my site"

    $
    0
    0

    I'm receiving this error on my blog post page where I use sidebars, it won't even allow me to post to my site anymore. I need to be able to rollback to the previous version of this until this is fixed, please provide a link to the previous version until this is corrected!

    Fatal error: Call to undefined method Smk_Sidebar_Generator::get_all_sidebars() in /home/content/p3pnexwpnas04_data01/51/2239551/html/wp-content/themes/dynamic/inc/lib/metabox/init.php on line 215

    https://wordpress.org/plugins/smk-sidebar-generator/

    GuerrillaCode on "Archive Page 404 problem"

    $
    0
    0

    Hello. I am having an issue with paging archives. Below is the code I am using:

    $post_obj = $wp_query->get_queried_object();
                    $args = array(
                      'cat' => $post_obj->cat_ID,
                      'posts_per_page' => 3,
                      'paged' => $paged
                    );
    
                    query_posts($args);

    When you click the "Next Page" link you get 404. I have found other posts about this but none of the solutions seem to fix my issue. I have also tried the following:

    $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
                    $post_obj = $wp_query->get_queried_object();
                    $args = array(
                      'cat' => $post_obj->cat_ID,
                      'posts_per_page' => 3,
                      'paged' => $paged
                    );
    
                    query_posts($args);

    No luck with that either. Any help would be very much appreciated.

    jeanaing on "Errors installing themes"

    $
    0
    0

    Hi, hope you can help. I installed the blox theme on my website. Its been working well except the comments don't work. So I wanted to install another theme. It doesn't matter which theme I try install, it gives an error. Either a problem downloading a font or a pic. I have tried numerous themes with the same problem.

    fxdigital on "[Plugin: Revive Old Post (Former Tweet Old Post)] Doesnt work with Twitter"

    $
    0
    0

    Have latest version of the plugin, world 4.1 and php 5.4 installed...
    Everything worked great for a couple of days and now all I get is

    Connection error: {"errors":[{"code":226,"message":"This request looks like it might be automated. To protect our users from spam and other malicious activity, we can't complete this action right now. Please try again later."}]}

    Any ideas how to resolve this ... seems to be a fundamental error with the plugin and Twitter spam filters ... now wanting automated posting.

    https://wordpress.org/plugins/tweet-old-post/


    christiangraenge on "Plugin Failure "Reen, Reen, BUMP!""

    $
    0
    0

    Hello!
    I'm having this error.
    I downloaded a plugin called "N-Media Website Contact Form with File Upload"
    But I didn't see that it was not tested with my version of wordpress.

    Now my whole site is shut down and I can't do anything, when I go to my website http://cgraenge.dk - it just says "Reen, Reen, BUMP! not found /home/c/g/ftp_cgraengedk/wp-content/plugins/website-contact-form-with-file-upload/classes/input.class.php"

    I need all the help I can!

    - Christian Graenge - http://www.cgraenge.dk

    jschultedesign on "Widescreen Template - Edit Header To place a logo and now have an error"

    $
    0
    0

    Hello

    I'm updating this website and we were trying to upload a new logo and realized after that someone had written a site title, which I removed.

    However, I started playing around and edit the header. I accidentally didn't save the original and now having } ?> being displayed on the actual website instead of logo. How can I remove this } ?> from being displayed on the

    website janiceschulte.co.uk

    Here's the code:
    <h1 class="sitename">" title="<?php bloginfo('description'); ?>"><?php if ( isset($gpp['gpp_logo_src']) && $gpp['gpp_logo_src'] <> "" ) { ?><img class="title" src="<?php echo $gpp['gpp_logo_src']; ?>" alt="<?php bloginfo('name'); ?>" /><?php } else { ?><?php bloginfo('name');} ?> <?php bloginfo('name'); ?> } ?></h1>

    I know the error is in this line ;} ?> <?php bloginfo('name'); ?> } ?>

    Thank your for help

    jmtucu on "Update error (plugins and core)"

    $
    0
    0

    Hello all,

    I'm trying to update my plugins and I'm getting this error

    Update WordPress
    Unpacking the update…
    
    Warning: ZipArchive::open(): Empty string as source in /mounted-storage/home139/.../wp-admin/includes/file.php on line 581
    
    Warning: unlink(): Invalid argument in /mounted-storage/home139/.../wp-admin/includes/class-wp-upgrader.php on line 278
    The package could not be installed.: PCLZIP_ERR_MISSING_FILE (-4) : Missing archive file ''
    
    Installation Failed

    This is the first install, I'm using a shared hosting running Linux. The folder wp-content has the permissions setted in 755.

    Any clue regarding this? I cannot re-install Wordpress because I'm having the same error :(

    Thanks in advanced!

    antonio74 on "rejected admin for soapfault errror"

    $
    0
    0

    Hi I can't access my admin panel since yesterday. The message I receive is:

    SoapFault Thrown Could not connect to host

    Everything's ok with my provider and the website is correctly working, only I can't admin it!
    I experienced the same problem a couple of months ago but it lasted only a few hours.

    What can I do?

    dcvh007 on "[Plugin: New User Approve] Unable to login with credentials emailed once approved. Just clears form"

    $
    0
    0

    It seems to work...

    Installed it, seemed to be working, my registration went into approval holding area, I approved, I received an email, tried to login with credentials emailed to me… but on hitting submit, it just clears the form… hmm!

    Any thoughts?

    Thanks

    Dan

    https://wordpress.org/plugins/new-user-approve/

    Viewing all 31701 articles
    Browse latest View live


    <script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>