This is the home of the Google Analytics space.
To help you on your way, we've inserted some of our favourite macros on this home page. As you start creating pages, blogging and commenting you'll see the macros below fill up with all the activity in your space.
...
Column | ||
---|---|---|
| ||
|
...
width | 5% |
---|
...
width | 35% |
---|
...
Navigate space
...
Page Tree Search |
---|
...
Google Analytics Plugin
Excerpt |
---|
Provides close integration for FarCry projects with the Google Analytics service. |
Features include:
- webtop overview integration; showing stats for individual pages directly in the webtop
- support for downloads and external link reporting
- a framework for tracking Google custom variables
Installation
Checkout from source control
Code Block |
---|
svn checkout https://farcry.jira.com/svn/GA/trunk
to
./farcry/plugins/googleAnalytics
|
Tip |
---|
TRUNK should be mostly stable. But there are specific milestone tags for those who don't want to risk it. |
Update project constructor
Add googleAnalytics to the plugin list within ./www/farcryConstructor.cfm
Code Block | ||
---|---|---|
| ||
<!---// set plugin list--->
<cfset THIS.plugins = "farcrycms,googleMaps,googleAnalytics,farcrydoc" />
|
Deploy content types
Go into the webtop ADMIN > DEVELOPER TOOLS and deploy all the plugin content types.
Update Google Analytics configuration file
You will need to update the plugins configuration to include your projects specific Google Analytics URCHIN code.
Add GA custom tag to views
You will need to add the GA custom tag to all the relevant views you want to track. The best suggestion is to put the code into some sort of "footer" template that gets included on every page that visitors see.
Code Block |
---|
custom tag code goes here...
|