Forum Replies Created

Viewing 15 replies - 16 through 30 (of 116 total)
  • Thread Starter smartmouse

    (@smartmouse)

    Yes, but it is not the same with this:

    http://188.143.204.84/blog/wp-login.php?redirect_to=http%3A%2F%2FMY_DOMAIN_NAME.com%2Fwp-admin%2F&reauth=1716

    My english is not good but i think i was clear to describe my problem!

    @andrew Nevins: can you please remove my site url away from your post?

    Thread Starter smartmouse

    (@smartmouse)

    spassoweb.com

    [Please do not use hidden redirected links]

    Thread Starter smartmouse

    (@smartmouse)

    Forum: Fixing WordPress
    In reply to: Fake registrations
    Thread Starter smartmouse

    (@smartmouse)

    @leejosepho:

    I installed Wordfence but it cannot finish the scan because it hangs on
    “[Sep 18 10:37:30]Scanning posts for URL’s in Google’s Safe Browsing List”
    (it is 4 hours that it stopped there)

    Anyway before this i see:
    [Sep 18 10:36:43]Comparing core WordPress files against originals in repository: Problems found.

    So, how to figure out what are these problems? Should it tell me what are the different files?

    Regarding “Theme My Login” plugin i will try it later

    @olevik: I’m not experiencing problems with comments and i won’t disable user registration.

    Forum: Fixing WordPress
    In reply to: Fake registrations
    Thread Starter smartmouse

    (@smartmouse)

    Hello, i do not solve my problems with fake users so i looked for a plugin for manual activation by admin of every new registration, but i cannot find it. Does it exist?

    In the meanwhile i installed this:

    http://wordpress.org/plugins/user-activation-email/

    I hope it will help me stop bot registrations.

    Forum: Fixing WordPress
    In reply to: Fake registrations
    Thread Starter smartmouse

    (@smartmouse)

    I’m still verifing if now it is all ok.
    I hope that latest fake registrations were occurred before reCaptcha activation.

    I will let you know.

    Thanks.

    Forum: Fixing WordPress
    In reply to: Fake registrations
    Thread Starter smartmouse

    (@smartmouse)

    I’m not sure if any of the core files have been changed.
    I think they are all original. Any way to test it?

    The theme doesn’t override core functionality, it is a normal template.

    Yes, i’m using the latest version.
    Anyway i get the same problem after upgraded to 3.6 (2 days ago)

    What do you mean for adding another checkpoint?

    Forum: Fixing WordPress
    In reply to: Fake registrations
    Thread Starter smartmouse

    (@smartmouse)

    After activated reCaptcha i’m receiving a lot of registrations!
    Why???

    Forum: Fixing WordPress
    In reply to: Fake registrations
    Thread Starter smartmouse

    (@smartmouse)

    Nope, in few hours 3 new bot registrations!

    I’m using WordPress v3.6 with following plugins:

    Akismet
    Delete-Revision
    Delete Duplicate Posts
    FeedWordPress
    FeedWordPress Duplicate Post Filter
    Get Recent Comments
    Global Hide/Remove Admin Bar Plugin
    Maintenance Mode
    My Category Order
    Revision Control
    Simple Image Grabber
    the_excerpt Reloaded
    Stop Spammer Registrations Plugin
    Wizzart – Recent Comments
    WP-EMail
    WP-reCAPTCHA
    WP Sliding Login/Dashboard Panel

    What could be the problem?

    The site is: t*l*fonian*ws.it (* = e)

    Forum: Fixing WordPress
    In reply to: Fake registrations
    Thread Starter smartmouse

    (@smartmouse)

    I have activated WP-reCaptcha plugin… i will let you know if this will work.

    Thank you.

    Forum: Fixing WordPress
    In reply to: Fake registrations
    Thread Starter smartmouse

    (@smartmouse)

    They seem to be random nickname with random email addresses.
    My question is: how they overcome captcha during registration?!

    It worked for me!
    Thank you very much!

    The version on my server was 2011.1019.
    Now i have 2012.1128.

    Thread Starter smartmouse

    (@smartmouse)

    Cool! It worked!

    Starting from your link i have created pageofposts.php file with this code:

    <?php
    /*
    Template Name: PageOfPosts
    */
    
    get_header(); ?>
    
    <div id="content" class="narrowcolumn">
    
    <?php
    if (is_page() ) {
    $category = get_post_meta($posts[0]->ID, 'category', true);
    }
    if ($category) {
      $cat = get_cat_ID($category);
      $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
      $post_per_page = 4; // -1 shows all posts
      $do_not_show_stickies = 1; // 0 to show stickies
      $args=array(
        'category__in' => array($cat),
        'orderby' => 'date',
        'order' => 'DESC',
        'paged' => $paged,
        'posts_per_page' => $post_per_page,
        'caller_get_posts' => $do_not_show_stickies
      );
      $temp = $wp_query;  // assign orginal query to temp variable for later use
      $wp_query = null;
      $wp_query = new WP_Query($args);
      if( have_posts() ) :
    		while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
    	    <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
            <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
            <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
            <div class="entry">
              <?php the_content('Read the rest of this entry »'); ?>
            </div>
            <p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?>  <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
          </div>
        <?php endwhile; ?>
        <div class="navigation">
          <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
          <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
        </div>
      <?php else : ?>
    
    		<h2 class="center">Not Found</h2>
    		<p class="center">Sorry, but you are looking for something that isn't here.</p>
    		<?php get_search_form(); ?>
    
    	<?php endif; 
    
    	$wp_query = $temp;  //reset back to original query
    
    }  // if ($category)
    ?>
    
    	</div>
    
    <?php get_sidebar(); ?>
    
    <?php get_footer(); ?>

    I have replaced this row
    'category__in' => array($cat),
    with
    'category__not_in' => array($cat),

    Then i have enabled “screen options” during creating a new page, i have set “PageOfPosts” as template and i have added a custom field “category” with “News” as value (that is the cat i wanted to exclude!).

    Finally i have created the fourth button in the navigation menu (admin -> appearance -> menu) linking it to the new page 🙂

    Thank you so much for your help!
    PS: Did you mean this solution?

    Thread Starter smartmouse

    (@smartmouse)

    Please dfwgreg keep helping me 🙁

    Thread Starter smartmouse

    (@smartmouse)

    Great! Thank you so much!

    I have created a navigation menu with:

    – Home
    – News
    – Info

    I have created the “home” button adding a custom link to http://www.mysite.com. Do you know a better way to create it?
    Then i have created the second button adding the “news” category.
    Finally the “info” button has been created adding the “info” page.

    Now how to create a button to show all posts of all categories except “news” category?

    Thanks 😉

Viewing 15 replies - 16 through 30 (of 116 total)