Categories
Azure Microsoft Azure Websites OSS PHP

Run Analytics on your Windows Azure WebSite – Part I

Web Analytics is basically measuring and collecting information about your Web Site usage  that helps you understand  user/customer behavior track traffic to your website analyze marketing campaigns and conversion rates There are many Open source applications that  give you a great view to your website usage through reports of various kinds of information about your […]

Categories
Azure Microsoft Azure Websites PHP

Run Analytics on your Windows Azure Website – Part II

Setup your existing WebSite to allow Piwik Application to collect data Every web page must includes the JS code required for Piwik  as seen below : <!– Piwik –> <script type=”text/javascript”> var _paq = _paq || []; (function(){ var u=((“https:” == document.location.protocol) ? “https://{$PIWIK_URL}/” : “http://{$PIWIK_URL}/”); _paq.push([‘setSiteId’, {$IDSITE}]); _paq.push([‘setTrackerUrl’, u+’piwik.php’]); _paq.push([‘trackPageView’]); _paq.push([‘enableLinkTracking’]); var d=document, g=d.createElement(‘script’), […]

Categories
Azure Microsoft Azure Websites Python

Bottle Python Framework now on Windows Azure Websites

Bottle is a fast, simple and lightweight WSGI micro web-framework for Python.  This tutorial shows you how to create a website on Azure for Bottle Framework in just a few clicks.  You require a Windows Azure account to begin.Once you are logged into the Management portal, you will need to create a new site “from gallery” as shown […]

Categories
Azure Microsoft Azure Websites Python

Cool features in PTVS 2.0 RC

Check out this video about Python Tools for VS with all the new features . Read more here Virtual environment Mixed Python ,C,C++ debuggig Easy deployment to Windows Azure Websites http://www.youtube.com/watch?v=JNNAOypc6Ek&hd=1

Categories
Azure Python

Django with Visual Studio

Want to run Django on Windows environment ! Check out this tutorial to run django using python tools for visual studio : http://www.windowsazure.com/en-us/develop/python/tutorials/django-with-python-tools-for-visual-studio-20/