On Wed, Jul 9, 2008 at 1:43 PM, tedd <tedd@xxxxxxxxxxxx> wrote: > Hi gang: > > I'm trying to do some zip stuff, but on server [1] my script hangs on: > > $zip = new ZipArchive(); > > No errors, no anything, it just hangs -- I assuming that ZipArchive is not > available. > > --- > > However, on server [2] (Daniel Brown's most excellent service, btw), > everything works great -- as is usual (every time I say something like this > he gives me another month of free service). :-) > > I've done phpinfo's on both servers, but don't see any obvious differences. > > Outside of running my script on different servers to see if it works, is > there anyway I can tell beforehand if ZipArchive is available or not? if(class_exists('ZipArchive', false)) $zip = new ZipArchive(); else trigger_error('class ZipArchive does not exist!', E_USER_NOTICE); -nathan