Szum123321 / textile_backup

Backup Mod for Fabric
https://www.curseforge.com/minecraft/mc-mods/textile-backup
GNU General Public License v3.0
90 stars 29 forks source link

Server backup files are only 1KB when trying to do a manual backup #119

Open KingFishy492 opened 1 year ago

KingFishy492 commented 1 year ago

Hi there this is a modpack running 1.19.2 When i try and do a manual backup i get the below server logs https://mclo.gs/6uQwSfK (this is all the way at the bottom of the page after server start up) It seems to work fine when the server is shut down via /stop it creates a server file with substance to it as seen here

image

[20:58:49] [pool-10-thread-1/INFO]: [Textile Backup] Starting backup [20:58:49] [pool-10-thread-1/ERROR]: [Textile Backup] An exception occurred! java.util.concurrent.ExecutionException: java.io.IOException: The process cannot access the file because another process has locked a portion of the file at java.util.concurrent.FutureTask.report(FutureTask.java:122) ~[?:?] at java.util.concurrent.FutureTask.get(FutureTask.java:191) ~[?:?] at org.apache.commons.compress.archivers.zip.ParallelScatterZipCreator.writeTo(ParallelScatterZipCreator.java:281) ~[org_apache_commons_commons-compress-1.21-40cd7554b922ede2.jar:?] at net.szum123321.textile_backup.core.create.compressors.ParallelZipCompressor.finish(ParallelZipCompressor.java:92) ~[textile_backup-2.5.0-1.19.jar:?] at net.szum123321.textile_backup.core.create.compressors.AbstractCompressor.createArchive(AbstractCompressor.java:64) [textile_backup-2.5.0-1.19.jar:?] at net.szum123321.textile_backup.core.create.MakeBackupRunnable.run(MakeBackupRunnable.java:91) [textile_backup-2.5.0-1.19.jar:?] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) [?:?] at java.util.concurrent.FutureTask.run(FutureTask.java:264) [?:?] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) [?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) [?:?] at java.lang.Thread.run(Thread.java:833) [?:?] Caused by: java.io.IOException: The process cannot access the file because another process has locked a portion of the file at sun.nio.ch.FileDispatcherImpl.read0(Native Method) ~[?:?] at sun.nio.ch.FileDispatcherImpl.read(FileDispatcherImpl.java:54) ~[?:?] at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:330) ~[?:?] at sun.nio.ch.IOUtil.read(IOUtil.java:296) ~[?:?] at sun.nio.ch.IOUtil.read(IOUtil.java:273) ~[?:?] at sun.nio.ch.FileChannelImpl.read(FileChannelImpl.java:232) ~[?:?] at sun.nio.ch.ChannelInputStream.read(ChannelInputStream.java:65) ~[?:?] at sun.nio.ch.ChannelInputStream.read(ChannelInputStream.java:107) ~[?:?] at sun.nio.ch.ChannelInputStream.read(ChannelInputStream.java:101) ~[?:?] at org.apache.commons.compress.archivers.zip.StreamCompressor.deflate(StreamCompressor.java:183) ~[org_apache_commons_commons-compress-1.21-40cd7554b922ede2.jar:?] at org.apache.commons.compress.archivers.zip.ScatterZipOutputStream.addArchiveEntry(ScatterZipOutputStream.java:100) ~[org_apache_commons_commons-compress-1.21-40cd7554b922ede2.jar:?] at org.apache.commons.compress.archivers.zip.ParallelScatterZipCreator.lambda$createCallable$1(ParallelScatterZipCreator.java:229) ~[org_apache_commons_commons-compress-1.21-40cd7554b922ede2.jar:?] ... 4 more [20:58:49] [pool-10-thread-1/INFO]: [Textile Backup] Compression took: 00.302 seconds. [20:58:49] [pool-10-thread-1/INFO]: [Textile Backup] Done!

Szum123321 commented 1 year ago

It looks as though some weird race condition has ocurred. I don't think i've seen this error before. Please provide following inforation: TxB Config List of other mods Operating system, java version. (If you use third party hosting provider albo include it) Any additional errors and messages from txb

KingFishy492 commented 1 year ago

TxB Config:```

{ / Should every world have its own backup folder? / "perWorldBackup": true, / Time between automatic backups in seconds When set to 0 backups will not be performed automatically / "backupInterval": 3600, / Delay in seconds between typing-in /backup restore and it actually starting / "restoreDelay": 30, / Should backups be done even if there are no players? / "doBackupsOnEmptyServer": false, / Should backup be made on server shutdown? / "shutdownBackup": true, / Should world be backed up before restoring a backup? / "backupOldWorlds": true, / A path to the backup folder / "backupDirectoryPath": "backup/", / This setting allows you to exclude files form being backed-up. Be very careful when setting it, as it is easy corrupt your world! / "fileBlacklist": [], / Should backups be deleted after being restored? / "deleteOldBackupAfterRestore": true, / Maximum number of backups to keep. If set to 0 then no backup will be deleted based their amount / "backupsToKeep": 10, / Maximum age of backups to keep in seconds. If set to 0 then backups will not be deleted based their age / "maxAge": 0, / Maximum size of backup folder in kilo bytes (1024). If set to 0 then backups will not be deleted / "maxSize": 0, / Compression level 0 - 9 Only affects zip compression. / "compression": 7, / Limit how many cores can be used for compression. 0 means that all available cores will be used / "compressionCoreCountLimit": 0, / Available formats are: ZIP - normal zip archive using standard deflate compression GZIP - tar.gz using gzip compression BZIP2 - tar.bz2 archive using bzip2 compression LZMA - tar.xz using lzma compression TAR - .tar with no compression / "format": "ZIP", / Minimal permission level required to run commands / "permissionLevel": 4, / Player on singleplayer is always allowed to run command. Warning! On lan party everyone will be allowed to run it. / "alwaysSingleplayerAllowed": true, / Players allowed to run backup commands without sufficient permission level / "playerWhitelist": [], / Players banned from running backup commands besides their sufficient permission level / "playerBlacklist": [], / Announce to ALL players when backup starts / "broadcastBackupStart": true, / Announce to ALL players when backup finishes / "broadcastBackupDone": true, / Format of date&time used to name backup files. Remember not to use '#' symbol or any other character that is not allowed by your operating system such as: ':', '\', etc... For more info: https://docs.oracle.com/javase/8/docs/api/java/time/format/DateTimeFormatter.html / "dateTimeFormat": "yyyy.MM.dd_HH-mm-ss"


Operating system Windows 10 Pro Virtual Machine running on my personal Unraid Server
java: Java(TM) SE Development Kit 17.0.7 (64-Bit)

List of all the mods:
09/05/2023  05:36 pm            11,117 advdebug-2.3.0.jar
09/05/2023  05:36 pm         4,948,502 adventurez-1.4.18.jar
09/05/2023  05:36 pm        10,198,308 ad_astra-fabric-1.19.2-1.12.6.jar
09/05/2023  05:36 pm           204,556 AE2WTLib-12.8.5.jar
09/05/2023  05:36 pm           179,847 almostunified-fabric-1.19.2-0.4.4.jar
09/05/2023  05:36 pm            38,323 alternate-current-mc1.19-1.5.0.jar
09/05/2023  05:36 pm           134,005 animal_feeding_trough-1.0.3+1.19.2.jar
09/05/2023  05:36 pm         1,543,486 another_furniture-fabric-2.1.2-1.19.2.jar
09/05/2023  05:36 pm           242,135 Applied-Botanics-1.4.3.jar
09/05/2023  05:36 pm        10,140,917 appliedenergistics2-fabric-12.9.3.jar
09/05/2023  05:36 pm         1,675,488 architects-palette-fabric-2.1.1.jar
09/05/2023  05:36 pm           563,704 architectury-6.5.82-fabric.jar
09/05/2023  05:36 pm         1,892,797 archon-0.5.0.jar
09/05/2023  05:36 pm           599,880 artifacts-7.1.1+fabric.jar
09/05/2023  05:36 pm            17,525 AttributeFix-Fabric-1.19.2-17.2.6.jar
09/05/2023  05:36 pm           404,400 auto-workstations-[MC1.19]-v1.0-SNAPSHOT-19.jar
09/05/2023  05:36 pm           245,894 autoconfig1u-3.4.0.jar
09/05/2023  05:36 pm            40,355 auudio_fabric_1.0.3_MC_1.19.jar
09/05/2023  05:36 pm           330,407 balm-fabric-1.19.2-4.5.7.jar
09/05/2023  05:36 pm           104,271 BarteringStation-v4.0.3-1.19.2-Fabric.jar
09/05/2023  05:36 pm         1,892,520 bclib-2.1.6.jar
09/05/2023  05:36 pm           337,246 BeaconOverhaul-1.7.3+1.19.2.jar
09/05/2023  05:36 pm           456,016 besmirchment-1.19.2-10.jar
09/05/2023  05:36 pm        80,547,452 better-end-2.1.4.jar
09/05/2023  05:36 pm        21,952,267 better-nether-7.1.3.jar
09/05/2023  05:36 pm           753,950 bettercombat-fabric-1.7.0+1.19.jar
09/05/2023  05:36 pm            18,852 BetterCompatibilityChecker-Fabric-2.0.2-build.16+mc1.19.1.jar
09/05/2023  05:36 pm            21,739 betterfpsdist-fabric-1.19-2.4.jar
09/05/2023  05:36 pm           131,698 betterlily.jar
09/05/2023  05:36 pm         2,658,068 betterstats-2.6.1+1.19.2.jar
09/05/2023  05:36 pm            86,311 BetterTridents-v4.0.2-1.19.2-Fabric.jar
09/05/2023  05:36 pm         5,538,584 bewitchment-1.19-6.jar
09/05/2023  05:36 pm         1,842,850 bewitchmentplus-1.19-10.jar
09/05/2023  05:36 pm           218,266 blast-1.10.jar
09/05/2023  05:36 pm         6,546,166 blockus-2.5.10+1.19.2.jar
09/05/2023  05:36 pm             6,867 BoatBreakFix-Universal-1.0.11.jar
09/05/2023  05:36 pm         2,709,532 BOMD-1.4.6-1.19.2.jar
09/05/2023  05:36 pm           569,293 BoneZone-Fabric-1.19.2-1.0.3.jar
09/05/2023  05:36 pm           294,279 Bookshelf-Fabric-1.19.2-16.2.18.jar
09/05/2023  05:36 pm        12,002,370 Botania-1.19.2-438-FABRIC.jar
09/05/2023  05:36 pm           808,241 BotanyPots-Fabric-1.19.2-9.0.33.jar
09/05/2023  05:36 pm           143,592 BotanyTrees-Fabric-1.19.2-5.0.8.jar
09/05/2023  05:36 pm           136,409 botarium-fabric-1.19.2-1.8.2.jar
09/05/2023  05:36 pm           603,432 BountifulFabric-4.0.0.jar
09/05/2023  05:36 pm             6,574 BowInfinityFix-1.19.x-fabric-2.5.0.jar
09/05/2023  05:36 pm           261,157 brewinandchewin-fabric-1.0.6+1.19.2.jar
09/05/2023  05:36 pm           368,325 BuildingWands-mc1.19.2-2.6.6-release-fabric.jar
09/05/2023  05:36 pm            19,589 bwncr-fabric-1.19.2-3.14.1.jar
09/05/2023  05:36 pm         8,949,494 bygonenether-1.19-1.2.2.jar
09/05/2023  05:36 pm           482,838 capsey-archeology-1.19.2-0.2.5.jar
09/05/2023  05:36 pm           334,761 cardinal-components-api-5.0.2.jar
09/05/2023  05:36 pm           382,579 carryon-fabric-1.19.2-2.0.5.11.jar
09/05/2023  05:36 pm         2,978,418 cc-restitched-1.101.2.jar
09/05/2023  05:36 pm           193,977 chalk-2.1.0+1.19.jar
09/05/2023  05:36 pm         3,968,760 charm-fabric-1.19.2-4.4.4.jar
09/05/2023  05:36 pm            54,301 charmofundying-fabric-6.2.0+1.19.2.jar
09/05/2023  05:36 pm           102,529 chefs-delight-1.0.3-fabric-1.19.2.jar
09/05/2023  05:36 pm         6,708,923 Chimes-1.1.4-1.19.2-Fabric.jar
09/05/2023  05:36 pm         2,014,737 chisels-and-bits-fabric-1.3.135.jar
09/05/2023  05:36 pm            14,389 chunksending-fabric-1.19-2.5.jar
09/05/2023  05:36 pm           106,332 cloth-api-4.0.65.jar
09/05/2023  05:36 pm         1,141,796 cloth-config-8.2.88-fabric.jar
09/05/2023  05:36 pm            20,377 Clumps-fabric-1.19.2-9.0.0+14.jar
09/05/2023  05:36 pm           578,981 collective-1.19.2-6.53.jar
09/05/2023  05:36 pm           621,358 ColorfulAzaleas-fabric-1.19.2-2.2.2.jar
09/05/2023  05:36 pm           173,599 combatroll-fabric-1.1.5+1.19.jar
09/05/2023  05:36 pm           668,703 comforts-fabric-6.0.4+1.19.2.jar
09/05/2023  11:26 pm         5,620,671 commandaliases-1.0.0+mc1.19.2-build.58.jar
09/05/2023  05:36 pm            38,103 Companion-1.19.2-fabric-3.2.1.jar
01/05/2023  09:37 am           486,182 configured-fabric-2.0.0-1.19.2.jar
09/05/2023  05:36 pm           142,370 connectivity-fabric-1.19.2-4.2.jar
09/05/2023  05:36 pm         3,804,632 CraftTweaker-fabric-1.19.2-10.1.43.jar
09/05/2023  05:36 pm            98,889 crawl-0.11.1.jar
09/05/2023  05:36 pm        18,062,854 create-fabric-0.5.0.i-1003+1.19.2.jar
09/05/2023  05:36 pm           932,706 createaddition-fabric+1.19.2-20230508b.jar
09/05/2023  05:36 pm           973,793 CreativeCore_FABRIC_v2.9.3_mc1.19.2.jar
09/05/2023  05:36 pm         1,040,817 crittersandcompanions-fabric-1.19.2-1.0.3.jar
09/05/2023  05:36 pm         2,904,375 Croptopia-1.19.2-FABRIC-2.2.2.jar
09/05/2023  05:36 pm           119,573 croptopia-chocolaterie-1.2-1.19.jar
09/05/2023  05:36 pm         3,167,505 ctov-3.2.0.jar
09/05/2023  05:36 pm           289,003 cultural-delights-fabric-0.14.9+1.19.2.jar
09/05/2023  05:36 pm            34,633 DarkPaintings-Fabric-1.19.2-13.1.5.jar
09/05/2023  05:36 pm           177,736 DarkUtilities-Fabric-1.19.2-13.1.7.jar
09/05/2023  05:36 pm           112,757 dataattributes-1.4.4+1.19.2.jar
09/05/2023  05:36 pm         1,155,189 dawn-3.5.0.jar
09/05/2023  05:36 pm           291,413 Debugify-2.8.0.jar
09/05/2023  05:36 pm           506,697 Decorative Blocks-fabric-1.19.2-3.0.0.jar
09/05/2023  05:36 pm        19,367,092 deeperdarker-fabric-1.1.6-fabric.jar
09/05/2023  05:36 pm           103,407 deepslatecutting-fabric-1.5.0.jar
09/05/2023  06:12 pm             8,104 DEUF_Refabricated-MC1.19.2-1.0.0.jar
09/05/2023  05:36 pm            91,126 DiagonalFences-v4.2.3-1.19.2-Fabric.jar
09/05/2023  05:36 pm            48,078 Display Case-fabric-1.19-1.0.3.jar
09/05/2023  05:36 pm           324,029 do-a-barrel-roll-2.6.2+1.19.2-fabric.jar
09/05/2023  05:36 pm            37,739 dragonfight-fabric-1.19.2-2.8.jar
09/05/2023  05:36 pm           206,384 dragonloot-1.1.2.jar
09/05/2023  05:36 pm           182,223 dummmmmmy-1.19.2-1.7.1-fabric.jar
09/05/2023  05:36 pm         7,170,788 DungeonsArise-1.19.2-2.1.54-fabric.jar
09/05/2023  05:36 pm           111,806 dungeon_difficulty-2.0.3+1.19.jar
09/05/2023  05:36 pm           140,725 EasyAnvils-v4.0.11-1.19.2-Fabric.jar
09/05/2023  05:36 pm            94,394 EasyMagic-v4.3.3-1.19.2-Fabric.jar
09/05/2023  05:36 pm         2,796,654 ecologics-fabric-1.19.2-2.1.11.jar
09/05/2023  05:36 pm        20,351,140 eden-ring-0.6.4.jar
09/05/2023  05:36 pm           838,857 eldritch-mobs-1.12.11.jar
09/05/2023  05:36 pm            50,903 elytraslot-fabric-6.1.1+1.19.2.jar
09/05/2023  05:36 pm           449,760 end-goblin-traders-1.5.2.jar
09/05/2023  11:18 pm             1,751 EssentialCommands.properties
07/05/2023  02:56 pm         1,133,247 essential_commands-0.33.0-mc1.19.2.jar
09/05/2023  05:36 pm           251,325 expandeddelight-0.2.5.2.jar
09/05/2023  05:36 pm           168,631 explorify-fabric-1.19-1.3.0.jar
09/05/2023  05:36 pm            22,845 extended-armor-bars-1.2.1.jar
09/05/2023  05:36 pm         1,882,121 fabric-api-0.76.0+1.19.2.jar
09/05/2023  05:36 pm           130,734 fabric-end-remastered-5.2.0.jar
09/05/2023  05:36 pm            79,980 fabric-experiencebugfix-1.19-19.jar
09/05/2023  05:36 pm         6,578,017 fabric-language-kotlin-1.9.4+kotlin.1.8.21.jar
09/05/2023  05:36 pm           417,884 fabric-seasons-2.0.2+1.19.jar
09/05/2023  05:36 pm            50,831 fabric-seasons-croptopia-2.2.2-compat-1.0.jar
09/05/2023  05:36 pm           340,161 fabric-seasons-extras-1.1.1-BETA+1.19.jar
09/05/2023  05:36 pm           713,792 fabric-the-lost-castle-1.0.0.jar
09/05/2023  05:36 pm         2,705,516 farmers-delight-fabric-1.19.X-1.3.9.jar
09/05/2023  05:36 pm           109,663 farmersknives-2.4.jar
09/05/2023  05:36 pm         2,128,455 Farmersrespite-Fabric-2.2.4.jar
09/05/2023  05:36 pm           373,476 farsight-fabric-1.19-2.4.jar
09/05/2023  05:36 pm            16,190 FauxCustomEntityData-fabric-1.19.2-2.0.2.jar
09/05/2023  05:36 pm           119,275 ferritecore-5.0.3-fabric.jar
09/05/2023  05:36 pm         6,354,369 Fertilizer 1.19 Forge v.1.2.jar
09/05/2023  05:36 pm           891,416 fish_of_thieves-mc1.19.2-v2.2.3-fabric.jar
09/05/2023  05:36 pm           117,787 food-plus-1.4.1.jar
09/05/2023  05:36 pm           439,991 ForgeConfigAPIPort-v4.2.11-1.19.2-Fabric.jar
09/05/2023  05:36 pm         1,404,563 frame-0.26.1+1.19-fabric.jar
09/05/2023  05:36 pm         2,401,373 friendsandfoes-fabric-mc1.19.2-1.8.1.jar
09/05/2023  05:36 pm         1,632,011 frostiful-0.5.3.jar
09/05/2023  05:36 pm           589,527 ftb-library-fabric-1902.3.18-build.208.jar
09/05/2023  05:36 pm         1,105,567 ftb-quests-fabric-1902.4.15-build.228.jar
09/05/2023  05:36 pm           212,915 ftb-teams-fabric-1902.2.13-build.100.jar
09/05/2023  05:36 pm         3,619,195 geckolib-fabric-1.19-3.1.40.jar
09/05/2023  05:36 pm           321,607 go-fish-1.6.0-1.19.1.jar
09/05/2023  05:36 pm           460,589 goblintraders-fabric-1.8.1-1.19.2.jar
09/05/2023  05:36 pm           619,176 goodall-1.2.0-fabric.jar
09/05/2023  05:36 pm            49,115 GottschCore-fabric-mc1.19.2-2.2.0.jar
09/05/2023  05:36 pm           243,361 guard-villagers-fabric-1.19.2-1.1.2.jar
09/05/2023  05:36 pm         2,494,952 handcrafted-fabric-1.19.2-2.0.6.jar
09/05/2023  05:36 pm         1,756,534 hexal-fabric-1.19.2-0.2.14.jar
09/05/2023  05:36 pm         3,017,907 hexcasting-fabric-1.19.2-0.10.3.jar
09/05/2023  05:36 pm           148,120 highlight-1.0.0-fabric.jar
09/05/2023  05:36 pm            78,046 HorseExpert-v4.0.0-1.19.2-Fabric.jar
09/05/2023  05:36 pm           188,847 icarus-1.14.jar
09/05/2023  05:36 pm            79,522 Iceberg-1.19.1-fabric-1.0.46.jar
09/05/2023  05:36 pm         1,225,096 immersive_armors-1.5.5+1.19.2-fabric.jar
09/05/2023  05:36 pm           266,265 impaled-1.1.4.jar
09/05/2023  05:36 pm         5,304,343 indrev-1.15.1-BETA.jar
09/05/2023  05:36 pm            14,905 IngredientExtensionAPI-fabric-1.19.2-3.0.6.jar
09/05/2023  05:36 pm           153,120 inmis-2.7.1-1.19.jar
09/05/2023  05:36 pm            34,733 inmisaddon-1.0.4.jar
09/05/2023  05:36 pm           354,663 ironchests-3.1.1-fabric.jar
09/05/2023  05:36 pm           113,524 item-filters-fabric-1902.2.9-build.46.jar
09/05/2023  05:36 pm            17,416 Item_Obliterator-Fabric_Quilt-1.2.0.jar
09/05/2023  05:36 pm           436,662 Jade-1.19.1-fabric-8.7.3.jar
09/05/2023  05:36 pm            66,098 jamlib-0.6.0+1.19.jar
09/05/2023  05:36 pm            21,644 jumpoverfences-fabric-1.19.2-1.1.0.jar
09/05/2023  05:36 pm           408,639 Kambrik-4.0-1.19.2.jar
09/05/2023  05:36 pm           369,299 Kiwi-1.19.1-fabric-8.3.3.jar
09/05/2023  05:36 pm           284,843 kleeslabs-fabric-1.19.2-12.3.0.jar
09/05/2023  05:36 pm           175,000 krypton-0.2.1.jar
09/05/2023  05:36 pm           105,432 labels-1.19.2-1.9-fabric.jar
09/05/2023  05:36 pm            45,708 LeavesBeGone-v4.0.1-1.19.2-Fabric.jar
09/05/2023  05:36 pm            87,807 letmedespawn-1.18.x-1.19.x-fabric-1.0.2.jar
09/05/2023  05:36 pm           340,805 lib39-1.4.2.jar
12/05/2023  03:12 pm                 0 list.txt
09/05/2023  05:36 pm           639,001 lithium-fabric-mc1.19.2-0.11.1.jar
09/05/2023  05:36 pm           126,944 Log-Begone-Fabric-1.19.x-1.0.6.jar
09/05/2023  05:36 pm            29,735 lootintegrations-fabric-1.19.3-3.1.jar
09/05/2023  05:36 pm           347,719 lootr-1.19-0.4.25.64.jar
10/05/2023  05:45 pm    <DIR>          luckperms
09/05/2023  10:14 pm         1,523,423 LuckPerms-Fabric-5.4.46.jar
09/05/2023  05:36 pm           139,760 MageFlame-fabric-mc1.19.2-v1.5.0.jar
09/05/2023  05:36 pm            93,209 MagnumTorch-v4.2.1-1.19.2-Fabric.jar
09/05/2023  05:36 pm         4,787,308 meadow-1.1.2-1.19.jar
09/05/2023  05:36 pm            49,945 Measurements-fabric-1.19.2-1.3.1.jar
09/05/2023  05:36 pm           146,933 memoryleakfix-fabric-1.17+-1.0.0.jar
09/05/2023  05:36 pm            66,328 midnightlib-fabric-1.0.0.jar
09/05/2023  05:36 pm         2,629,916 minecells-1.4.3.jar
09/05/2023  05:36 pm           286,564 minelib11-0.1.3+1.19.jar
09/05/2023  05:36 pm            36,039 mixintrace-1.1.1+1.17.jar
09/05/2023  05:36 pm           584,136 Mo-Glass-1.6.1-MC1.19.2.jar
09/05/2023  05:36 pm           285,457 mobscarecrow-2.2.1-1.19.1.jar
09/05/2023  05:36 pm           459,669 modernfix-mc1.19.2-fabric-3.5.2.jar
09/05/2023  05:36 pm            63,466 modpack-update-checker-1.19.2-fabric-0.5.1-release.jar
09/05/2023  05:36 pm           834,953 moonlight-1.19.2-2.2.31-fabric.jar
09/05/2023  05:36 pm         2,088,494 more-geodes-1.7+1.19.jar
09/05/2023  05:36 pm            51,044 more-totems-mod-2.12.0.jar
09/05/2023  05:36 pm         1,249,250 morevillagers-fabric-1.19-4.0.2.jar
09/05/2023  05:36 pm         4,360,430 mythic-mounts-1.19.2-7.2.jar
09/05/2023  05:36 pm           250,234 mythicupgrades-1.5.1+1.19.2.jar
09/05/2023  05:36 pm         3,716,711 naturalist-fabric-3.0.2-1.19.2.jar
09/05/2023  05:36 pm           225,109 NaturesCompass-1.19.2-2.1.0-fabric.jar
09/05/2023  05:36 pm           215,002 netherportalfix-fabric-1.19-10.0.1.jar
09/05/2023  05:36 pm           790,756 NethersDelight-1.0.1.jar
12/05/2023  03:11 pm                 0 New Text Document.txt
09/05/2023  05:36 pm            41,099 NightConfigFixes-v4.0.7-1.19.2-Fabric.jar
09/05/2023  05:36 pm           533,396 NoChatReports-FABRIC-1.19.2-v1.13.12.jar
09/05/2023  05:36 pm           495,963 observable-3.3.1.jar
09/05/2023  05:36 pm        37,519,929 Oh_The_Biomes_You'll_Go-fabric-1.19.2-2.0.0.13.jar
09/05/2023  05:36 pm           158,825 onsoulfire-1.19-2.jar
09/05/2023  05:36 pm            59,346 opac-fabric-create-support-1.1.1.jar
09/05/2023  05:36 pm         1,299,841 open-parties-and-claims-fabric-1.19.2-0.17.3.jar
09/05/2023  05:36 pm           780,597 owo-lib-0.9.3+1.19.jar
09/05/2023  05:36 pm           166,499 oxidized-1.7.2.jar
09/05/2023  05:36 pm           176,705 Paintings-fabric-1.19.2-10.2.4.0.jar
09/05/2023  05:36 pm         1,040,217 paladins-fabric-0.9.1+1.19.2.jar
09/05/2023  05:36 pm        44,611,383 paradise-lost-2.1.0-beta+1.19.2.jar
09/05/2023  05:36 pm           851,784 Patchouli-1.19.2-77-FABRIC.jar
09/05/2023  05:36 pm           685,382 paucal-fabric-1.19.2-0.5.0.jar
09/05/2023  05:36 pm           102,802 Paxi-1.19.2-Fabric-3.0.1.jar
09/05/2023  05:36 pm           465,441 Pehkui-3.7.3+1.14.4-1.20.jar
09/05/2023  05:36 pm            10,991 PigPen-Fabric-1.19.2-11.1.2.jar
09/05/2023  05:36 pm           180,871 player-animation-lib-fabric-1.0.2.jar
09/05/2023  05:36 pm           537,625 playerex-3.5.2.jar
09/05/2023  05:36 pm           185,903 plushie-mod-1.2.jar
09/05/2023  05:36 pm           629,377 polymorph-fabric-0.46.1+1.19.2.jar
09/05/2023  05:36 pm         1,953,301 Powah-4.0.10.jar
09/05/2023  05:36 pm            57,198 Prism-1.19.2-fabric-1.0.3.jar
09/05/2023  05:36 pm           512,529 probablychests-0.5.5-1.19.2.jar
09/05/2023  05:36 pm         1,580,812 Professions-1.19.2-FABRIC-1.0.4.jar
09/05/2023  05:36 pm           144,040 ProfessionsIntegration-1.19.2-FABRIC-1.0.4.jar
09/05/2023  05:36 pm            98,094 projectile_damage-fabric-3.1.0+1.19.jar
09/05/2023  05:36 pm         1,062,671 promenade-2.7.1.jar
09/05/2023  05:36 pm         2,620,812 Prominent-FABRIC-MC1.19.2-1.1.0.jar
09/05/2023  05:36 pm           437,098 Public GUI Announcement-fabric-1.19.2-4.3.3.jar
09/05/2023  05:36 pm           525,817 PuzzlesLib-v4.4.0-1.19.2-Fabric.jar
09/05/2023  05:36 pm         1,035,969 quartz-elevator-2.1.5+1.19.jar
09/05/2023  05:36 pm            40,511 rare-ice-0.5.0.jar
09/05/2023  05:36 pm            25,501 reacharound+1.19-1.1.2.jar
09/05/2023  05:36 pm           581,185 RebornCore-5.4.0.jar
09/05/2023  05:36 pm         1,207,271 red-bits-1.14.1.jar
09/05/2023  05:36 pm           303,433 relicex-3.3.1+1.19.2.jar
09/05/2023  05:36 pm         7,981,798 repurposed_structures_fabric-6.3.24+1.19.2.jar
09/05/2023  05:36 pm            81,639 rer-2.6.0.jar
09/05/2023  05:36 pm           128,481 resourcefulconfig-fabric-1.19.2-1.0.20.jar
09/05/2023  05:36 pm           229,931 resourcefullib-fabric-1.19.2-1.1.24.jar
09/05/2023  05:36 pm           269,493 respawnablepets-1.19-2.jar
09/05/2023  05:36 pm           147,728 revelationary-1.3.5.jar
09/05/2023  05:36 pm            62,934 right-click-harvest-3.1.0+1.19-1.19.2.jar
09/05/2023  05:36 pm            64,111 riverredux-0.3.0+fabric.jar
09/05/2023  05:36 pm         1,386,673 rottencreatures-fabric-1.19.2-1.0.1.jar
09/05/2023  05:36 pm         2,204,238 RoughlyEnoughItems-9.1.595.jar
09/05/2023  05:36 pm            59,044 RoughlyEnoughLootTables-1.19-1.0.jar
09/05/2023  05:36 pm            20,729 RoughlyEnoughProfessions-fabric-1.19.2-1.1.4.jar
09/05/2023  05:36 pm            49,313 Runelic-Fabric-1.19.2-14.1.4.jar
09/05/2023  05:36 pm           258,094 runes-fabric-0.9.7+1.19.jar
09/05/2023  05:36 pm            51,226 ServerBrowser-1.19.2-FABRIC-1.0.4.jar
09/05/2023  05:36 pm        32,098,072 simplyswords-fabric-1.46.0-1.19.2.jar
09/05/2023  05:36 pm           246,319 SkyVillages-1.0.2.1-1.19.x-fabric.jar
09/05/2023  05:36 pm         1,244,372 smallships-fabric-1.19.X-2.0.0a1.1.1.jar
09/05/2023  05:36 pm            47,869 smarterfarmers-1.19.2-1.7.2-fabric.jar
09/05/2023  05:36 pm            16,072 smoothchunk-fabric-1.19.1-2.0.jar
09/05/2023  05:36 pm           233,325 snow-under-trees-fabric-1.0.0+1.19.2.jar
09/05/2023  05:36 pm           116,501 Sod-22.10.13-MC1.17x_to_1.19.x.jar
09/05/2023  05:36 pm         5,139,094 soulslike-weaponry-0.9.9.3.jar
09/05/2023  05:36 pm           106,368 soundphysics-fabric-1.19.2-1.0.18.jar
09/05/2023  05:36 pm         2,941,997 spark-1.10.37-fabric.jar
09/05/2023  05:36 pm        37,644,431 spectrum-1.6.10-1.19.2-leisure_time.jar
09/05/2023  05:36 pm         3,436,935 spellbladenext-fabric-1.0.20.1.jar
09/05/2023  05:36 pm         1,061,070 spell_engine-fabric-0.9.16+1.19.jar
09/05/2023  05:36 pm           159,566 spell_power-fabric-0.9.11+1.19.jar
09/05/2023  05:36 pm           645,721 spirit-fabric-1.19.2-2.2.6.jar
09/05/2023  05:36 pm           127,465 starlight-1.1.1+fabric.ae22326.jar
09/05/2023  05:36 pm            61,866 starterkit-1.19.2-5.2.jar
09/05/2023  05:36 pm         2,797,531 Steam_Rails-1.2.6+fabric-mc1.19.2.jar
12/05/2023  03:09 pm            12,239 STimber-1.3.1+1.19.3.jar
09/05/2023  05:36 pm         1,102,933 Strawgolem-fabric-1.19.2-2.0.0-beta.5.jar
09/05/2023  05:36 pm         1,383,551 Structory-1.19-v1.3.jar
09/05/2023  05:36 pm           539,067 Structory_Towers_1.19_v1.0.1.jar
09/05/2023  05:36 pm            26,848 structureessentials-fabric-1.19.2-2.7.jar
09/05/2023  05:36 pm        14,366,054 supplementaries-1.19.2-2.3.10-fabric.jar
09/05/2023  05:36 pm         2,868,074 takesapillage-1.19-1.0.4.jar
09/05/2023  05:36 pm            17,915 talkbubbles-1.0.4.jar
09/05/2023  05:36 pm         6,032,436 TechReborn-5.4.0.jar
09/05/2023  05:36 pm           307,148 TerraBlender-fabric-1.19.2-2.0.1.136.jar
11/05/2023  08:47 pm         1,243,430 textile_backup-2.5.0-1.19.jar
09/05/2023  05:36 pm            89,333 thermoo-1.4.jar
09/05/2023  05:36 pm        10,965,613 the_bumblezone_fabric-6.7.19+1.19.2.jar
09/05/2023  05:36 pm         7,367,536 The_Graveyard_2.3_(FABRIC)_for_1.19.2.jar
09/05/2023  05:36 pm           426,809 things-0.3.0+1.19.jar
09/05/2023  05:36 pm           209,669 thonkutil-2.15.4+1.19.jar
09/05/2023  05:36 pm            14,168 ToolStats-Fabric-1.19.2-12.0.2.jar
09/05/2023  05:36 pm         2,822,845 Towns-and-Towers-v.1.10.1-FABRIC-1.19.2.jar
09/05/2023  05:36 pm           655,627 tr-patchouli-2.1.1.jar
09/05/2023  05:36 pm           111,563 TradingPost-v4.2.0-1.19.2-Fabric.jar
09/05/2023  05:36 pm            23,948 transparent-5.1.2+1.19-fabric.jar
09/05/2023  05:36 pm           615,421 travelers-backpack-1.19.2-8.2.19.jar
09/05/2023  05:36 pm           238,556 trinkets-3.4.2.jar
09/05/2023  05:36 pm         2,223,569 trofers-1.19.2-3.1.2.jar
09/05/2023  05:36 pm           849,572 twigs-2.0.0-beta.9+1.19-fabric.jar
09/05/2023  05:36 pm        26,349,744 twilightforest-fabric-1.19.2-4.2.357.jar
09/05/2023  05:36 pm           409,766 variantcraftingtables-3.3.2.jar
09/05/2023  05:36 pm           397,479 veinmining-fabric-1.1.1+1.19.2.jar
09/05/2023  05:36 pm            32,599 villager-hats-1.4.3.jar
09/05/2023  05:36 pm            58,154 villagernames-1.19.2-5.2.jar
09/05/2023  05:36 pm         3,069,224 vinery-1.2.5.jar
09/05/2023  05:36 pm            79,961 VisualWorkbench-v4.2.4-1.19.2-Fabric.jar
09/05/2023  05:36 pm           247,849 vitalize-fabric-1.19.2-1.1.1.jar
09/05/2023  05:36 pm            68,899 voidz-1.0.9.jar
09/05/2023  05:36 pm           619,254 wanderingcollector-1.1.3+mc1.19.jar
09/05/2023  05:36 pm           702,662 wetlands-1.0.2-1.19.2.jar
09/05/2023  05:36 pm           209,171 winterly-0.8.3.jar
09/05/2023  05:36 pm           107,796 WizardEx-1.0.3.jar
09/05/2023  05:36 pm         2,101,146 wizards-fabric-0.9.14+1.19.jar
09/05/2023  05:36 pm            69,832 wolf-armor-compat-1.0.3-1.19.2.jar
09/05/2023  05:36 pm           163,370 wolves-with-armor-1.8.0-1.19.jar
09/05/2023  05:36 pm         3,062,113 woof-3.0.0-1.19.jar
09/05/2023  05:36 pm            94,482 wraith-croptosis-1.5.1.jar
09/05/2023  05:36 pm           367,855 wraith-harvestscythes-2.5.4+mc1.19.2.jar
09/05/2023  05:36 pm           401,874 wraith-waystones-3.0.7+mc1.19.2.jar
09/05/2023  05:36 pm           836,467 XaerosWorldMap_1.30.1_Fabric_1.19.1.jar
09/05/2023  05:36 pm         1,370,802 Xaeros_Minimap_23.4.1_Fabric_1.19.1.jar
09/05/2023  05:36 pm             8,710 xlpackets-1.19.2-4.jar
09/05/2023  05:36 pm           166,402 xp_obelisk-0.4.9-r+1.19.2-Fabric.jar
09/05/2023  05:36 pm           130,373 xp_obelisk_additions-0.1.9-r+1.19.2-Fabric.jar
09/05/2023  05:36 pm           202,452 YetAnotherConfigLib-2.2.0-for-1.19.2.jar
09/05/2023  05:36 pm            19,206 yosbr-0.1.1.jar
09/05/2023  05:36 pm            12,274 YSNS-FFQ-1.0.1.jar
09/05/2023  05:36 pm         1,220,468 YungsApi-1.19.2-Fabric-3.8.9.jar
09/05/2023  05:36 pm         1,132,583 YungsBetterDesertTemples-1.19.2-Fabric-2.2.2.jar
09/05/2023  05:36 pm         1,162,780 YungsBetterDungeons-1.19.2-Fabric-3.2.1.jar
09/05/2023  05:36 pm           278,685 YungsBetterMineshafts-1.19.2-Fabric-3.2.0.jar
09/05/2023  05:36 pm           962,328 YungsBetterNetherFortresses-1.19.2-Fabric-1.0.5.jar
09/05/2023  05:36 pm         1,414,502 YungsBetterOceanMonuments-1.19.2-Fabric-2.1.0.jar
09/05/2023  05:36 pm           426,331 YungsBetterStrongholds-1.19.2-Fabric-3.2.0.jar
09/05/2023  05:36 pm           248,312 YungsBetterWitchHuts-1.19.2-Fabric-2.1.0.jar
09/05/2023  05:36 pm           386,484 YungsBridges-1.19.2-Fabric-3.1.0.jar
09/05/2023  05:36 pm           428,068 YungsExtras-1.19.2-Fabric-3.1.0.jar
             331 File(s)
Szum123321 commented 1 year ago

ohh that's certainly an incompatibility. Try removing command aliases.

KingFishy492 commented 1 year ago

Is there any other way to get them to work together or do i need to either find a diffrent backup plugin or a diffrent command aliase plugin (dont think there is one) ?

Szum123321 commented 1 year ago

Sorry, I dont know of any other solution. From what Got from the developer of command aliases there is no simple workaround

KingFishy492 commented 1 year ago

How come it seems to work fine and tack backups when the server is shutting down then? how come it can do it fine at that stage but not while in sue once an hour into the ZIP?