HTML Tutorial


 Forum HomeForum Home   FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
RegisterRegister - Not registered yet? Got something to say? Join HTML Code Tutorial!
PHP Download won't work online
Post new topic   Reply to topic    HTML Help Forum Index -> PHP
View previous topic :: View next topic  
Author Message
Grandy



Joined: 28 Jun 2007
Posts: 11

PostPosted: Thu Nov 08, 2007 7:45 am     PHP Download won't work online Reply with quote

I want to have free downloads on my page. I received the info from you back around July and it works fine in my HTML editor. Now that I'm on line it doesn't work. All the info is on the page. The zip file is in the download folder. The PHP is in the main folder for my site.
I tried placing the PHP in the download folder. but it didn't work either. I must be doing something wrong, Please help.
Grandy

Example of what is on my page:
a href="download.php"
a href="Downloads/Nutcrackers.zip"


Here is the page address:http://www.grandyscupboard.com/freebies1.html


Here is the code you sent to me:
Step 1

Try this:
Put this on the page that you want to have the download button:

<a href="download.php">Download Now! </a>


Step 2
Then create a new file, name it "download.php"
put this in the note pad:

<?php
$filename = "whatever.zip";

header("Content-Length: " . filesize($filename));
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename=whatever.zip');

readfile($filename);
?>

Change the "whatever.zip" to the name of your file
Grandy



Joined: 28 Jun 2007
Posts: 11

PostPosted: Tue Nov 13, 2007 9:32 pm     Reply with quote

I found the problem with the help of another person.
When I uploaded my files it changed my Capitols to small letters, but I still had caps on my page.
the word Download to download made the difference.
Hugs Grandy
Display posts from previous:   
Post new topic   Reply to topic    HTML Help Forum Index -> PHP All times are GMT - 8 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
HTML Help Archive
Powered by phpBB © 2001, 2005 phpBB Group
HTML Help topic RSS feed 

 
HOSTING / DESIGN
MAKE MONEY

Home
  |   Tutorials   |   Forum   |   Quick List   |   Link Directory   |   About
Copyright ©1997-2002 Idocs and ©2002-2007 HTML Code Tutorial