upgrade Wizard: "Could not create the temp directory. Check file permissions."

Hola!

Estoy tratando de actualizar la versión de SugarCRM CE de 5.6.18 a 6.5.22, pero en el momento de "subir" el archivo de la actualización (SugarCE-Upgrade-6.5.x-to-6.5.22.zip) el wizard lanza este error:

"Could not create the temp directory. Check file permissions."

ya tomé medidas extremas (de momento no me preocupan ya que es un ambiente de pruebas en una MV):

chmod -R 777 /path/to/my/sugarcrm/

así que no es por permisos... por que ya los tiene TODOS!

Que más puedo revisar?

Les agradezco,

ACC

Parents Reply Children
  • Hi Saludos,

    As I can see the permissions which you have provided are 1528 for directory and 432 for files. Which means 770 (for 1528) and 660(for 432).

    As per my understanding For 775 value will be 1533 and 664 value will be 436

    Can you please try by giving following permissions?

    array (

      'dir_mode' => 1533,

      'file_mode' => 436,

      'user' => '',

      'group' => '',

    ),

    Also I don't have any information about your server user/group information, So also you can try by passing user and group name as well. For eg "apache".

    array (

      'dir_mode' => 1533,

      'file_mode' => 436,

      'user' => 'apache',

      'group' => 'apache',

    ),