Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm working on the Mxit platform & would like to create and capture some custom variables to store in Google Analytics.

With Mxit portals, it's not the usual communication between browser & web server. It's phone app, mxit server, web server. Mxit sits in the middle, which means we can’t directly capture user specific info.

Mxit does however set custom headers with additional user info, which can be captured for Analytics via custom variables.

We can't make use of javascript, so I’ve installed the Analytics for mobile php script, which creates and appends data to the gif image.

I've set the custom variables on a normal website via javascript and using GA debug I copied the utme parameter and added it to the GA for mobile php code to append to manually append to the gif query string.

Here's a quick, over simplified example:

The custom values I'd like to set.

$id = $headers['mxitID'];
$country = $headers['country'];
$gender = $headers['gender'];
$age = $headers['age'];

and here I'm appending to the gif query string

&utme=8(MxitID*Country*Gender*Age)9($id*$country*$gender*$age)11(1*1*1*1)

The way I understand it, 8() represents the custom variable names, 9() represents the custom variable values and 11() represents the scope.

It's been 2 days now, and there is still no custom variable information in Google Analytics.

I'm checking Visitors > Custom Variables

Any help would be appreciated.

share|improve this question
1  
As far as I know the Google Analytics implementation for low end devices is very limited. I remember trying to implement Custom Variables with the PHP library and I think this is not supported. Your implementation looks correct, have your tried printing the full path of the GIF request to troubleshoot ? Not sure if that is available in your framework, but the Mobile SDKs have better option - for instance you could use the Android SDK to implement Custom Variables : code.google.com/mobile/analytics/docs/android/… – nt_1 Jul 26 '11 at 13:42
2  
To anyone still trying to implement custom variables using a server side approach. There is a project that supports this here: code.google.com/p/php-ga The project uses PHP 5.3 – Badger Girl May 8 '12 at 8:56
1  
You can use the following code to implement Google Analytics within Mxit Applications developed in PHP: github.com/n1c/mxit-php-ga I've beeen using it for a few months and it seems pretty reliable. There have been a few times where I scratched my head trying to figure out why Google Analytics wasn't working only to discover that the curl executable wasn't installed on my system, so keep an eye out for that, or alternatively change it to use the PHP CURL library instead. – QuickSand Feb 20 at 10:31

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.