I am using opencart for an online shop I am creating.

When I look at the latest orders section I am supposed to be able to click view for each order.

When the view link is clicked all that is loaded is a blank page.

There are no errors that I can see. I can provide any code you need however I do not know where the error is so help is greatly appreciated.

有帮助吗?

解决方案

Try adding to following to the top of your admin/index.php file.

error_reporting(E_ALL);
ini_set("display_errors" , 1);

This should give you more information about the bug.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top