GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   when people say there site gets 50k of hits (https://gfy.com/showthread.php?t=1168963)

DVTimes 06-24-2015 04:06 AM

when people say there site gets 50k of hits
 
When people post about his to there site (say 50k).

Are they posting daily, weekly monthly or yearly stats?

Juicy D. Links 06-24-2015 04:09 AM

DV listen please.... Your posts make my eyes bleed.

I am truly convinced you are a third world poster who English is not your native language or that you are just a full fledged moron...



If you gonna post shit like this non stop at least entertain us...



-Taint

j3rkules 06-24-2015 04:21 AM

Why not ask them directly?

itme64 06-24-2015 04:39 AM

You need to ask the time frame. Is the same as somebody ask you how much you earn. And you tell him 120K

Hit is Hit -
when users access a Web site, their computer sends a request to the site's server to begin downloading a page. Each element of a requested page (including graphics,
text, and interactive items) is recorded by the site's Web server log file as a "hit." If a page containing two graphics is accessed by a user, those hits will be recorded once for the page itself and once for each of the graphics. Webmasters use hits to measure their servers' workload. Because page designs and visit patterns vary from site to site, the number of hits bears no relationship to the number of pages downloaded, and is therefore a poor guide for traffic measurement.

To find out what is used most of the time just google it.
website "Hits per second" check results
"Hits per minute" check results
"Hits per hours" check results
"Hits per day" check results
"Hits per week" check results
"Hits per month" check results
"Hits per years" check results

The one with most results you could consider this as "standard" but still its much better to ask if he means per .....

michal 06-24-2015 04:45 AM

usually its daily unique visitors

CPA-Rush 06-24-2015 05:01 AM

depends on how many posts he have ;)

just a punk 06-24-2015 05:01 AM

Quote:

Originally Posted by DVTimes (Post 20506496)
When people post about his to there site (say 50k).

Are they posting daily, weekly monthly or yearly stats?

Daily hits. And that's not too much actually, because hits doesn't mean unique visitors. E.g. these are stats from one of my self-populated sites:

http://s019.radikal.ru/i635/1506/b7/7d0014b747e5.gif

It's a mainstream (non-adult) WP site, so the traffic sources are very specific for my niche.

P.S. There are thousands of posts on that site because they are being generated automatically by the CyberSEO plugin (no manual input at all).

Barry-xlovecam 06-24-2015 05:09 AM

Hits are a count of every file served during a time period.

An example (unamed small site obviously)
The actual ratios would vary with the subject site's file content or ''how long is a string?'' A large number of the ''hits'' below are image files (thumbnails).

Code:

Date Range        Fri 6/19/2015 (24h)
Valid Hits        783496
Total Visitors        2158
Total Visits        3164
Total Pageviews        23527
Average Visitors Per Day        2158
Average Visits Per Day        3164
Average Pageviews Per Day        23527
First Time Visitors        1656
Prior Visitors        502
Bounce Rate        47.88
Average Visit Length        0:07:43
Bytes            20274545556
Gigabyte        18.88214


ruff 06-24-2015 06:16 AM

What is the best way to accurately count hits? Surely not Alexa. Google admits their analytics are not accurate. Extreme Tracking does not allow porn. Is Stats Counter all that's left?

Barry-xlovecam 06-24-2015 07:06 AM

Quote:

Originally Posted by ruff (Post 20506595)
What is the best way to accurately count hits? Surely not Alexa. Google admits their analytics are not accurate. Extreme Tracking does not allow porn. Is Stats Counter all that's left?

For sites under 100K a day Piwik.org

Set up a Piwik stats domain or subdomain on a VPS or dedicated (depending on your volume). I think it will install on some virtual servers but it may be too database use intensive.

Piwik is javascript triggered so as to the accuracy? Supposedly, all IPs are listed and you can directly connect to the MySQL database and query detail.

Code:

select

inet_ntoa(conv(hex(Country_code.location_ip), 16, 10)) AS Source_IP,
LVA.idlink_va as VisitorActionCode,
LVA.idvisit,
LVA.idsite,
URL.name as URL,
Page_Action.name as Page_Action,
Reffering_URL.name as Reffering_URL,
Reffering_Page_Action.name as Reffering_Page_Action,
Country_code.location_country as Country_code,
Country_code.visit_last_action_time as TimeLastVisit


from
piwik_log_link_visit_action LVA,
piwik_log_action URL,
piwik_log_action Page_Action,
piwik_log_action Reffering_URL,
piwik_log_action Reffering_Page_Action,
piwik_log_visit Country_code


where LVA.idaction_url = URL.idaction
AND LVA.idaction_name = Page_Action.idaction
AND LVA.idaction_url_ref = Reffering_URL.idaction
AND LVA.idaction_name_ref = Reffering_Page_Action.idaction
AND URL.name LIKE '?%'
AND Country_code.location_country ='?'
AND Page_Action.name LIKE '%?%'
AND Page_Action.name LIKE '%?%'
AND  Page_Action.name  NOT LIKE '%?%'
AND Page_Action.name NOT LIKE '%?%'
AND Page_Action.name NOT LIKE '%?%'
AND  Page_Action.name  NOT LIKE '%?%'
AND Reffering_URL.name NOT LIKE '%?%'
AND Reffering_URL.name NOT LIKE '%?%'
AND Reffering_URL.name NOT LIKE '%?%'
AND Country_code.visit_last_action_time > 2014-05-09
AND LVA.idsite ='?'

Limit 50;

Probably not the best SQL but

Code:

mysql> SELECT visit_total_actions,location_country, inet_ntoa(conv(hex(location_ip), 16, 10)) AS IP, referer_type, referer_name, referer_url  FROM [DATABASE NAME].piwik_log_visit WHERE referer_url LIKE '%?=%' AND  location_country  = 'us' ORDER BY visit_total_actions DESC limit 200;
=>
200 rows in set (1 min 15.73 sec)

I probably searched 10 million records on a huge MySQL server

I tried on a vps stats server I have (a small database) today;

=>
200 rows in set (0.50 sec)

Code:

Welcome to the MySQL monitor.  Commands end with ; or \g.
SSH or Terminal rocks if you know how to use it :2 cents:

Barry-xlovecam 06-24-2015 07:16 AM

Sterilized (partial sample :) ) records fetched:

Code:

| visit_total_actions | location_country | IP              | referer_type | referer_name                    | referer_url                                                                                                                                                                                                                                                                              |

|                103 | us              | 184.145.49.xxx  |            2 | Google                          | http://www.google.ca/url?sa=t&rct=j&q=&esrc=s&source=web&cd=8&ved=0CFMQFjAH&url=http%3A%2F%2FDOMAIN%2Flatinacamgirls%2F&ei=cH7LU8z7CMWsyATe2YHQAQ&usg=AFQjCNEv782HFbrmFILOUHQl7nclL0TmDA                                                                                      |
|                  98 | us              | 92.0.44.xxx      |            2 | Google                          | http://www.google.co.uk/url?sa=t&rct=j&q=live%20feet%KEYWORD&source=web&cd=1&ved=0CAsQFjAA&url=http%3A%2F%2FDOMAIN%2Ffeet%2F&ei=1TvQU53GN6ev0QWxt4C4Cg&usg=AFQjCNFcbCXLGWj4XRZwKimkXg4V4L7Ptw                                                                                    |
|                  93 | us              | 174.7.170.xxx  |            2 | Bing                            | http://www.bing.com/search?q=live+sex+web+mom+big+tits+KEYWORD&qs=HS&sc=8-0&sp=1&cvid=cf13161f9e2942d7b71f9e41bf905514&FORM=QBRE                                                                                                                                                          |
|                  54 | us              | 166.137.126.xxx |            2 | Yahoo!                          | http://r.search.yahoo.com/_ylt=A0SO8zvc6EZVY7UALQpx.9w4;_ylu=X3oDMTByN3UwbTk1BGNvbG8DZ3ExBHBvcwM5BHZ0aWQDBHNlYwNzcg--/RV=2/RE=1430739292/RO=10/RU=http://DOMAIN/couplesoncam//RK=0/RS=HQ1qNFMV35B2vzjS9Sz2yW8_DDg-                                                            |
|                  53 | us              | 92.0.44.xxx      |            2 | Google                          | http://www.google.co.uk/url?sa=t&rct=j&q=live%KEYWORD%20feet%20cams&source=web&cd=1&ved=0CBgQFjAA&url=http%3A%2F%2FDOMAIN%2Ffeet%2F&ei=t9_QU_7qMOiM7QbD94DwAQ&usg=AFQjCNFcbCXLGWj4XRZwKimkXg4V4L7Ptw                                                                              |

Obviously, the country code is inaccurate?

Quote:

92.0.44.xxx
inetnum: 92.0.0.0 - 92.15.255.255
netname: CPWBBSERV-NET
descr: Carphone Warehouse Broadband Services
country: GB
admin-c: GJB18-RIPE
admin-c: PM58-RIPE
tech-c: GJB18-RIPE
tech-c: PM58-RIPE
status: ASSIGNED PA
mnt-by: OPAL-MNT
created: 2007-06-29T11:56:35Z
last-modified: 2007-06-29T11:56:35Z
source: RIPE # Filtered
Quote:

166.137.126.xxx
OrgName: Service Provider Corporation
OrgId: SPC-10
Address: PO Box 1381
City: Doylestown
StateProv: PA
PostalCode: 18901-0137
Country: US
RegDate: 1993-07-09
Updated: 2014-09-30
Comment: Please visit wirelessdataspco.org for further information about contacting us.
Ref: http://whois.arin.net/rest/org/SPC-10

Quote:

NetRange: 184.144.0.0 - 184.151.255.255
CIDR: 184.144.0.0/13
NetName: BELLCANADA-20
NetHandle: NET-184-144-0-0-1
Parent: NET184 (NET-184-0-0-0-0)
NetType: Direct Allocation
OriginAS:
Organization: Bell Canada (LINX)
RegDate: 2010-04-12
Updated: 2010-04-12
Comment: For abuse cases please use [email protected]
Ref: http://whois.arin.net/rest/net/NET-184-144-0-0-1

itme64 06-24-2015 07:35 AM

Use piwik already 7 years. Running it now on 500+ domains without "big" problem. Fantastic product.

Barry-xlovecam 06-24-2015 07:48 AM

Quote:

Originally Posted by ruff (Post 20506595)
What is the best way to accurately count hits? Surely not Alexa. Google admits their analytics are not accurate. Extreme Tracking does not allow porn. Is Stats Counter all that's left?

If you just want hits ...

ssh

Code:

$cd /log/file/path

$wc -l [logfile]

or you would have to grep the datestamp range

Code:

$grep -i "june" logfilename|wc -l

12385 logfilename

12385 is the line count for the term june and that would be the "hits" or file requests

You could use a tracking script to count pages and inject a tracking pixel in each pages HTML and the script code. In the header or footer (some file on all pages).

or
Code:

$grep -i "footerfilename" logfilename|wc -l

43256 logfilename

43256 is the linecount of your "footerfilename" in the logfile. If your footer is on every page of the domain then that is your page count.

CPA-Rush 06-24-2015 07:48 AM

i would use real time analytic

Denny 06-24-2015 08:07 AM

50k hits... doesn't mean much.

It should be daily but some mean monthly, besides, you can have a site getting 50k hits daily but just 5k uniques.

romeo22 06-24-2015 08:25 AM

50K hits doest mean productivity and more money as you think

Barry-xlovecam 06-24-2015 09:01 AM

Quote:

Originally Posted by CPA-Rush (Post 20506685)
i would use real time analytic

I am doing that now with noSQL and Elastic Search

Piwik lasted 10 days LOL TMI the SSD array got 100% full.

CPA-Rush 06-24-2015 09:14 AM

Quote:

Originally Posted by Barry-xlovecam (Post 20506763)
I am doing that now with noSQL and Elastic Search

Piwik lasted 10 days LOL TMI the SSD array got 100% full.

yes i would not use piwik .

freecartoonporn 06-24-2015 09:30 AM

usually they are lying, but sometimes it means daily.

The Porn Nerd 06-24-2015 10:12 AM

I use Statcounter (upgraded to Pro version). I wanted to switch to Google Anal but you simply cannot trust Google and I don't want Big G all up in my business anymore than they already are.

Depends on how analytical you want to get. The examples cited make my eyes bleed. LOL

HomerSimpson 06-24-2015 03:25 PM

Quote:

Originally Posted by The Porn Nerd (Post 20506822)
I wanted to switch to Google Anal but you simply cannot trust


Google Anal :1orglaugh:1orglaugh:1orglaugh

Dead 06-24-2015 03:43 PM

Quote:

Originally Posted by Juicy D. Links (Post 20506499)
DV listen please.... Your posts make my eyes bleed.

I am truly convinced you are a third world poster who English is not your native language or that you are just a full fledged moron...



If you gonna post shit like this non stop at least entertain us...



-Taint

:1orglaugh
Taint= coffee table....the space between the pussy and the ass :thumbsup WeEDS

That line is a classic!

the Shemp 06-24-2015 04:31 PM

Quote:

Originally Posted by ruff (Post 20506595)
What is the best way to accurately count hits? Surely not Alexa. Google admits their analytics are not accurate. Extreme Tracking does not allow porn. Is Stats Counter all that's left?

sextracker.com ... :thumbsup

just a punk 06-25-2015 01:13 AM

Quote:

Originally Posted by ruff (Post 20506595)
What is the best way to accurately count hits? Surely not Alexa. Google admits their analytics are not accurate. Extreme Tracking does not allow porn. Is Stats Counter all that's left?

Any server-side solution which works with your logs directly. Google analytics sucks a big time and it's a spyware.

sonofsam 06-25-2015 02:47 AM

Quote:

Originally Posted by Juicy D. Links (Post 20506499)
DV listen please.... Your posts make my eyes bleed.

I am truly convinced you are a third world poster who English is not your native language or that you are just a full fledged moron...



If you gonna post shit like this non stop at least entertain us...



-Taint

Are you sure English is your first language, brah?

j3rkules 06-25-2015 02:58 AM

He is just a dirty Indian spammer so no worries.

Great69 06-25-2015 04:32 AM

You should ask the webmaster. The traffic is coming from Google, traffic exchange or robot?

CPA-Rush 06-25-2015 05:09 AM

Quote:

Originally Posted by sonofsam (Post 20507314)
Are you sure English is your first language, brah?

Location: N.Y. -Long Island :1orglaugh:1orglaugh

Best-In-BC 06-25-2015 08:19 AM

It should be daily, unless your a fresh pussy dumb noob.

oppoten 06-25-2015 10:29 AM

Quote:

Originally Posted by celebsnudehd (Post 20507318)
He is just a dirty Indian spammer so no worries.

He isn't, he's from the UK.

Amusing how this thread got such detailed responses...


All times are GMT -7. The time now is 09:02 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123