You are not logged in.
Pages: 1
How Do I setup google analytics? it connects to my account but it has a blank list for profiles even though I added a profile for the site.
Offline
The Analytics class requires either 'fopen' or 'cURL' to properly fetch data from Google. To find out if either is available, check phpinfo() and look for one of the following lines:
allow_url_fopen = On
//OR
cURL support – enabled
You can enable fopen by adding a line to your php.ini file (as long as your host allows it):
allow_url_fopen = oncURL is more difficult - if you're on a shared host and both are unavailable, you probably won't be able to take advantage of BigTree's GA integration.
Offline
Pages: 1