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

Abdellah
  • 3
  • 2

1 Answers1

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.

Community
  • 1
  • 1
Adam Westbrook
  • 1,041
  • 9
  • 13
  • 1
    Thanks, maybe customizing Zip helper for codeigniter should do the work. I will give it a try and back to you. – Abdellah Feb 07 '13 at 22:55