set it to show all php errors
这个提交包含在:
父节点
81ae05f476
当前提交
6276b17a25
共有 1 个文件被更改,包括 4 次插入 和 0 次删除
|
|
@ -14,6 +14,10 @@ class Clublog extends CI_Controller {
|
||||||
// Upload ADIF to Clublog
|
// Upload ADIF to Clublog
|
||||||
public function upload($username) {
|
public function upload($username) {
|
||||||
ini_set('memory_limit', '-1');
|
ini_set('memory_limit', '-1');
|
||||||
|
ini_set('display_errors', 1);
|
||||||
|
ini_set('display_startup_errors', 1);
|
||||||
|
error_reporting(E_ALL);
|
||||||
|
|
||||||
$this->load->helper('file');
|
$this->load->helper('file');
|
||||||
|
|
||||||
$this->load->model('logbook_model');
|
$this->load->model('logbook_model');
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用