|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-10-01 08:02 UTC] ab@php.net
[2012-10-01 08:21 UTC] ab@php.net
-Status: Open
+Status: Feedback
[2012-10-01 08:22 UTC] ab@php.net
-Assigned To:
+Assigned To: ab
[2012-10-02 07:31 UTC] sharqgm at gmail dot com
-Status: Feedback
+Status: Assigned
[2012-10-02 07:31 UTC] sharqgm at gmail dot com
[2012-10-07 22:42 UTC] sharqgm at gmail dot com
[2012-10-07 22:42 UTC] sharqgm at gmail dot com
-Status: Assigned
+Status: Closed
[2012-10-08 11:17 UTC] pajoye@php.net
-Status: Closed
+Status: Not a bug
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 21:00:01 2025 UTC |
Description: ------------ Some info: I use ziparchive because in my project (joomla) have a lot of small files and the upload time is too long (50-120 minute) What I did: - Zipped a fresh copy of joomla - uploaded to the server - extratched by ZipArchive My keywords and description metadatas are missing. It seems like there is a bug with the newline caracter, because when I see the source, there is just a mass of unformatted code, but on localhost OK. When I avoid this process and uploaded files directly everything ok. So the problem come from the ZipArchive. (sorry for the poor description, I'm not prof, just wanted to notice :)) Test script: --------------- $zip = new ZipArchive; $res = $zip->open('un.zip'); if ($res === TRUE) { $zip->extractTo('./'); $zip->close(); echo 'ok'; } else { echo 'failed'; } Actual result: -------------- Keyword and desc meta tag-s missing. New lines missing from the most part of the code.