New 7z doesn't work with multiarc

English support forum

Moderators: white, Hacker, petermad, Stefan2

Post Reply
JP
Senior Member
Senior Member
Posts: 273
Joined: 2003-02-13, 09:15 UTC

New 7z doesn't work with multiarc

Post by *JP »

Hi, I've just downloaded the new 7z and it doesn't work with multiarc. Using my anciant configuration, it creates a empty archive. Using the new addon configuration given by 7z (7zToFar.ini) doesn't work at all. Any suggestion?
User avatar
lzvk25
Member
Member
Posts: 183
Joined: 2003-02-09, 04:28 UTC
Location: Collierville, TN

Post by *lzvk25 »

Welcome to the club, I just posted a similar topic in the Plugins Forum.
I am starting to think that we must report this bug to the 7-Zip people.

:(
Memo to Boss : No TC, No Work
User avatar
JackFoo
Senior Member
Senior Member
Posts: 373
Joined: 2003-02-05, 19:53 UTC
Location: ERROR

Post by *JackFoo »

Code: Select all

ID=37 7A BC AF 27 1C  
IDPos=0
Extension=7z
Archiver=c:\program files\tools\7z\7za.exe
List="%P l %AQA"
Start="^-------------------"
End="^-------------------"
Format0="yyyy tt dd hh mm ss aaaaa zzzzzzzzzzzz pppppppppppp nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn
nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn
nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn
nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn
nnnnnnnnnnnnnnnnnnnnnnnn"
Extract="%P e -y{ %S} %AQA @%LQ"
ExtractWithPath="%P x -y{ %S} %AQ @%LQ"
Test="%P t -y{ %S} %AQA"
Delete="%P d -y -r{ %S} %AQA @%LQ"
Add="%P a -bd -mhcf -m0=BCJ2 -m1=LZMA:d8M:a2:mf=bt4b:fb128 -m2=LZMA:d4M:a2:mf=bt4b:fb128 -m3=LZMA:d4M:a2:mf=bt4b:fb128 -mb0:1 -mb0s1:2 -mb0s2:3 -y -r{ %S} %AQA @%LQ"
;Add="%P a -bd -mhcf=on -m0=BCJ2 -m1=LZMA:d4M:a2:mf=bt4b:fb128 -m2=LZMA:d4M:a2:fb128 -m3=LZMA:d4M:a2:fb128 -mb0:1 -mb0s1:2 -mb0s2:3 -y -r{ %S} %AQA @%LQ"
Description="7-Zip 3.08.02 beta"
IgnoreErrors=0
Debug=0
UnixPath=0
SkipDirsInFileList=0
SkipEmptyNames=1
BatchUnpack=1
SearchForUglyDirs=0
AskMode=0
SkipLIST=1
AskHistory0=-bd -mhcf -m0=PPMd:mem28:o32
This Works perfectly well for me (3.08.02 beta);

EDIT: I broke the nnn...nnn string, so if anyone copies it please not that the nnn... string shouldn't contain white chars.

Cheers.
Last edited by JackFoo on 2003-08-21, 16:08 UTC, edited 1 time in total.
JP
Senior Member
Senior Member
Posts: 273
Joined: 2003-02-13, 09:15 UTC

Post by *JP »

JackFoo wrote:This Works perfectly well for me (3.08.02 beta);

Cheers.
This works for me partially. But it doesn't work with long filenames.

Thanks.
User avatar
lzvk25
Member
Member
Posts: 183
Joined: 2003-02-09, 04:28 UTC
Location: Collierville, TN

Post by *lzvk25 »

I tried this configuration and still does not work, however, I noticed that the new 7-zip is not including files with names that have spaces in them.

:cry:
Memo to Boss : No TC, No Work
User avatar
JackFoo
Senior Member
Senior Member
Posts: 373
Joined: 2003-02-05, 19:53 UTC
Location: ERROR

Post by *JackFoo »

Hmm, yes, seems like it doesn't like spaces... weird might be a bug in either multiarc or 7zip; I don't use it (GUI) but someone might want to try using GUI version of the new 7zip to compress some files containing spaces and see if it behaves...

For me trying to compress a file [a b c.txt] it created the 7z container but didn't put anything inside the archive, multiarc window showed as if everything was compressed ok.

Cheers.
User avatar
deus-ex
Power Member
Power Member
Posts: 969
Joined: 2003-02-10, 17:45 UTC

Post by *deus-ex »

Solution to the "Filename with spaces" problem :D
Change parameter "@%LQ" in Add-String to "@%L"

This example is for 7-zip v3.08.02 beta with Multiarc v1.09b3, utilizing standalone version 7za.exe (Win98/Me).
(If you use standalone only, you can remove the whole 7-zip installation except 7za.exe for Win98/Me or 7zna.exe for WinXP/NT/2000)

Code: Select all

[7z]
ID=37 7A BC AF 27 1C
Extension=7z
;NOTE: EDIT ARCHIVER-STRING TO YOUR LOCAL SETTINGS.
Archiver=c:\util\7za
BatchUnpack=1
Debug=0
Start="^--"
End="^--"
;NOTE: FORMAT0-STRING MUST BE WRITTEN AS ONE STRING! AFTER COPYING EDIT OUT ALL "\ "!
Format0="yyyy tt dd hh mm ss aaaaa zzzzzzzzzzzz pppppppppppp  nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn\ nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn\ nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn"
List=%P l %AQ %O
Extract=%P e -y %AQ @%L
ExtractWithPath=%P x -y %AQ @%L
Test=%P t -y %AQ
Delete=%P d -y %AQ @%L
Add=%P a -bd -mhcf -mx=9 -m0=BCJ2 -m1=LZMA -m2=LZMA -m3=LZMA -mb0:1 -mb0s1:2 -mb0s2:3 -y %AQ @%L
You might notice that my Add-String is a lot simpler than in JackFoo's Example.
In comparison sometimes JackFoo's is better, sometimes mine, difference of Archivesize is very little.
That's why i choose the simple string. ;)
Sam York
Junior Member
Junior Member
Posts: 61
Joined: 2003-08-14, 20:42 UTC

Post by *Sam York »

Hope we won't start all over!

7-zip 3.08.03 beta is out!

http://www.7-zip.org/dl/7z30803b.exe
User avatar
lzvk25
Member
Member
Posts: 183
Joined: 2003-02-09, 04:28 UTC
Location: Collierville, TN

Post by *lzvk25 »

Good news it has been fixed with the new beta !!!

:D
Memo to Boss : No TC, No Work
User avatar
ManDark
Junior Member
Junior Member
Posts: 47
Joined: 2004-01-24, 12:39 UTC
Location: Slovakia
Contact:

Post by *ManDark »

And what about the new version

http://belnet.dl.sourceforge.net/sourceforge/sevenzip/7z313.exe

Is she working with the MultiARC v1.12 or is there a problem
I love Total Commander
It's a COOOL Manager and Fully configurable
My actual version is v6.52 -changed
Post Reply