Today, the folks over at Performancing.com announced the realease of Performancing Metrics, a free new service for tracking statistics for Blogs. Best of all, it's all in Drupal. OK, I'll come clean, I was involved in this project. My primary role was integrating Performancing's existing website with the Metrics tool. The entire toolset runs behind a single Drupal module that acts as a wrapper for what are essentially standalone PHP scripts.
tips
Drupal Powered Performancing Metrics Released
Submitted by Harry Slaughter on March 14, 2006 - 6:49pmSharing Cookies between Sub-domains
Submitted by Harry Slaughter on November 18, 2006 - 11:00pmIf you have two sites using the same domain and would like to share cookies between them, set something like this in your settings.php file for each domain:
Be sure you include the leading '.' before the domain name or it won't work.
This allows users to maintain login status between any sites configured for domain-wide cookies.
This can also have negative side effects, so don't do this unless you're familiar with all the cookies involved for the sites you wa
ini_set('session.cookie_domain', '.EXAMPLE.com');
Be sure you include the leading '.' before the domain name or it won't work.
This allows users to maintain login status between any sites configured for domain-wide cookies.
This can also have negative side effects, so don't do this unless you're familiar with all the cookies involved for the sites you wa
Quick Drupal function reference
tags:
Submitted by Harry Slaughter on July 27, 2006 - 7:47pm
I got this little snippet off of drupal.org somewhere, but it's proving remarkabley handy for everyday development.
Create a php node with the following content:
- « first
- ‹ previous
- 1
- 2
- 3