Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Formats > ePub

Notices

Reply
 
Thread Tools Search this Thread
Old 04-10-2013, 02:55 PM   #1
lucita
Junior Member
lucita began at the beginning.
 
Posts: 4
Karma: 10
Join Date: Apr 2013
Device: iPad, Nook Color, Kindle Fire
"files not listed in OPF" ARE listed. what do I do?

Hi everyone,

Just joined on the strong recommendation of another forum. I've successfully uploaded various ePubs to Apple's iBookstore, but on this latest title I'm getting a bizarre error:

"WARNING: Verse.epub: item (__MACOSX/OEBPS/images/._amazon_large_fmt.png) exists in the zip file, but is not declared in the OPF file"

The error in itself is clear enough, what's strange is that this file, and two others similarly named, ARE indeed listed in my content.OPF file, in the manifest section, as follows:


<item id="amazon_large_fmt.png" href="images/amazon_large_fmt.png" media-type="image/png"/>
<item id="amazon_large_fmt1.png" href="images/amazon_large_fmt1.png" media-type="image/png"/>
<item id="amazon_large_fmt2.png" href="images/amazon_large_fmt2.png" media-type="image/png"/>


I am at wit's end. I would understand if the files had different names, but as you can see from the error and the code, the file names are the same. (I don't quite get the "._" after the images/ reference in the error.)

One other strange thing is that my ePub Checker software does not catch any errors (I have version 1.1.1 for the Mac), but the Kobo team did get the same error using http://www.pagina-online.de/software/epub-checker/.

Many thanks again.

Birgitte
Anyone have any ideas? I would be so grateful for any insights.
lucita is offline   Reply With Quote
Old 04-10-2013, 06:48 PM   #2
amyg
Enthusiast
amyg is on a distinguished road
 
Posts: 40
Karma: 56
Join Date: Sep 2011
Location: Los Angeles, CA
Device: Nook simple touch, iPad
The existence of the _MACOSX directory and the ._ files indicate to me that you are using the Mac's internal file compression utility to zip the file and then changing the name to epub. While you can do that on Windows, the Mac requires a 3rd party script to compress epubs properly. Fortunately, one of our members has created a convenient application that both zips and unzips epub files on a Mac and does so without causing any errors. Here's the link to the thread where he uploaded this application.

Last edited by amyg; 04-10-2013 at 07:07 PM.
amyg is offline   Reply With Quote
Advert
Old 04-10-2013, 09:31 PM   #3
dgatwood
Curmudgeon
dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.
 
dgatwood's Avatar
 
Posts: 629
Karma: 1623086
Join Date: Jan 2012
Device: iPad, iPhone, Nook Simple Touch
Files in OS X's native volume format, HFS+, can have a lot more information than just the raw data of the file itself. They can have resource forks, extended attributes, and probably a few other things I'm forgetting at the moment. These things cannot be reliably stored on volumes in many other disk formats. So OS X instead stores that information in a separate file, named the same as the original file, but prefixed with "._". These are called AppleDouble files.

OS X uses this same structure when writing zip files and tar archives, but in the case of ZIP files, throws them in their own directory (__MACOS).

Because of this, although you can certainly use the zip tool to construct EPUB files, you have to specify various flags to get the right behavior.

cd book_folder
zip -Xr9D /path/to/output.epub mimetype * -x .DS_Store

should generally work.

The -X folder disables extended attributes (which are stored as a fork in the ._ AppleDouble files when represented in a ZIP archive). It also disables various additional fields in the zip file's TOC that violate the EPUB spec.

The -r flag tells it to include directories recursively.

The -9 flag tells it to spend extra time to achieve maximum compression.

The -D flag tells it to omit entries for the directories. This isn't strictly necessary, but it should save a tiny bit of space.

Pedantically, the FreeBSD folks suggest doing this:

Code:
zip -X0 /path/to/output.epub mimetype
zip -Xur9D /path/to/output.epub *
to make absolutely sure that the manifest file never gets compressed. However, in practice, as far as I can tell, the OS X zip utility never attempts to compress the manifest file anyway, so this is probably unnecessary.

If that doesn't work, adding --datafork should fix the only other cause of ._ files appearing. Unless, of course, there are actual ._ files in your source folder, in which case... well, nuke them.

Last edited by dgatwood; 04-10-2013 at 09:37 PM.
dgatwood is offline   Reply With Quote
Old 04-10-2013, 10:55 PM   #4
lucita
Junior Member
lucita began at the beginning.
 
Posts: 4
Karma: 10
Join Date: Apr 2013
Device: iPad, Nook Color, Kindle Fire
Hi Amy,

Actually no, we use InDesign to generate the ePub, and then open that up to make any necessary code tweaks by hand directly in the code.
lucita is offline   Reply With Quote
Old 04-10-2013, 11:01 PM   #5
lucita
Junior Member
lucita began at the beginning.
 
Posts: 4
Karma: 10
Join Date: Apr 2013
Device: iPad, Nook Color, Kindle Fire
to dgatwood... i must admit what you wrote is totally over my head but I can say that I took a different route to get to the ePub. We lay the content out in InDesign CS5.5, then export to ePub. This has worked wonderfully every time.

Then we open up the ePub using Stringy, edit whatever individual files need to be edited using TextWrangler or similar software, and save back to Stringy. We have at times needed to reconstitute the ePub instead of saving directly to Stringy, I wonder if that's the issue?

here is how we've reconstituted ePub files in the past:


open TERMINAL
1.) cd ~/desktop/"Folder Name"
2.) zip file.epub -X0D mimetype
3.) zip file.epub -X9rD OEBPS/
4.) zip file.epub -X9rD META-INF/

I'll try that and see if it works... but if you guys or anyone else has any other ideas I'd love to hear them. It sounds like the images are not the issue but the way the ePub is reading...
lucita is offline   Reply With Quote
Advert
Old 04-10-2013, 11:14 PM   #6
amyg
Enthusiast
amyg is on a distinguished road
 
Posts: 40
Karma: 56
Join Date: Sep 2011
Location: Los Angeles, CA
Device: Nook simple touch, iPad
Take a look at the page I linked to. I think it will solve your problem.
amyg is offline   Reply With Quote
Old 04-10-2013, 11:18 PM   #7
lucita
Junior Member
lucita began at the beginning.
 
Posts: 4
Karma: 10
Join Date: Apr 2013
Device: iPad, Nook Color, Kindle Fire
OK, duh. I reconstituted the file according to what I just posted and it passed through Apple's system with flying ePub colors.

Sorry for the trouble and thank you!!
lucita is offline   Reply With Quote
Old 04-11-2013, 02:34 AM   #8
Toxaris
Wizard
Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.
 
Toxaris's Avatar
 
Posts: 4,520
Karma: 121692313
Join Date: Oct 2009
Location: Heemskerk, NL
Device: PRS-T1, Kobo Touch, Kobo Aura
Instead of Stringy you might be better of to do the code changes with Sigil. It can directly open ePUB and also has a validation built in (not better per se, but different).
Toxaris is offline   Reply With Quote
Old 04-18-2013, 04:29 PM   #9
AlPe
Digital Amanuensis
AlPe ought to be getting tired of karma fortunes by now.AlPe ought to be getting tired of karma fortunes by now.AlPe ought to be getting tired of karma fortunes by now.AlPe ought to be getting tired of karma fortunes by now.AlPe ought to be getting tired of karma fortunes by now.AlPe ought to be getting tired of karma fortunes by now.AlPe ought to be getting tired of karma fortunes by now.AlPe ought to be getting tired of karma fortunes by now.AlPe ought to be getting tired of karma fortunes by now.AlPe ought to be getting tired of karma fortunes by now.AlPe ought to be getting tired of karma fortunes by now.
 
AlPe's Avatar
 
Posts: 727
Karma: 1446357
Join Date: Dec 2011
Location: Turin, Italy
Device: Several eReaders and tablets
Quote:
Originally Posted by lucita View Post
"WARNING: Verse.epub: item (__MACOSX/OEBPS/images/._amazon_large_fmt.png) exists in the zip file, but is not declared in the OPF file"

The error in itself is clear enough, what's strange is that this file, and two others similarly named, ARE indeed listed in my content.OPF file, in the manifest section, as follows:
<item id="amazon_large_fmt.png" href="images/amazon_large_fmt.png" media-type="image/png"/>
Please note that your sentence is NOT true: "._amazon_large_fmt.png" and "amazon_large_fmt.png" are NOT the same file. (Note the "._" at the beginning of the former, whose origin has been explained by dgatwood.)
AlPe is offline   Reply With Quote
Reply

Tags
epub, error upload, files missing


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Touch Strange Books Listed as "Last Added" on Kobo Desktop App tea2 Kobo Reader 5 07-18-2012 07:07 PM
Fixed Layout Sample ".mobi" file with package(html, css, opf, ncx files). Sushil Kindle Fire 1 01-13-2012 07:16 AM
XHTML files not listed, only one HTML file SmartyGuy Sigil 6 06-21-2011 12:32 PM
iPad Resubmitting a book that is listed "Removed From Sale"? adam_omega Apple Devices 0 04-13-2011 02:55 AM
Multiple "Copy to Library" not copying covers/opf files over? Trickery Calibre 9 10-08-2010 01:18 PM


All times are GMT -4. The time now is 06:33 PM.


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