PHP Paypal IPN集成类不记录IPN结果

时间:2011-02-19 12:49:12

标签: php paypal paypal-ipn

我正在使用Micah Carrick的PHP Paypal IPN集成类,并在paypal.class.php中包含以下代码:

   function __construct() {
      // initialization constructor.  Called when class is created.
      $this->paypal_url = 'https://www.paypal.com/cgi-bin/webscr';
      $this->last_error = '';
      $this->ipn_log_file = '.ipn_results.log';
      $this->ipn_log = true; 
      $this->ipn_response = '';

但是,此文件尚未创建。我是否需要做一些特别的工作才能让它发挥作用?

如果我需要设置权限,我是否需要设置权限或调用php脚本(包含上述文件)?

1 个答案:

答案 0 :(得分:1)

请注意.ipn_results.log中的点将隐藏Unix / Linux系统上的文件。你可能意味着

$this->ipn_log_file = './ipn_results.log';

但最好在此处指定完整路径以避免混淆。