You can make a difference in the Apple Support Community!

When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.

Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

Epub 3 fixed layout – "guide" problem

Hello, where is problem when I am trying to upload fixed-layout book via iTunes Producer and I get error:


"ERROR ITMS-5107: "Fixed-layout books must supply a guide." at Book (MZItmspBookPackage)".


The guide in OPF file is on right place and well formatted.

See:


<guide>

<reference href="Text/page1.xhtml" title="Cover" type="cover" />

<reference href="Text/page1.xhtml" title="Story start" type="text" />

</guide>


In iBookstoreAssetGuide 5.0 is no information about another guide.


Thank for any advice


P. S.: Google didn't find anything 😟

Posted on Aug 8, 2012 4:35 AM

Reply
6 replies

Oct 3, 2012 4:22 AM in response to fazeelaabuzohra

Hi fazeelaabuzohra


EPUB 2:


OPF file:

<guide>

<reference type="text" href="Text/page1.xhtml"/>

</guide>


or EPUB 3:


OPF file:

<manifest>

<item href="nav.xhtml" properties="nav" id="toc" media-type="application/xhtml+xml"/>

nav.xhtml

<?xml version='1.0' encoding='UTF-8'?>

<html xmlns:epub="http://www.idpf.org/2007/ops" xmlns="http://www.w3.org/1999/xhtml">

<head>

<title></title>

</head>

<body>

<nav epub:type="landmarks">

<ol>

<li>

<a epub:type="bodymatter" href="page1.xhtml">bodymatter</a>

</li>

</ol>

</nav>

</body>

</html>



You must set the version in OPF:


EPUB 3:

<package ... version="3.0" ... >


EPUB 2:

<package ... version="2.0" ... >


I hope you will understand now 🙂

Epub 3 fixed layout – "guide" problem

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.