HTTP_Exception_404 [ 404 ]:

APPPATH/classes/Model/File.php [ 66 ]

61 			$filename = trim($file_name);
62 			$path = $storage_path.$uid;
63 			if (!is_file($path) || $file_name == '') throw new HTTP_Exception_404();
64 		} else {
65 			$file = new self($id);
66 			if (!$file->loaded() || $file->uid != $uid) throw new HTTP_Exception_404();
67 			$filename = $file->filename;
68 			$path = $file->file_storage();
69 		}
70 
71 		Response::factory()->send_file($path, $filename);
  1. APPPATH/classes/Controller/Public.php [ 427 ] » Model_File::serve_file_download()

  2. SYSPATH/classes/Kohana/Controller.php [ 84 ] » Controller_Public->action_download()

  3. {PHP internal call} » Kohana_Controller->execute()

  4. SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke()

  5. SYSPATH/classes/Kohana/Request/Client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request()

  6. SYSPATH/classes/Kohana/Request.php [ 993 ] » Kohana_Request_Client->execute()

  7. DOCROOT/index.php [ 118 ] » Kohana_Request->execute()

Environment