Click here to Skip to main content
15,884,353 members
Everything / Google analytics

Google analytics

google-analytics

Great Reads

by Sergey Kizyan
In this article I'm sharing personal and common experience that were received during last years working with application stores from Google, Apple and Microsoft
by rmostafa
Simple Google Analytics Access, with Service Account Credential OAuth2
by Manoj Kumar Chaudhari
Allows users to connect to Google spreadsheet(s) and convert them to CSV
by danlup
How to push a simple E-Commerce transaction using the new V2 code

Latest Articles

by Sergey Kizyan
In this article I'm sharing personal and common experience that were received during last years working with application stores from Google, Apple and Microsoft
by Manoj Kumar Chaudhari
Allows users to connect to Google spreadsheet(s) and convert them to CSV
by danlup
How to push a simple E-Commerce transaction using the new V2 code
by rmostafa
Simple Google Analytics Access, with Service Account Credential OAuth2

All Articles

Sort by Score

Google analytics 

3 Dec 2017 by Sergey Kizyan
In this article I'm sharing personal and common experience that were received during last years working with application stores from Google, Apple and Microsoft
30 Jan 2014 by rmostafa
Simple Google Analytics Access, with Service Account Credential OAuth2
15 May 2014 by Maciej Los
Pivot[^] is that what you want ;)[EDIT]CREATE TABLE #tmp (SrNo INT IDENTITY(1,1), URL VARCHAR(50), VisDate DATETIME, Visits INT)SET DATEFORMAT mdy;INSERT INTO #tmp (URL , VisDate , Visits)VALUES('gmail.com', '4/1/2014', 5),('facebook.com', '4/1/2014', 1),('twitter.com',...
15 May 2014 by Mandip Grewal
I think that the date appears in table may vary time to time. That's why you have to use Pivot with dynamic query. Please find below the solution of your question with comments:-- Retrieve the distinct Dates from table and concatinate it with format [Date1],[Date2].. DECLARE...
23 Jan 2016 by Manoj Kumar Chaudhari
Allows users to connect to Google spreadsheet(s) and convert them to CSV
1 Jul 2021 by Anusha T 2021
Hi, I am very new to ASP NET Core razor pages. I have a requirement to set up Google Tag Manager in ASP NET Core razor pages. Usually in the ASP.Net solution we use Google Analytic's tag.js script in page load. In angular we usually set up in...
5 May 2014 by OriginalGriff
I'd start with two things:1) Look at your file: D:\wamp\www\Practice\Zend\Gdata\ClientLogin.php and see exactly what is on line 27. It may give you a clue. Probably, it'll give you a very large clue...2) Then, look at your C drive, and examine the php\pear directory. See what files are in...
6 May 2014 by Member 10496298
try{$i_data = mysql_query("INSERT INTO 'analytic_record2' () VALUES ('','".$yourProfileId."', '".$date."', '".$visits."','".$source."', '".$medium."', '".$avgPageLoadTime."', '".$sessionDuration."')"); }catch (exception $e){ echo $e;} if($i_data) ...
15 May 2014 by Wooj Choi
Hello all I have been putting a project together to use a google analytics api sample provided by google to extract custom data into a csv file every 24 hrs. I have recieved a lot of help from the communityhere is the code that came up with that seems to somewhat work take a look.public...
23 Jun 2014 by mathiazhagan01
I was using the google analytics old api. It was easy. The new method, with google play service is confusing. I don't know how handle it from activity.I was had problem with admob too. But, I understood it and cleared. But, In google analytics case, I find it confusing. Please help me.
26 Jun 2014 by ridoy
Do you check it?https://developers.google.com/analytics/devguides/collection/android/v2/screens[^]
17 Jul 2014 by Chiranthaka Sampath
I have a requirement that uses google analytics data as the source. The UI will be the GA DashBoard. All the development done using HTML, JavaScript, JSON, JQuery. What I want is when I enter 2 dates as the from_date and to_date & according to that dates the the charts must be changed. Now I...
24 Jul 2014 by Chiranthaka Sampath
I'm creating a Google Analytics Dashboard. In there the Start Date & End Date is inserted using JQuery Date Picker. I am inserting dates in the mm/dd/yyyy format. But I want to submit them in the yyyy-mm-dd. I have used the following code to do that. $("#to_date,...
24 Jul 2014 by Richard Deeming
The format string for the datepicker widget uses yy to represent the four-digit year. By setting the format to yyyy-mm-dd, you've told it to put the four-digit year followed by the four-digit year, which is why you're getting 20142014.Change the date format to yy-mm-dd and you should get the...
24 Jul 2014 by Chiranthaka Sampath
In the following AJAX Function I need to assign the JSON to be response after the "success: function (data) {" statement. But I do not know how to do that. So is there anyone who can help me to solve this matter? function setJsonSer(){ $.ajax({ url:...
1 Oct 2014 by oakmarklondon
log in to google webmaster tools - site dashboard - crawl - fetch as google then click the red button fetch and render.just make sure your have a sitemap uploaded to webmaster tools - under sitemaps. you can create one for free at pro-sitemaps.comhope it helps!OakMark
30 Oct 2014 by suhel_khan
I am from .net background. I have two GA account, can i make a two call for same page using two accounts?If yes than what will be the script tag we should use.
4 Mar 2015 by ZurdoDev
You'll have to contact google directly to fix any account issues.
3 Apr 2015 by Apeksha09
I have implemented google analytics ecommerce tracking in my website. But there was a mistake while passing parameters to google analytics. My order get tracked but product sku code is not set.Its a dummy order that i dont want show in any google analytics report.Can you suggest how can i...
22 May 2015 by Apeksha09
I want to display peak time & day when most the people are coming to site.I have created custom report in google analytics to show such type of data.How can i display such google analytics data in asp.net website ?
29 May 2015 by Richard MacCutchan
This is not a programming issue; please ask Google[^].
2 Nov 2015 by George Jonsson
For the regular expression part you can start to look here at MDN: JavaScript Regular Expressions[^] (If JavaScript is the language)And also here Regular Expression Info[^]It is also useful to have a tool where you can test expressions in a visual way. I use this application myself...
19 Nov 2015 by Richard MacCutchan
Step 1: https://www.google.com/search?q=google+analytics[^].
3 Apr 2016 by sachi Dash
Suppose I have a app in google store. We can easily know that how many times it is downloaded & from which location through google analytic.Now I want to know that which API I can use in my own application to know the number of do download and location. Which parameter I will send for this...
3 Apr 2016 by Richard MacCutchan
Since the App Store is owned by Google you will need to ask them.
20 Oct 2016 by Manish Dalwadi
Hello Sir,I have done code for getting the list of google analytics accounts and its works fine with a static clientid.I have used this link: https://developers.google.com/analytics/devguides/reporting/core/v3/quickstart/web-jsMy issue is: => I want this functionality for all users...
4 May 2017 by Arjun YK
Can anyone suggest me some link to understand google analytics cookies and ways to implement them in website? Thanks in advance What I have tried: I did try to browse through google analytics help, need much clear info of the same
10 May 2018 by Richard MacCutchan
If you will not use the Google API then you must use web scraping. See the WebClient Class (System.Net)[^].
5 Sep 2018 by GaryStevens004
I was looking at my Google Analytics account and something weird is going on. I'm getting a lot of traffic from countries that have nothing to do with my website. I wanted to block traffic from different countries. Hosting support said you can block IPs from different countries, does anyone...
14 Jun 2019 by Gabriel9999
I have a project related with Google Dork. I need to search multiple things in a single search with the terms like search txt files in given domain only. What I have tried: I have a project related with Google Dork. I need to search multiple things in a single search with the terms like search...
8 Apr 2019 by #realJSOP
google dork multiple search terms - Google Search[^]
14 Jun 2019 by Patrice T
Quote: How to search multiple terms in Google? Have a look here: Google Advanced Search[^]
27 Sep 2019 by Richard Deeming
Hacked type: URL injection - Search Console Help[^]
12 Apr 2015 by Apeksha09
I have implemented eCommerce tracking in my asp.net website after 4 orders has been placed from website. Due to this 1st four orders are not showing in my eCommerce tracker. How can i add those orders with actual order date in Google analytic eCommerce order tracking so that date wise filtration...
17 Nov 2015 by danlup
How to push a simple E-Commerce transaction using the new V2 code
30 Oct 2014 by Adrian Fatol
Yes, it is possible, please see:https://support.google.com/analytics/answer/1032400?hl=en[^]and https://developers.google.com/analytics/devguides/collection/analyticsjs/advanced#multipletrackers[^]
1 Nov 2015 by Member 12104919
Hi,How do I match the below two thank you pages?First thank you page: "mydomain.com/paid/49549/"I want the trigger it only when "paid" is the first file after after the domain name because "paid" sometimes is added to other pages in the middle or at the end and the "49549" is dynamic...
25 Jun 2014 by Sunasara Imdadhusen
I have used Google Analytic in my PhoneGap application which is working perfect but the issue is it showing (not set) under the Real-Time section inside the Screen option for Active Users tab.This is happening with only few users from thousands.The issue is only with the Active Users tab...
5 May 2014 by Member 10496298
Fatal error: require_once(): Failed opening required 'Zend/Gdata/HttpClient.php' (include_path='.;C:\php\pear') in D:\wamp\www\Practice\Zend\Gdata\ClientLogin.php on line 27
30 Aug 2019 by Fasih Ahmed
hello sir how are you? sir i want to create dynamic Google analytics tracking id please answer me it is possible ??? my email id is : fasihahmed.77@gmail.com
12 Jan 2023 by Noopur dubey
Hi Everyone, please help me to write a code that can copy data from cloud storage to bigquery, the ask is that only delta data gets copied to bigquery table and do not write the data which is already existing in bigquery table. I tried below...
5 May 2014 by Member 10496298
I am getting this error "Fatal error: Call to a member function newDataQuery() on a non-object"in following code$my_query = $service->newDataQuery() ->setProfileId($yourProfileId) ->setStartDate($start_date) ->setEndDate($end_date) ...
13 May 2014 by Member 10496298
My database is as follow:sr....
19 Nov 2015 by DGKumar
I have developed my project with MVC4 that is done.Now I want to provide SEO technique to to get my site google track at search engine.I want to provide all my views except some pages.How to implement this SEO concept.I have no idea about this could you please tell from scratch level...
10 May 2018 by NewCoderD
I want to make a C# project where when a user enters a certain string 'xyz', we get the results rank we get 'abc.com' in the google search results. I cannot use google api or any 3rd party libraries. Any ideas? What I have tried: Its my first time with google searches so not sure where to start.