Archive for June 2013
Alright, here’s an example shortcode for Streaming: You can just change the filename based on the mp3 files you want to stream from the S3 account. Final Link for Downloading : You can just change the filename based on the mp3 files you want to download from the S3 account. . . . Read more
Most Analytics Apps do not have official modules/plugins for Drupal. Thus, this requires us to implement a backend code insert into the theme to ensure the JS Codes we need appear on each and every page of the Drupal Theme installation. Example : MaryMorrissey.com Drupal 6 Theme : marymm Analytics . . . Read more
Oh that *is* interesting. RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} !=/favicon.ico RewriteRule ^(.*)$ index.php?q=$1 [L,QSA] The condition that is in bold above (which is already in the htaccess), should be doing the trick. But for some reason, it’s not. The “RewriteCond %{REQUEST_FILENAME} !-d” says, “if the request is . . . Read more