Welcome Guest, Not a member yet? Register   Sign In
Download document error
#1

[eluser]Arivusudar[/eluser]
hi,

i have used for download document from my server system
i have used this coding for download

Code:
$this->load->helper('download');
$path = "http://192.168.1.20/sam_code/notes/admin_course.doc";
$data = file_get_contents($path); // Read the file's content
$name = "MyFileName";
force_downlo
ad($name, $data);

but am getting error like this

Code:
A PHP Error was encountered

Severity: Warning

Message: file_get_contents(http://192.168.1.20/sam_code/notes/admin_course.doc) [function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.0 404 Not Found

Filename: controllers/buynote.php

Line Number: 71

how can i solve this error?

my path is correct am sure that
#2

[eluser]saidai jagan[/eluser]
use
Code:
$data = @file_get_contents($path); // Read the file's content




Theme © iAndrew 2016 - Forum software by © MyBB