我正在使用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脚本(包含上述文件)?
答案 0 :(得分:1)
请注意.ipn_results.log
中的点将隐藏Unix / Linux系统上的文件。你可能意味着
$this->ipn_log_file = './ipn_results.log';
但最好在此处指定完整路径以避免混淆。