Latest Blogs

SEO Toolkit

Get google to pay attention to your site . . .

Download the SEO Toolkit 

Portfolio Preview

Affordable PC Supply

Website Design

Affordable PC Supply Affordable PC Supply

Calhoun Technologies

Logo Design

Calhoun Technologies Calhoun Technologies

Calhoun Technologies

Website Design

Calhoun Technologies Calhoun Technologies

Carey Lawfirm

Website Design

Carey Lawfirm Carey Lawfirm

EIMS Direct

Website Design

EIMS Direct EIMS Direct

Euroland Computers, LTD

Logo Design

Euroland Computers, LTD Euroland Computers, LTD

Fire Mountain Components

Website Design

Fire Mountain Components Fire Mountain Components

Global IT Networks

Website Design

Global IT Networks Global IT Networks

GS Technologies

Logo Design

GS Technologies GS Technologies

GS Technologies

Website Design

GS Technologies GS Technologies

Memory Dogg

Logo Design

Memory Dogg Memory Dogg

Ohly Law

Website Design

Ohly Law Ohly Law

Rochester Rough Riders

Website Design

Rochester Rough Riders Rochester Rough Riders

Summit Information Services

Logo Design

Summit Information Services Summit Information Services

Summit Information Services

Website Design

Summit Information Services Summit Information Services

Tech Store UK

Website Design

Tech Store UK Tech Store UK

Tech Star International

Website Design

Tech Star International Tech Star International

Site Login






Lost Password?
No account yet? Register

Category >> Tech

May 23
2007

Ubuntu with Dual Monitors

Posted by brian in TechLinux

Over the weekend I (finally) figured out how to set up dual monitors on my Radion 9200 Dual head Vid Card... it was actually very easy once I followed the right instructions. Basically all you have to do is modify /etc/X11/xorg.conf file and add a few lines to the video card device section. That';s it ... Before that I tried a half dozen other methods ... including installing open source and private drivers... for this you don't have to do a thing except edit one file.. here is the link

http://www.ubuntuforums.org/showthread.php?p=1773710

This should work for basically any ATI card, if you have nVidia sorry but there are a few methods to try on this link as well

http://www.ubuntuforums.org/showthread.php?t=221174
May 23
2007

Google-analytics under SSL

Posted by brian in TechE-Commerce

So, here is the senario... you have an online store, you want to use google analytics to track visits/conversions etc... so you add the urchin tracker code like they say to. Now when you go to checkout or go under any ssl encrypted page the sight throws an error saying there are secure and non-secureitems....

The default code they give is

< script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>

The problem here is that it's including urchin from a non-secure source, I found some javascript at this guys blog ... http://boagworld.com/forum/comments.php?DiscussionID=1324
which will allow us to detect SSL encryption and pull in the urchin from the proper source, so use this instead.

< script type="text/javascript">
document.write( '<scr'+'ipt type="text/javascript" src="' );
if( document.location.toString().indexOf( 'https://' ) != -1 ) {
document.write( 'https://ssl' );
} else {
document.write( 'http://www' );
}
document.write( '.google-analytics.com/urchin.js"><\/scr'+'ipt>' );
</script>

Obviously I took the opening bracket off the script tag... but you get the picture


Navigation

Services