Tagged Questions

5
votes
2answers
400 views

Why does readfile() exhaust PHP memory?

I've seen many questions about how to efficiently use PHP to download files rather than allowing direct HTTP requests (to keep files secure, to track downloads, etc.). The answer is almost always PHP ...
3
votes
3answers
233 views

PHP: Search in textfile after specific phrases / words and output

I’m trying to make a small php script to automate some work processes. What the script has to do is read a file (approximately 10-20kb per file). Then I need to search the file for some specific ...
3
votes
5answers
221 views

@readfile in php?

I hate that google can not search for symbols. I saw this in some sample code and wondered why there is an @ sign before the readfile function: @readfile($filename); What does it mean different to ...
2
votes
3answers
68 views

Determining successful download using php readfile

I need to know if a user selected download then clicked the cancel button, which is not the same as readfile having an error. I have inspected the count returned by the readfile function, but it ...
2
votes
2answers
87 views

PHP readfile fails but gives no error

Can anyone help me with this nonsense problem? <?php if(!readfile($path)) { $error = error_get_last(); ...
2
votes
1answer
282 views

get traffic caused by readfile()

I use readfile to let the client download a file through my server. Therefor I output the data which I receive from readfile('external-url') directly to the client. Now I want to determine the ...
2
votes
1answer
239 views

PHP: How to know if a user is currently downloading a file?

I'm developing a quick rapidshare-like site where the user can download files. First, I created a quick test setting headers and using readfile() but then I found in the comments section there's a way ...
2
votes
4answers
827 views

Php readfile - Force Download

I am using a flash player to play some mp3 files. At firefox it loads them normally but at IE it doesn't. When i go to the url of the .mp3 file it shows the source code of the mp3 (instead of offering ...
2
votes
6answers
428 views

How to let users with required permission download a file via php?

I have a php file that acts as a gatekeeper for all the files I want people to download, who ahve sufficient privilages. The code I use throw the file to the user is header('Content-Description: ...
2
votes
5answers
2k views

PHP Streaming MP3

I have a very similar situation to the person who asked: http://stackoverflow.com/questions/1516661/can-i-serve-mp3-files-with-php Basically I am trying to protect mp3 files from direct download, so ...
2
votes
1answer
233 views

Downloading files with PHP - Only downloading one at a time!

I have a PHP file that serves up a file, but the problem is that no matter what browser is being used, if you click on 2 links that go to 2 separate files, the second download doesn't start until the ...
1
vote
1answer
45 views

PHP force download of remote file without reading into memory

Is it possible to force a download of remote file in PHP without reading it into memory? I know fpassthru(), readfile(), file_get_contents() all reads the files into memory before outputting it into ...
1
vote
1answer
44 views

Adobe reader online doesn't read all pdf?

As the title says i made a script to read pdf files. Only specifical files can be opened. All files last modified till 29-09-2008 can be opened. All files after can't. Here is my code: <!DOCTYPE ...
1
vote
1answer
66 views

Error 324 Empty_response only on free webhost with fpassthru, readfile, file_get_contents

i'm a little confused. $l = $_REQUEST['l']; $arr = get_headers($l); foreach($arr as $a => $b){ if($a == "6"){ $r = str_replace('Location: ', '', $b); } } readfile($r); this code ...
1
vote
6answers
121 views

PHP Cannot Read External File

I am trying to read an external file, hosted on another server, but am having issues. Here, I identify the variables: $variable1 = "test"; $variable2 = "testing"; Here, I identify the URL to read: ...
1
vote
5answers
93 views

Problem when loading php file into variable (Load result of php code instead of the code as a string)

I have a site architechure where I assign content to variables and then print them in a master page. My problem is that php code in the sub pages is imported into the variables as strings. Is there ...
1
vote
1answer
37 views

problem with displaying image from php in windows

I'm trying to display an image using php: header("Content-type: image/jpeg"); header("Content-Transfer-Encoding: binary"); header('Content-length: '.filesize($IMAGE)); readfile($IMAGE); Bu the ...
1
vote
3answers
173 views

readfile() - Only allow download of certain filetypes from certain directories

I have folders on a website I am creating that I only want logged in users to be able to access the files from. So, I've decided to use some .htaccess rules and a PHP file handler so I can make sure ...
1
vote
2answers
72 views

how can i read a file in php where the file is located on an svn repo?

I have a webpage that needs to be able to read a file for parsing and display content in a table. my html calls ajax calls my php, my php reads the file and parses and sends back the content for the ...
1
vote
4answers
382 views

PHP readfile returns zero length file

This is weird. I have a script which sends local zip files to the user via browser. The script has worked fine so far without any problems. Today my colleague notified me about the script is sending ...
1
vote
3answers
554 views

reading large file from remote server using php script

I am trying to read large files lets say illustrator file or photoshop file using cron job in my system. Files size varies from 20 mb - 300 mb I have been using some function but it break in middle ...
1
vote
1answer
446 views

*.wav files do not function properly in php

When attempting to view a *.wav URL on our webserver, the data doesn't transfer properly. We are using apache2 with php5.10. Among the apache rewrite rules is: RewriteRule ^(.+)\.(wav)$ ...
1
vote
1answer
226 views

Editing a remote file on-the-fly with PHP

I have a requirement to edit a remote text file on-the-fly, the content of which currently stands at ~1Mb. I have tried a couple of approaches and both seem to be clunky or hog memory which I can't ...
1
vote
2answers
216 views

how can i redirect page while download box appears?

Now I got this code; <?php $file = "pain.png"; if (file_exists($file)) { header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); ...
1
vote
1answer
869 views

PHP readfile or file_get_contents in a loop

there may be other ways to do this but I'm looking for an fairly easy set-up because it's basically a one-time process. I have 50 state directories with a handful of txt files in each one. I want to ...
0
votes
1answer
34 views

PHP/Linux Readfile Path Using Symlink

I want to move my data directory outside of the web root. I have file paths stored in my database and would like to be able to redirect looking for files through a symlink instead of having to change ...
0
votes
0answers
79 views

PHP print(fread(…)) Out of memory error

I am attempting to use the following code to allow downloads from my website: while(!feof($file)) { print(fread($file, 1024*8)); flush(); if (connection_status()!=0) { ...
0
votes
0answers
75 views

readfile shows me “-1 bytes” while downloading files

I have the following PHP code to download files using readfile: $file = "test.zip"; $path = dirname(__FILE__)."/".$file; $size = filesize($path); header("Pragma: public"); header("Expires: 0"); ...
0
votes
5answers
55 views

Reading a File with PHP gives 500 error

I have a script which reads a mp3 file with readfile() (I have also tried fread() with a loop). And on one particular file I am getting a 500 error. All other files seem to read just fine. When I ...
0
votes
2answers
44 views

php readfile_chunked failing after 5 mintues

This is what I've got at the moment: $chunksize = 1024*4; $h = fopen($file, 'rb'); set_time_limit(600); while(!feof($h)){ echo fread($h, $chunksize); flush(); } fclose($h); I've tried ...
0
votes
2answers
150 views

PHP Readfile() not working for me and I don't know why

I am trying to get this code to work but for some reason, all the echo's are able to output correct content, but the headers don't seem to want to force the download of my document. What follows is ...
0
votes
1answer
80 views

Sporadic broken images using PHP readfile

I searched similar requests/questions, but nothing seems to match my situation. I use a PHP file to send/output uploaded files to the browser. I call the PHP file a "reader" file. The following is a ...
0
votes
2answers
57 views

Feed file outside of public_html

I am having trouble uploading a file to the user from outside of "public_html" which is the folder that everyone has access to thru http. Ex. www.website.com/ everyhting after the / is public_html. ...
0
votes
0answers
74 views

fread showing binary data not the actual image

Basically I am doing a fread of a file and it is dumping out the raw data in my browser rather than showing me the actual image. Googling around it appears I need to add header values before I call ...
0
votes
5answers
66 views

PHP downloading script

I'm trying to write a php script that will check parameters passed in before it initiates a download to the client. I've started by attempting to just initiate a download: <?php $file = ...
0
votes
1answer
79 views

when displaying image using php readfile, thin lines appear on the image

I am using php's readfile to display jpeg images outside of my sites web root. Unfortunately when I do, some small lines appear on the image. Has anyone noticed this occurring and found a fix? Is ...
0
votes
4answers
192 views

Problem with PHP readfile() dumping binary data to the browser

I trying to force a download by the browser here is my code: header("Content-Type: application/force-download"); header('Content-type: audio/mp3'); header('Content-Description: File Download'); ...
0
votes
2answers
216 views

downloading files with audio/mpeg mime type

I am trying to download remote mp3 files with an audio/mpeg mime type instead of right clicking on the link then saving as. I have tried modifying the header content-type with php headers and then ...
0
votes
1answer
64 views

PHP readfile ignores url parameters

Hi i have an odd problem. I am trying to force files to download by modifying the php headers but my actual problem is that the readfile() function doesn't parse anymore than one url parameter. eg. ...
0
votes
3answers
115 views

Allow logged in users to view and download files (some 250+ MB) that would normally be 403 access denied

I'm building a web server out of a spare computer in my house (with Ubuntu Server 11.04), with the goal of using it as a file sharing drive that can also be accessed over the internet. Obviously, I ...
0
votes
2answers
266 views

Value too large for defined data type

I'm using readfile() in a php download script. When I try to download a 9gb sized file, I get the following error: function.readfile</a>]: failed to open stream: Value too large for defined ...
0
votes
2answers
356 views

Is there an alternative to php readfile() in safe mode server?

I host my site on a shared hosting, which lately changed the server to safe mode (without even notifying that). I use a feature that download files from the server, using the readfile() function (I ...
0
votes
1answer
290 views

readfile() fails because of SSL

I'm using readfile() to serve a download from Rapidshare's API through my server. This is the relevant code: ...
0
votes
2answers
500 views

PHP stream PDF with fread and readfile produce a damaged pdf

Hello guys i have a problem streaming PDF files with php, i'm using this code: if(file_exists($path)) { //octet-stream header("Content-Length: " . filesize ( $path ) ...
0
votes
3answers
81 views

Using up bandwidth when calling readfile() on a different server?

I have a question about how servers communicate with each other and how it takes up bandwidth. I'll use an example to better explain my question. I have two sites: www.jojoedad.com and ...
0
votes
3answers
395 views

Broken image with readfile and file_get_contents

I'm trying to use a function in order to get this working: <img src='login.php?image=ind_legend.jpg'> But I can't pass through the function to place the image. I went back a couple of steps ...
0
votes
3answers
351 views

read single byte from PHP uploaded file

I am very new to PHP, so forgive me my ignorance. I have HTML for for upload: <form action="upload.php" method="post" enctype="multipart/form-data"> <label ...
0
votes
1answer
252 views

how can i load a swf into another swf using php readfile and retain the url parameters?

Hello all and thank you for looking over this. I am using php to read a file (specified by a cookie on the users machine) with the function readfile(). the file i am reading is an actionscript 3 flash ...
0
votes
4answers
193 views

PHP: Readfile works at localhost but not at server

I tried to solve my problems for hours and searched google and several boards, but i haven't found a solution. My Problem: I built a PHP-script what generates a download. Code below: $file = ...
0
votes
2answers
230 views

readfile vs. include

Consider the following: I have a large project which consists of a parent site, alongside multiple 'child' sites, to which they all share identical 'core / base' content.. (images, 'includes', ...

1 2