Need a solution enabling gg analytics data ( total page views, visitors etc ) to be displayed by path and restricted to author of the content at the path. In other words, we want to show page views next to the content authored by the currently logged in user. We want to use analyitcs rather than core statistics mod.
PLEASE DO NOT RESPOND UNLESS IT IS IN DIRECT RESPONSE TO THIS JOB.
Need "Clean Pager" ( http://drupal.org/project/cleanpager ) module ported or a similar solution implemented for D7. All quotes and any thoughts welcome.
I'm running in a LAMP environment have set up SSL for the /user/* and the /admin/* paths. But the https protocol is retained from that point on.
Use case:
User logs in under SSL (https:// protocol)
User navigates to other public page by clicking a menu item or breadcrumb link.
The client remains under the https:// protocol instead of the http:// protocol.
In order to map the https:// site I had to do this:
Add a virtual server for the SSL protocol, port 443
Add the following rewrites:
RewriteCond %{SERVER_PORT} 80
RewriteCond %{REQUEST_URI} user
RewriteRule ^(.*)$ https://www.mysite.com/$1 [R,L]
RewriteCond %{SERVER_PORT} 80
RewriteCond %{REQUEST_URI} admin
RewriteRule ^(.*)$ https://www.mysite.com/$1 [R,L]
All was good, except that navigating away to /forum as an example, retained the https protocol, as in https://www.mysite.com/forum.
Then I added the following, which didn't work, because it would create a ping pong effect on the request, but I think I'm on the right track.
RewriteCond %{SERVER_PORT} 443
RewriteCond %{REQUEST_URI} /
RewriteRule ^(.*)$ http://www.mysite.com/$1 [R,L]