Firefox IIS Username Password
Wednesday, October 11, 2006, 08:46 PM - Web, PHP
After fighting with FireFox to open IIS websites with PHP on them, I finally stumbled across a website with the fix on it:

1. In Firefox type about:config in the address bar
2. Find the preference named network.automatic-ntlm-auth.trusted-uris
3. Doubleclick and type localhost
4. Enter and you're done

That's all it took. no more Username and Password box.

[ add comment ]   |  [ 0 trackbacks ]   |  permalink  |   ( 3 / 264 )
Simple PHP Shopping Cart
Thursday, June 29, 2006, 09:32 AM - Programming, Web, PHP
I found a neat little shopping cart in php here.

[ 1 comment ] ( 5 views )   |  [ 0 trackbacks ]   |  permalink  |   ( 2.9 / 130 )
Consuming Web Services with PHP
Thursday, June 2, 2005, 11:53 AM - PHP
Found a little code snippet that really shows off the power of PHP5:


<?php
$ZIP = $_GET['zipcode'];
$client = new SoapClient
("http://www.xmethods.net/sd/2001/TemperatureService.wsdl");
$return = $client->getTemp($ZIP);
echo("Temperature is: " . $return);
?>



And now you have consumed a web service, in 3 lines, with php...




[ add comment ]   |  [ 0 trackbacks ]   |  permalink  |   ( 3 / 262 )
Zend Studio Server Login Error
Sunday, April 3, 2005, 09:45 AM - PHP
While trying to log in to the Zend Studio, I kept getting a flash, and then it asked me to log in again. Turned out I needed to point it to:

http://localhost/ZendStudioServer/studio/login.php?goto=index.php

instead of the default which included the full pathing of the index.php page. VIOLA...

[ add comment ]   |  [ 0 trackbacks ]   |  permalink  |   ( 3 / 236 )