Re: Specified directory for zip file extraction does not exist
This problem seems to appear again quite frequently (it's like the plague). What helped in the two last cases of my customers (all permissions were set to 777 for testing purposes but the owner couldn't be changed due to restrictions of the provider).
in sugar_file_utils.php comment out this line: return chmod($filename, $mode);
This can be set back after the installation is done.
What also seem to help (and which is by the way the biggest cause for installation error in Sugar:
'default_permissions' =>
array (
'dir_mode' => 1528,
'file_mode' => 432,
'user' => '',
'group' => '',
),
in config.php
Change this to something like
'default_permissions' =>
array (
'dir_mode' => 1533,
'file_mode' => 509,
'user' => '',
'group' => '',
),
which is octal 775.
__________________________
Robert Laussegger
http://www.iscongroup.net
Bei Fragen: support@iscon.at
Die deutschen Sprachdateien für SugarCRM und das deutsche Handbuch gibt es hier: http://goo.gl/kPsAz
Ab sofort auch mit 6.4.2
Bookmarks