Just want to point out that the not_found.tpl template which is called here in pp_express.php does not exist.
Code: Select all
if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/payment/not_found.tpl')) {
$this->response->setOutput($this->load->view($this->config->get('config_template') . '/template/payment/not_found.tpl'));
} else {
$this->response->setOutput($this->load->view('default/template/payment/not_found.tpl'));
I noticed this in my error log after a customer complained about a blank page.
OC-errors.gif (19.57 KiB) Viewed 1446 times
I have had other customers pay with paypal express since that happened without any problem. Any ideas what could have happened? I am not good enough with php to figure out what it was OC didn't find since it wanted to show the not_found template.