Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Amazon Kindle

Notices

Reply
 
Thread Tools Search this Thread
Old 03-10-2011, 05:16 AM   #1
Steve00932
Junior Member
Steve00932 began at the beginning.
 
Posts: 1
Karma: 10
Join Date: Mar 2011
Device: Kindle 3G & Wifi
Creating a web page to download .mobi files to Kindle

Hi all, I am new to this forum and am hoping you can help me find a solution to a problem. I have setup Calibre to download newspapers to my kindle, but if I use the 3g to collect these I will have to pay charges. I would like to create a web page with links to the .mobi files I have created so that I can visit that page and download the .mobi file to read at my leisure. SO far I have done the following:
1 - Extracted the RSS feed from a newspaper (Daily Telegraph)
2 - Converted the feed into a .mobi format
3 - FTP'd the telegraph.mobi file to my web server
4 - Created a web page with a link to the .mobi file

When I visit this page in explorer it asks me if I want to download the file, but on the Kindle browser it tries to load the .mobi file in the web browser and gives me rubbish.

I know that project gutenbourg manages to download .mobi files when you click on their site, does anyone know how to do this?

Any help would be appreicated.

PS - the link I have setup so far is

www.theusualplace.co.uk/newspapers

The file "this is kent - calibre.mobi" exists on the server.

Thanks in advance!
Steve00932 is offline   Reply With Quote
Old 03-10-2011, 07:47 AM   #2
Blossom
Treasure Seeker
Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.Blossom ought to be getting tired of karma fortunes by now.
 
Blossom's Avatar
 
Posts: 18,708
Karma: 26026435
Join Date: Mar 2010
Device: Kobo HD Glo, Kindles, Kindle Fires, Andriod Devices
I would just use Dropbox It's alot easier to download your ebook library that way. I just drag and drop files from my PC into my Dropbox and it's uploaded then I just use the Kindle browser to log into my Dropbox and download whatever Mobi book I need at the moment. You get 2GB at signup which is plenty and you can get more by doing various things but it's free to use.

If you use my referral link We both get 250MB extra once you install the program on your PC. Alot of us here use Dropbox and it makes owning a Kindle even better. It's completely Free and easy to use.
Blossom is offline   Reply With Quote
Advert
Old 03-10-2011, 07:53 AM   #3
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 27,546
Karma: 193191846
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Your server needs to have the proper mimetype declared in order for the Kindle's browser to recognize the mobi file you're trying to serve.

For Apache webservers, add the following to your server conf:
AddType application/x-mobipocket-ebook .mobi .prc .azw

You can also add that same line to your .htaccess file if you don't have access to your webserver's configuration.

If you don't have any kind of access to your webserver (other than downloading/uploading files), you can try creating the link on your webpage in the following manner:
Code:
<a href="www.yourwebsite.com/ebooks/test.mobi" TYPE="application/x-mobipocket-ebook">Click here</a>
That's pretty hit or miss depending on the webserver's configuration, though. You should really use one of the first two options if you can.

Last edited by DiapDealer; 03-10-2011 at 08:42 AM.
DiapDealer is offline   Reply With Quote
Old 03-10-2011, 09:56 AM   #4
Mike L
Wizard
Mike L ought to be getting tired of karma fortunes by now.Mike L ought to be getting tired of karma fortunes by now.Mike L ought to be getting tired of karma fortunes by now.Mike L ought to be getting tired of karma fortunes by now.Mike L ought to be getting tired of karma fortunes by now.Mike L ought to be getting tired of karma fortunes by now.Mike L ought to be getting tired of karma fortunes by now.Mike L ought to be getting tired of karma fortunes by now.Mike L ought to be getting tired of karma fortunes by now.Mike L ought to be getting tired of karma fortunes by now.Mike L ought to be getting tired of karma fortunes by now.
 
Mike L's Avatar
 
Posts: 1,479
Karma: 3846231
Join Date: Apr 2009
Location: Edinburgh, Scotland
Device: Kindle 3, Samsung Galaxy
Steve,

I know this doesn't answer your question, but have you considered simply connecting your Kindle to the computer via the USB cable?

That way, you could set up a simple batch file that copies the .MOBI file to the Kindle. If you use Calibre's timer to trigger the RSS download, you could use the Windows Scheduler in a similar way to fire the batch file, say, five minutes after the Calibre download starts.

It's true that you'd have to physically plug in the cable, but, apart from that, the process would be automatic.
Mike L is offline   Reply With Quote
Old 03-10-2011, 09:59 AM   #5
HarryT
eBook Enthusiast
HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.
 
HarryT's Avatar
 
Posts: 85,544
Karma: 93383043
Join Date: Nov 2006
Location: UK
Device: Kindle Oasis 2, iPad Pro 10.5", iPhone 6
One note of caution: if your web page is publicly available, your Mobi books created from newspaper web sites will probably be in breach of copyright. Make sure that only you can access them!
HarryT is offline   Reply With Quote
Advert
Old 11-27-2011, 09:45 AM   #6
bonzi
Enthusiast
bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.
 
bonzi's Avatar
 
Posts: 46
Karma: 1530
Join Date: Nov 2011
Location: Zagreb, Croatia
Device: K2i, K3/KK WiFi, Basic (old), 2xFire, 2xPW (old), Voyage, Scribe
Quote:
Originally Posted by DiapDealer View Post
Your server needs to have the proper mimetype declared in order for the Kindle's browser to recognize the mobi file you're trying to serve.

[...]
Perfect! This solved my problems. It seems that the old rickety browser on K2 relied on file extensions instead.

Thanks!
bonzi is offline   Reply With Quote
Old 11-27-2011, 09:59 AM   #7
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 27,546
Karma: 193191846
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Quote:
Originally Posted by bonzi
Perfect! This solved my problems. It seems that the old rickety browser on K2 relied on file extensions instead.
Actually, no. The K2's rickety browser relied on what mime-type the web server was reporting for a file to be properly downloaded (along with the extension). If the Kindle's browser was relying entirely on the file's extension... there would have been no need to configure the server's mime-types. It would have just worked... with no extra configuration necessary.

But I'm glad my post helped you solve a problem.

Last edited by DiapDealer; 11-27-2011 at 10:02 AM.
DiapDealer is offline   Reply With Quote
Old 11-27-2011, 03:15 PM   #8
Kindlevarazs
Connoisseur
Kindlevarazs ought to be getting tired of karma fortunes by now.Kindlevarazs ought to be getting tired of karma fortunes by now.Kindlevarazs ought to be getting tired of karma fortunes by now.Kindlevarazs ought to be getting tired of karma fortunes by now.Kindlevarazs ought to be getting tired of karma fortunes by now.Kindlevarazs ought to be getting tired of karma fortunes by now.Kindlevarazs ought to be getting tired of karma fortunes by now.Kindlevarazs ought to be getting tired of karma fortunes by now.Kindlevarazs ought to be getting tired of karma fortunes by now.Kindlevarazs ought to be getting tired of karma fortunes by now.Kindlevarazs ought to be getting tired of karma fortunes by now.
 
Posts: 60
Karma: 494362
Join Date: Nov 2010
Location: Budapest, Hungary
Device: Kindle 3
Hi!
I think it is false. I have tried to download PRCs from server and Kindle rejected it. Another time and another place it has worked. If I rename the same prc to mobi, it has worked, too. And from another server the prc has worked, too. So my practice has proved, that the server settings are necessary for the correct download.
Kindlevarazs is offline   Reply With Quote
Old 11-27-2011, 03:30 PM   #9
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 27,546
Karma: 193191846
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Quote:
Originally Posted by Kindlevarazs View Post
Hi!
I think it is false. I have tried to download PRCs from server and Kindle rejected it. Another time and another place it has worked. If I rename the same prc to mobi, it has worked, too. And from another server the prc has worked, too. So my practice has proved, that the server settings are necessary for the correct download.
You think what is false? Everyone agrees that the proper server-side configuration is necessary for the Kindle (at least the older ones) to successfully download ebook files from a webserver.

Last edited by DiapDealer; 11-27-2011 at 03:35 PM.
DiapDealer is offline   Reply With Quote
Old 11-27-2011, 06:54 PM   #10
Kindlevarazs
Connoisseur
Kindlevarazs ought to be getting tired of karma fortunes by now.Kindlevarazs ought to be getting tired of karma fortunes by now.Kindlevarazs ought to be getting tired of karma fortunes by now.Kindlevarazs ought to be getting tired of karma fortunes by now.Kindlevarazs ought to be getting tired of karma fortunes by now.Kindlevarazs ought to be getting tired of karma fortunes by now.Kindlevarazs ought to be getting tired of karma fortunes by now.Kindlevarazs ought to be getting tired of karma fortunes by now.Kindlevarazs ought to be getting tired of karma fortunes by now.Kindlevarazs ought to be getting tired of karma fortunes by now.Kindlevarazs ought to be getting tired of karma fortunes by now.
 
Posts: 60
Karma: 494362
Join Date: Nov 2010
Location: Budapest, Hungary
Device: Kindle 3
Sorry, I misunderstood this sentence:
"If the Kindle's browser was relying entirely on the file's extension... there would have been no need to configure the server's mime-types."
Kindlevarazs is offline   Reply With Quote
Old 11-28-2011, 03:50 PM   #11
bonzi
Enthusiast
bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.
 
bonzi's Avatar
 
Posts: 46
Karma: 1530
Join Date: Nov 2011
Location: Zagreb, Croatia
Device: K2i, K3/KK WiFi, Basic (old), 2xFire, 2xPW (old), Voyage, Scribe
Quote:
Originally Posted by DiapDealer View Post
Actually, no. The K2's rickety browser relied on what mime-type the web server was reporting for a file to be properly downloaded (along with the extension). If the Kindle's browser was relying entirely on the file's extension... there would have been no need to configure the server's mime-types. It would have just worked... with no extra configuration necessary.
Hm, my K2i browser was happily downloading the same files that K3 was trying to display instead. That sent me searching for solution which I found here. It never occurred to me to inspect http headers.

Anyway, problem solved. Thanks again! (Ah, there's a glorified emoticon for that here: )
bonzi is offline   Reply With Quote
Old 11-29-2011, 11:39 AM   #12
mkgtu
Zealot
mkgtu is generous with chocolatemkgtu is generous with chocolatemkgtu is generous with chocolatemkgtu is generous with chocolatemkgtu is generous with chocolatemkgtu is generous with chocolatemkgtu is generous with chocolatemkgtu is generous with chocolatemkgtu is generous with chocolatemkgtu is generous with chocolatemkgtu is generous with chocolate
 
Posts: 129
Karma: 33000
Join Date: Feb 2010
Device: Currently:Voyage, Oasis 3, Kindle mobile apps, andKindle Fire
Original post doesn't say which Kindle is being used. If it is K3 or later (i.e. with Wi-Fi capability), I just email the calibre newspapers automatically everyday to my free kindle email, e.g. "username@free.kindle.com", which is only delivered via wi-fi, not 3G. There is no charge from Amazon for wi-fi delivery. Of course the old transfer by USB works fine if you're at home. Of course, if your Kindle doesn't use wi-fi or you have no wi-fi router at home for daily use, you're out of luck on that.
The other advantage of the email solution is that now anything you email to your Kindle address (free or otherwise) is stored on your Amazon Kindle cloud and will show up almost immediately in the Archive folder on the Kindle, where you can just click to download them. That's great for books you email, but a blessing and a curse for newspapers and magazines from calibre. They're ALL there. You'll find every copy of the New York Times you ever emailed from calibre, and, unlike the Amazon subscription version in the Archive folder, there are no dates showing. I think today's issue would be the last (or first) in the list, but finding a specific back isuue would be a bit of a challenge.
A similar email situation is to auto-email the calibre news to some other address you can access on the Kindle. They show up as an attachment which can be easily downloaded. In addition to sending news to my Kindle free address each day, I also auto-mail them all to my blackberry address where they are opened with mobipocket reader. (It's an older phone, won't take the Kindle app.)
Another alternative, though I have never used it, is that calibre itself functions as a server. You need to log onto its server address from any browser and your entire library is there for the taking. I presume you could do that from the kindle browser. Check the user manual for how to do that. You just have to remember to keep calibre runniing on your computer, even in the tray area. Close it completely and the server shuts down as well.
A final caution, if you happen to also have a Kindle Fire, the email function, especially as regards periodicals, simply doesn't work. The stuff gets there, but Amazon messes with the file in transit and it loses all the navigational controls, i.e. no "Sections and Articles." They show up like a book and can't be "browsed Through" like a periodical. The calibre folks have so far been stumped on how to fix that. Seems its an Amazon issue. You also can't access an "archive folder" on the Fire. And access to their famous Cloud doesn't work either, at least not yet. In many respects the Fire is still a cart without a horse.
mkgtu is offline   Reply With Quote
Old 11-29-2011, 11:48 AM   #13
mkgtu
Zealot
mkgtu is generous with chocolatemkgtu is generous with chocolatemkgtu is generous with chocolatemkgtu is generous with chocolatemkgtu is generous with chocolatemkgtu is generous with chocolatemkgtu is generous with chocolatemkgtu is generous with chocolatemkgtu is generous with chocolatemkgtu is generous with chocolatemkgtu is generous with chocolate
 
Posts: 129
Karma: 33000
Join Date: Feb 2010
Device: Currently:Voyage, Oasis 3, Kindle mobile apps, andKindle Fire
Whoops, just noticed original poster IS using Kindle with 3G AND Wi-Fi. solution is simple then, just have calibre automatically email the downloaded periodical to "username@free.kindle.com." Bingo, arrives in less than a minute, no charges.

To auto-mail, just go into Calibre's "preferences", set up the free.kindle address and check the box next to it for auto delivery. It will deliver all the periodicals as soon as they are finished loading. This will not auto-deliver books or anything else that you import manually into calibre.
mkgtu is offline   Reply With Quote
Old 11-29-2011, 03:55 PM   #14
dwig
Wizard
dwig ought to be getting tired of karma fortunes by now.dwig ought to be getting tired of karma fortunes by now.dwig ought to be getting tired of karma fortunes by now.dwig ought to be getting tired of karma fortunes by now.dwig ought to be getting tired of karma fortunes by now.dwig ought to be getting tired of karma fortunes by now.dwig ought to be getting tired of karma fortunes by now.dwig ought to be getting tired of karma fortunes by now.dwig ought to be getting tired of karma fortunes by now.dwig ought to be getting tired of karma fortunes by now.dwig ought to be getting tired of karma fortunes by now.
 
dwig's Avatar
 
Posts: 1,613
Karma: 6718479
Join Date: Dec 2004
Location: Paradise (Key West, FL)
Device: Current:Surface Go & Kindle 3 - Retired: DellV8p, Clie UX50, ...
Quote:
Originally Posted by mkgtu View Post
Whoops, just noticed original poster IS using Kindle with 3G AND Wi-Fi. solution is simple then, just have calibre automatically email the downloaded periodical to "username@free.kindle.com." Bingo, arrives in less than a minute, no charges. ...
True, but IF AND ONLY IF a WiFi connection is available. When there is no WiFi and you are relying on a 3G connection you won't recieve things sent to the *@free.kindle.com" address. The OP was looking for a method that was both free and via 3G.

The solution discussed here involves a custom webpage and the necessary webserver configuration. The proper server configuration is what allows Kindles to download directly from their web browser from sites like Project Gutenberg and my site for a small book that I publish for another author.
dwig is offline   Reply With Quote
Old 12-02-2011, 02:22 AM   #15
bonzi
Enthusiast
bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.bonzi once ate a cherry pie in a record 7 seconds.
 
bonzi's Avatar
 
Posts: 46
Karma: 1530
Join Date: Nov 2011
Location: Zagreb, Croatia
Device: K2i, K3/KK WiFi, Basic (old), 2xFire, 2xPW (old), Voyage, Scribe
Quote:
Originally Posted by mkgtu View Post
Another alternative, though I have never used it, is that calibre itself functions as a server. You need to log onto its server address from any browser and your entire library is there for the taking. I presume you could do that from the kindle browser. Check the user manual for how to do that. You just have to remember to keep calibre runniing on your computer, even in the tray area. Close it completely and the server shuts down as well.
I was playing with this just yesterday, and it works very well. One can run the server independently from the main Calibre application, and rendering of its pages on K3 browser is reasonably good (there are several formats of varying complexity to choose from). K2 and Calibre server don't seem to play, though - it seems that the server is not satisfied with K2 request format (it also balks if one simply tries to access it with "naked" GET request on its port using telnet). When I find some time I will snoop a bit at the K2 requests.

Just make a shortcut to start calibre-server.exe with appropriate parameters, or you can use one of the utilities to start is as a service (starting with Vista Microsoft does not seem to include this capability in its resource kit).

See http://manual.calibre-ebook.com/cli/calibre-server.html

Last edited by bonzi; 12-02-2011 at 02:44 AM.
bonzi is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Page breaks in Mobi files HarryT Kindle Formats 4 02-24-2012 04:43 AM
Creating MOBI ebooks for Kindle using FineReader, Word & Mobi Creator shoreline Workshop 1 01-28-2011 03:37 AM
Web-page uploading to Kindle(DX) si14 Amazon Kindle 2 10-02-2010 09:25 AM
Download and save MOBI files to Kindle over 3g? guiyoforward Amazon Kindle 4 09-19-2010 10:56 AM
Personal Mobi-to-Kindle web service Mitch G Amazon Kindle 2 12-23-2009 12:43 PM


All times are GMT -4. The time now is 12:11 PM.


MobileRead.com is a privately owned, operated and funded community.