smartmouse
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Phishing emailYes, but it is not the same with this:
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?
Forum: Everything else WordPress
In reply to: Phishing emailspassoweb.com
[Please do not use hidden redirected links]
Forum: Everything else WordPress
In reply to: Phishing emailYou are wrong!
The normal redirection isThe URL http://188.143.204.84/blog/wp-login.php does not belong to me!
Forum: Fixing WordPress
In reply to: Fake registrationsI 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 registrationsHello, 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 registrationsI’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 registrationsI’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 registrationsAfter activated reCaptcha i’m receiving a lot of registrations!
Why???Forum: Fixing WordPress
In reply to: Fake registrationsNope, 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 PanelWhat could be the problem?
The site is: t*l*fonian*ws.it (* = e)
Forum: Fixing WordPress
In reply to: Fake registrationsI have activated WP-reCaptcha plugin… i will let you know if this will work.
Thank you.
Forum: Fixing WordPress
In reply to: Fake registrationsThey seem to be random nickname with random email addresses.
My question is: how they overcome captcha during registration?!Forum: Plugins
In reply to: [FeedWordPress] YouTube RSS Feeds BrokenIt worked for me!
Thank you very much!The version on my server was 2011.1019.
Now i have 2012.1128.Forum: Fixing WordPress
In reply to: Create header buttons that show certain postsCool! 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?Forum: Fixing WordPress
In reply to: Create header buttons that show certain postsPlease dfwgreg keep helping me 🙁
Forum: Fixing WordPress
In reply to: Create header buttons that show certain postsGreat! Thank you so much!
I have created a navigation menu with:
– Home
– News
– InfoI 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 😉