weso Posted October 2, 2007 Share Posted October 2, 2007 Hi, I've read previous posting of this subject but they doesn't help me. My problem is the same error: "Warning: Cannot modify header information - headers already sent by (output started at C:\Program Files\xampp\htdocs\Maribel Promotions\config.php:1) in C:\Program Files\xampp\htdocs\Maribel Promotions\photo_gallery\download_file.php on line 12" I don't send any output before the header. Please Help!! This is the download_file.php <?php require_once('../config.php'); if(isset($_GET['id'])){// if id is set then get the file with the id from database $fid = $_GET['id']; $query = "SELECT fname, ftype, fsize, file FROM tbl_files WHERE fid = '$fid'"; $result = mysql_query($query) or die('Error, query failed'); list($fname, $ftype, $fsize, $file) = mysql_fetch_array($result); header("Content-length: $fsize"); header("Content-type: $ftype"); header("Content-Disposition: attachment; filename='$fname'"); echo $file; mysql_close($con); exit; } ?> and this is the config.php <?php //variables para la base de datos $dbname = 'serenatas'; $dbhost = 'localhost'; $dbuser = 'root'; $dbpass = ''; $con = mysql_connect($dbhost, $dbuser, $dbpass); mysql_select_db($dbname, $con); ?> Thanks a lot. Quote Link to comment https://forums.phpfreaks.com/topic/71460-problem-with-header-function/ Share on other sites More sharing options...
cooldude832 Posted October 2, 2007 Share Posted October 2, 2007 remove the comment int eh config file and check its whitespace Quote Link to comment https://forums.phpfreaks.com/topic/71460-problem-with-header-function/#findComment-359737 Share on other sites More sharing options...
weso Posted October 2, 2007 Author Share Posted October 2, 2007 now is working. Thanks a lot for your help. Quote Link to comment https://forums.phpfreaks.com/topic/71460-problem-with-header-function/#findComment-359812 Share on other sites More sharing options...
cooldude832 Posted October 2, 2007 Share Posted October 2, 2007 mark it solved please. Quote Link to comment https://forums.phpfreaks.com/topic/71460-problem-with-header-function/#findComment-359816 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.