Let me first say that I will be the last to complain about this situation...it was extremely profitable for me! However, after a few long nights of thought, I am still baffled by this situation and I am quite curious whether anyone else has experienced this.

I created a website approx. a year ago. It only has 6 pages, but they are content rich, in my opinion. After submitting to the usual search engines, I have not since touched it. I always planned to come back to it and update it, but became busy with other projects, so never got around to marketing it much. The site in question is purely information, does not sell anything (I am withholding the URL in fear of being accused of promoting it). The website has been receiving about 50-100 hits per day (nothing to write home about). Then all the sudden, several days ago, the site generates 10,800 hits & 32,000 page views in one day, with 99.99 % of that traffic coming from Yahoo Search. The next day, traffic returns to normal, getting about 100 hits per day. How in the heck do you explain that? Has anyone seen this occur before? I was coming up 3rd in the search results for the keywords I target; is this a miracle or is there a fairly logical explaination? Again...I'll be the last to complain...but I can't help my curiosity! Any insight?

Thanks,
-Teal

Dani AI

Generated

A short diagnostic checklist and quick commands to follow the trail that described. and were on the right track to look at automated/referrer activity and raw logs; the important next step is to turn those ideas into evidence and to separate server-level hits from real human sessions.

Collect the access logs for the spike window and run a few quick summaries to see who/what hit the site, which pages were requested, and what referrer strings were sent:

# top client IPs
awk '{print $1}' access.log | sort | uniq -c | sort -nr | head -20

# top requested paths (combined log format)
awk -F\" '{print $2}' access.log | awk '{print $2}' | sort | uniq -c | sort -nr | head -20

# top referrers
awk -F\" '{print $4}' access.log | sort | uniq -c | sort -nr | head -20

# top user agents
awk -F\" '{print $6}' access.log | sort | uniq -c | sort -nr | head -20

Interpretation notes (how to read the results): a very small set of IPs or identical/odd user-agent strings usually indicates automated traffic; hundreds or thousands of distinct IPs with common browser user agents and low bounce times point toward real users driven by a referrer or SERP placement. Compare raw logs to any analytics data: bots often appear in logs but do not execute JavaScript-based analytics, so discrepant counts are a clue. Check full referrer URLs (they often contain the search query) to see the exact phrase that sent traffic.

Operational actions: if the evidence shows malicious/automated traffic, block offending IP ranges or user-agents at the firewall or web server and enable rate-limiting or a WAF. If it was genuine search referral, archive the referrer/landing-page evidence and add routine monitoring (server alerts or analytics thresholds) to capture future spikes. For background on bot behaviour and mitigation, see Cloudflare: What is a bot? and the .

Caution: hosting control panels often report “hits” (every file request) differently from “pageviews” (page loads in analytics). Always cross-check raw logs, server-side metrics, and any client-side analytics before drawing conclusions.

Recommended Answers

All 2 Replies

I have seen that people and it can be two things:
1. Lots of spiders and robots visited your site
2. Your site could have been under spam attack.

yea.. weird.. maybe you can check your log files (assuming you don't have analytics installed)?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.