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;








0















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










share|improve this question




























    0















    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










    share|improve this question
























      0












      0








      0








      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










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 26 '13 at 21:19









      AbdellahAbdellah

      32




      32






















          1 Answer
          1






          active

          oldest

          votes


















          2














          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.






          share|improve this answer




















          • 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











          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
          );



          );













          draft saved

          draft discarded


















          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









          2














          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.






          share|improve this answer




















          • 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















          2














          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.






          share|improve this answer




















          • 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













          2












          2








          2







          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.






          share|improve this answer















          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.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          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












          • 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



















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          AWS Lex not identifying response if by a variable The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experienceEnforcing custom enumeration in AWS LEX for slot valuesHow to give response based on user response in Amazon Lex?Intercepting AWS Lambda Response to a AWS Lex QueryLex chat bot error: Reached second execution of fulfillment lambda on the same utteranceamazon lex showing invalid responseLambda response send back to Lex slot?Response card in Amazon lexAmazon Lex - Lambda response return HTML to botHow can I solve 424 (Failed Dependency) (python) obtained from Amazon lex?

          Алба-Юлія

          Захаров Федір Захарович