Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Sigil

Notices

Reply
 
Thread Tools Search this Thread
Old 12-05-2019, 08:34 AM   #256
KevinH
Sigil Developer
KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.
 
Posts: 8,842
Karma: 6120478
Join Date: Nov 2009
Device: many
Did you note that the epub zip did not start with the proper mimetype file unencrypted? That should not cause any real problems but what actually created this zip file? You never said.

Did you try it with Sigil-0.9.18 to see if it properly loaded the file as I asked?


Quote:
Originally Posted by BiggusDiggus View Post
You don't have to bother rewriting if you don't care. Just say it.

Its not a folder. Its a zip file. As i said i can open it with better zip. I cant see anything in the zip file which is wrong.

IThe problem i've already mentioned. Sigils error message is saying som,ething that this is a folder which isnt the case. So either something is wrong with the epub file, or something is wrong in Sigil. Definitely wrong is the error message. Thats related to Sigil, vecause Sigil is throwing this error message.

But just let it be. When I get such stupid answers, I don't feel like it anymore. I will just extract all files and rebuild the epub from scratch.

By the way: ADE is displaying this "folder" without any problems.

Was a waste of time signing me in.
KevinH is online now   Reply With Quote
Old 12-05-2019, 08:45 AM   #257
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: 28,645
Karma: 204624552
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Quote:
Originally Posted by BiggusDiggus View Post
You don't have to bother rewriting if you don't care. Just say it.
Am I supposed to say it or not bother? Your instructions are confusing. But I'll say it just to be clear: "I don't care."

I don't care that people have problems with ill-formed, non-compliant, garbage-archives-masquerading-as-epubs they get from the internet. Not even a little bit. GIGO.
DiapDealer is offline   Reply With Quote
Old 12-05-2019, 08:49 AM   #258
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: 28,645
Karma: 204624552
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Quote:
Originally Posted by Youshi View Post
The modification of toc.ncx is over.

epub3 works with nav.xhtml, and toc.ncx is only prepared formally for backward compatibility.
There are many epub that have nothing written on toc.ncx or that don't have it.
Is there any follow-up to epub3 with this modification?


Isn't this problem caused by toc.ncx as the main?
https://www.mobileread.com/forums/sh...d.php?t=325162
Not sure what you're asking. The NCX is completely optional in EPUB3, but required in EPUB2 (and by EPUB2 readers). Sigil provides manual ways to add/remove/edit (and rebuild from the NAV) an NCX in EPUB3s. User's choice.

Last edited by DiapDealer; 12-05-2019 at 09:10 AM.
DiapDealer is offline   Reply With Quote
Old 12-05-2019, 09:19 AM   #259
KevinH
Sigil Developer
KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.
 
Posts: 8,842
Karma: 6120478
Join Date: Nov 2009
Device: many
FWIW, I looked into this error message. It is the result of a runtime error generated by your operating system, not Sigil.

In Sigil we uses a try/catch to catch runtime errors and Sigil does the following:

.//src/MainUI/MainWindow.cpp: Utility::DisplayExceptionErrorDialog(tr("Cannot load file %1: %2")

The %1 is the local tmp file name for the file in question:

/private/var/folders/mv/yh12pg850x565ymz2xwhxlvr0000gn/T/Sigil-SjhZWy/OEBPS/

and the %2 is the runtime error message from your OS:

Macro: int EISDIR
“Is a directory.” You cannot open a directory for writing, or create or remove hard links to it.

So it is telling you you do not have permissions in your own tmp directory to write or create the OEBPS folder. In fact your path to your tmp files looks strange. It should not point into /private/var/folders but instead to /private/tmp/.

Have you created your own tmp directory?

So either your zip is corrupt and it is not properly distinguishing folders from files, or your manifest is incorrect listing a folder as a file, or your permissions are not properly set to create files and folders in your own temp directory.

Sorry but that error message is not under the control of Sigil, it is from your underlying os. All Sigil can do is relay that runtime_error message.

KevinH


Quote:
Originally Posted by BiggusDiggus View Post
Can someone explain this please: i have no glue what this means

Error info: Cannot load file /Users/xyz/Downloads/x.epub: /private/var/folders/mv/yh12pg850x565ymz2xwhxlvr0000gn/T/Sigil-SjhZWy/OEBPS/: Is a directory
Sigil version: 0.9.991
Runtime Qt: 5.12.3
Compiled Qt: 5.12.3

Last edited by KevinH; 12-05-2019 at 09:23 AM.
KevinH is online now   Reply With Quote
Old 12-05-2019, 12:49 PM   #260
KevinH
Sigil Developer
KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.
 
Posts: 8,842
Karma: 6120478
Join Date: Nov 2009
Device: many
And if you are on a Mac you should really read up on Gatekeeper and App Translocation that happens when trying to open a quarantine file directly from your Downloads folder.

You should always manually drag and drop any file out of your Downloads folder before trying to invoke it. Otherwise a read-only image of it is created in /private/var/folders/mv (as is shown in your error message) that causes many/most applications to fail. Your ".epub" file is being treated as an app (could it have a malicious payload attached) exactly like that.
KevinH is online now   Reply With Quote
Old 12-05-2019, 01:07 PM   #261
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 46,600
Karma: 169712392
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
The major item that had me stop responding after my first reply was that I stopped and thought about what type of site would supply an epub inside a RAR archive. Anyone aware of any store doing so? The only times I've seen this used were by pirate sites.
DNSB is offline   Reply With Quote
Old 12-05-2019, 01:22 PM   #262
KevinH
Sigil Developer
KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.
 
Posts: 8,842
Karma: 6120478
Join Date: Nov 2009
Device: many
Yes, good point! I missed the RAR bit completely.


Quote:
Originally Posted by DNSB View Post
The major item that had me stop responding after my first reply was that I stopped and thought about what type of site would supply an epub inside a RAR archive. Anyone aware of any store doing so? The only times I've seen this used were by pirate sites.
KevinH is online now   Reply With Quote
Old 12-06-2019, 11:15 AM   #263
theducks
Well trained by Cats
theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.
 
theducks's Avatar
 
Posts: 31,095
Karma: 60358908
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
Baen delivers my Bundles and orders inside ZIP Archives.
The RAR thing also made me wonder, which is why I did not offer help.
theducks is offline   Reply With Quote
Old 12-06-2019, 12:26 PM   #264
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,359
Karma: 20171571
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 15/11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
Yes, you can get zip files - and iso files - from Baen. I think that is only for Baen published books, right? I don't think they use the .rar format though.
Turtle91 is offline   Reply With Quote
Old 12-06-2019, 06:11 PM   #265
theducks
Well trained by Cats
theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.
 
theducks's Avatar
 
Posts: 31,095
Karma: 60358908
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
Quote:
Originally Posted by Turtle91 View Post
Yes, you can get zip files - and iso files - from Baen. I think that is only for Baen published books, right? I don't think they use the .rar format though.
Only Baen (formerly Webscriptions) SOLD books (Baen does ebooks for a few other imprints).
And NEVER have I seen a RAR from them.
theducks is offline   Reply With Quote
Old 12-07-2019, 05:51 PM   #266
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 46,600
Karma: 169712392
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by Turtle91 View Post
Yes, you can get zip files - and iso files - from Baen. I think that is only for Baen published books, right? I don't think they use the .rar format though.
The .iso files are copies of the CDs that were bound into 20 or so Baen hardcover releases.

As for ebooks, .zip is the only archive format Baen has used for the ebooks they sell (mandatory for bundles, optional for single books).
DNSB is offline   Reply With Quote
Old 12-11-2019, 07:11 AM   #267
RbnJrg
Wizard
RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.
 
Posts: 1,821
Karma: 8700631
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
I can't start Sigil. I receive the following error:

Code:
Embedded Python Error

Traceback (most recent call last):

  File "I:/Programas/Sigil Alpha/python3lib\xmlprocessor.py", line 5, in <module>
    from sigil_bs4 import BeautifulSoup

  File "I:/Programas/Sigil Alpha/plugin_launchers/python\sigil_bs4\__init__.py", line 48, in <module>
    from .builder import builder_registry, ParserRejectedMarkup

  File "I:/Programas/Sigil Alpha/plugin_launchers/python\sigil_bs4\builder\__init__.py", line 325, in <module>
    from . import _htmlparser

ValueError: source code string cannot contain null bytes
and

Code:
error in xmlprocessor repairXML:-2

Traceback (most recent call last):

  File "I:/Programas/Sigil Alpha/python3lib\xmlprocessor.py", line 5, in <module>
    from sigil_bs4 import BeautifulSoup

  File "I:/Programas/Sigil Alpha/plugin_launchers/python\sigil_bs4\__init__.py", line 48, in <module>
    from .builder import builder_registry, ParserRejectedMarkup

  File "I:/Programas/Sigil Alpha/plugin_launchers/python\sigil_bs4\builder\__init__.py", line 325, in <module>
    from . import _htmlparser

ValueError: source code string cannot contain null bytes
RbnJrg is online now   Reply With Quote
Old 12-11-2019, 08:45 AM   #268
KevinH
Sigil Developer
KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.
 
Posts: 8,842
Karma: 6120478
Join Date: Nov 2009
Device: many
Your path elements are all messed up. You have some path segments using forward slashes and some using backward slashes. Where did you get this build from?
KevinH is online now   Reply With Quote
Old 12-11-2019, 09:37 AM   #269
RbnJrg
Wizard
RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.
 
Posts: 1,821
Karma: 8700631
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
Quote:
Originally Posted by KevinH View Post
Your path elements are all messed up. You have some path segments using forward slashes and some using backward slashes. Where did you get this build from?
From here:

https://github.com/Sigil-Ebook/Sigil...-x64-Setup.exe

By the way, I'm using Windows 7 Ultimate x64.
RbnJrg is online now   Reply With Quote
Old 12-11-2019, 09:50 AM   #270
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: 28,645
Karma: 204624552
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Though I've never had a bit trouble with that build (nor has anyone else reported any similar issue using that installer), there's been considerable changes and fixes since it was made available. There's no real reason use that pre-release at the moment. I just downloaded it and installed it on Windows 10 with no issues, however--just to be sure.

You've also change the install location. Are you trying to run multiple versions of of Sigil at the same time and getting preferences folders crossed and confused?

Last edited by DiapDealer; 12-11-2019 at 09:52 AM.
DiapDealer is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
5.8.11 Pre=release knc1 Kindle Developer's Corner 21 04-17-2018 08:42 PM
Overdrive - Search for Pre-Release nynaevelan General Discussions 11 11-24-2013 02:27 PM
Where are the pre-release purchase buttons? Sydney's Mom General Discussions 8 09-06-2012 10:57 PM
KF Android 4.0 Pre-Release Version robertc88 Kindle Fire 22 01-22-2012 07:24 PM
PDF Viewer 0.3.0 pre-release pruss Android Devices 62 11-22-2011 11:18 AM


All times are GMT -4. The time now is 02:35 PM.


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