
Works on home dev server, but not online
Hi,
I got PIE working on my Wordpress site without too much trouble. The URL gave me a bit of grief until I realised it had to be absolute. To achieve this I have put all my css in a PHP file (style.css.php). I have the following in my header.php file;
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'template_url' ); ?>/style.css.php?stylesheet_url=<?php bloginfo( 'template_url' ); ?>" />
Then in style.css.php I have;
$use_pie = "behavior: url(" .$_GET['stylesheet_url']. "/PIE.htc); \n";
Then in various places things like;
#footer {
...
<?php echo $use_pie ?>
...
}
This all works fine and dandy on my dev server at home (
http://jefc.dyndns.info/proj0011 if my router is behaving...). But is not working on my webspace where I have it uploaded for preview:
http://www.geoffclayton.co.uk/lpwp.
On inspecting the generated CSS I observe that the URL is correct so I'm a little perplexed. I also know the non-PIE styles are being loaded as the site displays fine in all other respects.
Any assistance very welcome. This is a great tool. I will be recommending it widely

Cheers,
Geoff