If the include_once not rightly used, some error will be occur in different environment. This is the right way to use include_once in PHP
include_once(dirname(__FILE__) . ‘/unzipper/pclzip.lib.php’);
Pay attention to the dirname(__FILE__) , this keep the right location of the current dir.
Subscribe in reader

