Codeigniter zip archive passwordCreate an encrypted zip archive with PHPCan not delete the file zip uploaded using CodeIgniter Zip libraryZip archives in node.jsWhat is a good Java library to zip/unzip files?Codeigniter Zip Library how to zip existent fileCreating zip archive in phpHow are zlib, gzip and zip related? What do they have in common and how are they different?CodeIgniter Zip Class: Allowed memory exhaustedCodeigniter Zip LibraryCreate a zip archive with a password
Is there any official lore on the Far Realm?
Is the claim "Employers won't employ people with no 'social media presence'" realistic?
How to prevent z-fighting in OpenSCAD?
Extension of 2-adic valuation to the real numbers
Who was the lone kid in the line of people at the lake at the end of Avengers: Endgame?
Can SQL Server create collisions in system generated constraint names?
Mistake in years of experience in resume?
Rivers without rain
Can I criticise the more senior developers around me for not writing clean code?
I preordered a game on my Xbox while on the home screen of my friend's account. Which of us owns the game?
How can I print the prosodic symbols in LaTeX?
Pulling the rope with one hand is as heavy as with two hands?
How can Republicans who favour free markets, consistently express anger when they don't like the outcome of that choice?
Why was the Spitfire's elliptical wing almost uncopied by other aircraft of World War 2?
What is the most expensive material in the world that could be used to create Pun-Pun's lute?
Minor Revision with suggestion of an alternative proof by reviewer
What term is being referred to with "reflected-sound-of-underground-spirits"?
Checks user level and limit the data before saving it to mongoDB
What causes platform events to fail to be published and should I cater for failed platform event creations?
Function pointer with named arguments?
Dynamic SOQL query relationship with field visibility for Users
What does the integral of a function times a function of a random variable represent, conceptually?
What happens in the secondary winding if there's no spark plug connected?
Overlay of two functions leaves gaps
Codeigniter zip archive password
Create an encrypted zip archive with PHPCan not delete the file zip uploaded using CodeIgniter Zip libraryZip archives in node.jsWhat is a good Java library to zip/unzip files?Codeigniter Zip Library how to zip existent fileCreating zip archive in phpHow are zlib, gzip and zip related? What do they have in common and how are they different?CodeIgniter Zip Class: Allowed memory exhaustedCodeigniter Zip LibraryCreate a zip archive with a password
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I am using Zip helper from CodeIgniter to create archive. Everything works perfect, I want to add password for this zip, can anyone help ?
Thanks
codeigniter zip
add a comment |
I am using Zip helper from CodeIgniter to create archive. Everything works perfect, I want to add password for this zip, can anyone help ?
Thanks
codeigniter zip
add a comment |
I am using Zip helper from CodeIgniter to create archive. Everything works perfect, I want to add password for this zip, can anyone help ?
Thanks
codeigniter zip
I am using Zip helper from CodeIgniter to create archive. Everything works perfect, I want to add password for this zip, can anyone help ?
Thanks
codeigniter zip
codeigniter zip
asked Jan 26 '13 at 21:19
AbdellahAbdellah
32
32
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Unfortunately you can't do this in Codeigniter or native PHP for that matter, you'll need to use the system() function and process the Zip on your host machine.
See https://stackoverflow.com/a/646221/1734864 for a fuller answer and http://php.net/manual/en/function.system.php for the function reference.
1
Thanks, maybe customizing Zip helper for codeigniter should do the work. I will give it a try and back to you.
– Abdellah
Feb 7 '13 at 22:55
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f14541681%2fcodeigniter-zip-archive-password%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Unfortunately you can't do this in Codeigniter or native PHP for that matter, you'll need to use the system() function and process the Zip on your host machine.
See https://stackoverflow.com/a/646221/1734864 for a fuller answer and http://php.net/manual/en/function.system.php for the function reference.
1
Thanks, maybe customizing Zip helper for codeigniter should do the work. I will give it a try and back to you.
– Abdellah
Feb 7 '13 at 22:55
add a comment |
Unfortunately you can't do this in Codeigniter or native PHP for that matter, you'll need to use the system() function and process the Zip on your host machine.
See https://stackoverflow.com/a/646221/1734864 for a fuller answer and http://php.net/manual/en/function.system.php for the function reference.
1
Thanks, maybe customizing Zip helper for codeigniter should do the work. I will give it a try and back to you.
– Abdellah
Feb 7 '13 at 22:55
add a comment |
Unfortunately you can't do this in Codeigniter or native PHP for that matter, you'll need to use the system() function and process the Zip on your host machine.
See https://stackoverflow.com/a/646221/1734864 for a fuller answer and http://php.net/manual/en/function.system.php for the function reference.
Unfortunately you can't do this in Codeigniter or native PHP for that matter, you'll need to use the system() function and process the Zip on your host machine.
See https://stackoverflow.com/a/646221/1734864 for a fuller answer and http://php.net/manual/en/function.system.php for the function reference.
edited May 23 '17 at 10:26
Community♦
11
11
answered Jan 28 '13 at 19:02
Adam WestbrookAdam Westbrook
48539
48539
1
Thanks, maybe customizing Zip helper for codeigniter should do the work. I will give it a try and back to you.
– Abdellah
Feb 7 '13 at 22:55
add a comment |
1
Thanks, maybe customizing Zip helper for codeigniter should do the work. I will give it a try and back to you.
– Abdellah
Feb 7 '13 at 22:55
1
1
Thanks, maybe customizing Zip helper for codeigniter should do the work. I will give it a try and back to you.
– Abdellah
Feb 7 '13 at 22:55
Thanks, maybe customizing Zip helper for codeigniter should do the work. I will give it a try and back to you.
– Abdellah
Feb 7 '13 at 22:55
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f14541681%2fcodeigniter-zip-archive-password%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown