Lais VRamalho Posted December 4, 2020 Share Posted December 4, 2020 Instaling Prestashop v. 1.7.7.0 occurred the following error: ZipArchive::extractTo(): Permission denied in /Applications/XAMPP/xamppfiles/htdocs/index.php on line 1315 How do I solve that? Thanks. Link to comment Share on other sites More sharing options...
Rhobur Posted December 5, 2020 Share Posted December 5, 2020 Kind of self explanatory.. 🙂 You need the permissions set for htdocs to 0755 for directories and 0644 for files or if there are like this already check the owner of htdocs recursively. It has to belong to the apache/nginx user. Link to comment Share on other sites More sharing options...
Lais VRamalho Posted December 9, 2020 Author Share Posted December 9, 2020 thanks Link to comment Share on other sites More sharing options...
Lais VRamalho Posted December 9, 2020 Author Share Posted December 9, 2020 Now I have this problem: Warning: require_once(/Applications/XAMPP/xamppfiles/htdocs/config/../vendor/autoload.php): failed to open stream: No such file or directory in /Applications/XAMPP/xamppfiles/htdocs/config/autoload.php on line 26 Fatal error: require_once(): Failed opening required '/Applications/XAMPP/xamppfiles/htdocs/config/../vendor/autoload.php' (include_path='.:/Applications/XAMPP/xamppfiles/lib/php') in /Applications/XAMPP/xamppfiles/htdocs/config/autoload.php on line 26 And in the autoload.php I have: since line 26: require_once __DIR__.'/../vendor/autoload.php'; define('_PS_VERSION_', AppKernel::VERSION); require_once _PS_CONFIG_DIR_.'alias.php'; require_once _PS_CLASS_DIR_.'PrestaShopAutoload.php'; spl_autoload_register(array(PrestaShopAutoload::getInstance(), 'load')); Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now