Quote Originally Posted by lankeeyankee View Post
1.7.3 works with 1.3.9a but there are 2 core changes from 1.3.8a to 1.3.9a specifically admin/orders.php and includes/classes/order.php but this mod does not work on php 5.3.x with any version.
Can you tell me what version of the 5.3x you actually tested this on?

I ran it on a Wamp Server with PHP 3.0 installed and got it to run by removing 1 character in /includes/templates/YOUR TEMPLATE/templates/tpl_checkout_stacked.php. Here is what I did to make it work.
Code:
	  <?php
	    } else {
	  ?>
	  <h2 id="checkoutShippingHeadingMethod"><?php echo TITLE_NO_SHIPPING_AVAILABLE; ?></h2>
	  <div id="checkoutShippingContentChoose" class="important"><?php echo TEXT_NO_SHIPPING_AVAILABLE; ?></div>
	  <?php
	    }
	  ?>
	  </fieldset>
	  <?php
  /*   }    */
	  ?>
	  <!--EOF SHIPPING-->
Look for the above code around line 290 and just put the comment tags around the bracket } .

As I said, it worked for me.

Please let me know if you try this and your results. Remember to say what version of PHP 5.3x you are running.