Quote Originally Posted by paulm View Post
A last comment about the readme: it appears that the folder structure has changed in version 2.x, and the readme appears not to be updated at the time to reflect that change.


Try to leave the IP-address definitions empty in both configuration files. Like this:
Code:
define('PAYPAL_PUSHORDER_IP', '');
I installed this, but see that the two configure files are different.

includes/extra_configures/pushorder.php:-
PHP Code:
<?php
/**
 *
 * @copyright Copyright 2003-2008 Zen Cart Development Team
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version $Id: pushorder.php,  v 3.02 2008/05/28 paulm
*/
// add a pushorder password (must match the admin pushorder password)
define('PAYPAL_PUSHORDER_PASS''my-password-here');
// replace by your admin ip-address (empty string will skip ip-address check)
define('PAYPAL_PUSHORDER_IP''');
// (un)checks the "send notification emails" checkbox
define('PAYPAL_PUSHORDER_SEND_EMAIL''true'); // true / false

// move to language file if desired 
define('PAYPAL_PUSHORDER_COMMENTS'"\n" '(pushed paypal order)');
?>

admin/includes/extra_configures/pushorder.php:-
PHP Code:
<?php
/**
 *
 * @copyright Copyright 2003-2008 Zen Cart Development Team
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version $Id: pushorder.php,  v 3.0 2008/05/20 paulm
*/

// add a pushorder password (must match the catalog pushorder password)
define('PAYPAL_PUSHORDER_PASS''my-password-here');

?>
... yet you say that the IP address should be left blank in both configure files... There is no provision for IP in the ADMIN's configure file.