Questions tagged [archive]

A location or file that stores other files or data, normally accompanied by compression, encryption, sorting or organizing.

An archive is a place that you can store files or other data for storage or for sorting.

Archives can be a number of things such as a Database or a Zip or Cab file.

Normally the archive that you place the files or data into, gives you some sort of functionality such as encryption, compression or data querying functionality.

2445 questions
22
votes
1 answer

How can I extract a multi-part rar file in linux?

I need to extract a multi part rar archive in the form of archive_1.exe archive_2.rar archive_3.rar. How can I do this in linux? I have tried unrar and 7z but unrar x archive_1.exe is extracting files with the reverse path format (eg. \file\dir) and…
user3706987
  • 221
  • 1
  • 2
  • 3
21
votes
3 answers

Google chat server archive (XEP-0136)

I am looking for a way how to retrieve archive of chat messages from google server via using XEP-0136 standard, but I got these results just trying to ask for the feature. Request: Response:
Vanya
  • 4,973
  • 5
  • 32
  • 57
20
votes
5 answers

Xcode Error - Profile doesn't include the com.apple.developer.icloud-container-environment entitlement

We have enabled iCloud capability in our application and enabled below services, Key-value storage iCloud Documents But while trying to export the build through the archive, it's throwing me the below error, Profile doesn't include the…
Bappaditya
  • 9,494
  • 3
  • 20
  • 29
20
votes
2 answers

Xcode organizer copy failed

Anybody faced this issue while exporting iOS app to tester team?
BharathBob
  • 699
  • 5
  • 11
19
votes
2 answers

XCode 4 Archiving Error: one or more PCH files were found, but they were invalid

Documenting an odd XCode 4 Error here for future reference: "one or more PCH files were found, but they were invalid" Cleaning does not fix the issue, you need to clean the Build Folder by holding down ALT and selecting Product from the menu. The…
The Rat
  • 955
  • 7
  • 10
18
votes
5 answers

How to save a web page snapshot with all its elements (css, js, images, ...) into one file

How is it possible to programmatically save a web page snapshot with all its elements (css, js, images, ...) into one file? I need to archive some web pages regularly. However, just saving their HTML code is useless - not only because of images…
Vacilando
  • 2,819
  • 2
  • 30
  • 27
18
votes
1 answer

How is a .zip compressed archive structured?

I'm looking into how popular compression algorithms work so I could possibly implement my own zip archiver. Are there any resources about how exactly zip works? How is a .zip compressed archive structured?
liamzebedee
  • 14,010
  • 21
  • 72
  • 118
18
votes
1 answer

Archive repository for Debian Squeeze

I still use Debian Squeeze, and since this release has been archived (Feb 29, 2016) I use the archives repositories on archive.debian.org deb http://archive.debian.org/debian-archive/debian/ squeeze main contrib non-free deb…
Leahkim
  • 343
  • 1
  • 2
  • 11
17
votes
6 answers

Compressing text before storing it in the database

I need to store a very big amount of text in mysql database. It will be millions of records with field type LONGTEXT and database size will be huge. So, I want ask, if there is a safe way to compress text before storing it into TEXT field to save…
Silver Light
  • 44,202
  • 36
  • 123
  • 164
17
votes
1 answer

Pros and Cons of the MySQL Archive Storage Engine?

For a website I am developing, I am going to store user activity information (like Facebook) and HTTP requests to the server into a MySQL database. I was going to use InnoDB as the storage engine, however, I briefly read about the Archive storage…
GateKiller
  • 74,180
  • 73
  • 171
  • 204
17
votes
2 answers

archive error: "xxx-master.dia:1:1: Could not read serialized diagnostics file: Cannot Load File: Failed to open diagnostics file"

I upgraded my xcode to 11.4 yesterday, now I can not archive my SwiftUI code to submit appstore, because error: "error: Segmentation fault: 11", "xxx-master.dia:1:1: Could not read serialized diagnostics file: Cannot Load File: Failed to open…
foolbear
  • 726
  • 1
  • 7
  • 19
17
votes
1 answer

How to include all objects of an archive in a shared object?

When compiling our project, we create several archives (static libraries), say liby.a and libz.a that each contains an object file defining a function y_function() and z_function(). Then, these archives are joined in a shared object, say libyz.so,…
Didier Trosset
  • 36,376
  • 13
  • 83
  • 122
17
votes
5 answers

WooCommerce: Display ONLY on-sale products in Shop

I need to create a products archive page (usually the Shop page in WooCommerce) but displays ONLY the ON SALE products. Basically it should use the same template layout as that in the archive-product.php. There will be a link in the main menu that…
Giraldi
  • 16,451
  • 6
  • 33
  • 52
17
votes
8 answers

How to do a "Save As" in vba code, saving my current Excel workbook with datestamp?

I have an Excel Workbook that on form button click I want to save a copy of the workbook with the filename being the current date. I keep trying the the following ActiveWorkbook.SaveAs ("\\filePath\FormFlow To MSExcel\" & Left(Now(), 10)) but am…
Analytic Lunatic
  • 3,853
  • 22
  • 78
  • 120
16
votes
1 answer

golang unzip Response.Body

I wrote a little web crawler and had known that the Response is a zip file. In my limited experience with golang programing, I only know how to unzip a existing file. Can I unzip the Response.Body in memory without saving it in hard disk in advance?
Minusy
  • 267
  • 1
  • 3
  • 11