Results 1 to 7 of 7

Thread: Specified directory for zip file extraction does not exist

  1. #1
    dvera73 is offline Junior Member
    Join Date
    Jul 2010
    Posts
    4

    Default Specified directory for zip file extraction does not exist

    Im usuing SugarCE 6.0RC3 with apache, mysql

    I'm trying to install some modules with the Module Loader but I'm getting this error

    Specified directory '' for zip file 'cache/upload/homepage_manager_520.zip' extraction does not exist.


    I even tried to download system information and got this:

    You don't have permission to access /sgce/cache/diagnostic/9e3505f4-4c16-103f-e051-4c4780d0ba1c/diagnostic20100721-192102.zip on this server

    Permisions for cache and folders inside it: 775

  2. #2
    Angel's Avatar
    Angel is offline Sugar Community Member
    Join Date
    Jul 2005
    Location
    Los Angeles
    Posts
    4,813

    Default Re: Specified directory for zip file extraction does not exist

    Make sure that the permissions are set recursively. Also, verify that ownership is set recursively and that the owning user/group is set to the user/group under which your web server is running. Sounds like the ownership may be the problem.
    Regards,

    Angel Magaña
    Co-Author: Implementing SugarCRM 5.x (Packt Publishing -- Sept. 2010)
    Blog: http://cheleguanaco.blogspot.com.
    Twitter: @cheleguanaco.

    ________
    | Projects: |_____________________________________
    |
    | CandyWrapper (.NET Wrapper for SugarCRM SOAP API). Source now available on GitHub!
    | GoldMine to SugarCRM Express Conversion. Latest: 1.0.1.7 (Nov. 3, 2009)
    | CRM SkyDialer (Skype Integration). Latest: 1.0.2 (Feb. 17, 2010)
    | Round Robin Leads Assignment
    | Phone Number Formatter
    | CaseTwit (Twitter Integration)
    ______________________________________________

  3. #3
    roblaus's Avatar
    roblaus is offline Sugar Community Member
    Join Date
    Dec 2006
    Location
    Vienna / Austria
    Posts
    2,850

    Default 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

  4. #4
    kuske's Avatar
    kuske is offline Sugar Community Member
    Join Date
    Oct 2007
    Location
    Germany
    Posts
    2,597

    Default Re: Specified directory for zip file extraction does not exist

    ... and not to forget, it helps in some other cases (Suse, ubuntu, debian,..) if you write the user and the group of the apache to that record.
    Harald Kuske
    Pre-Sales Engineer Central Europe

    SUGARCRM Deutschland GmbH
    Erika-Mann-Str. 53, 80636 Munich, Germany
    Email: hkuske@sugarcrm.com
    Home: http://www.sugarcrm.com


  5. #5
    frichter is offline Junior Member
    Join Date
    Dec 2008
    Posts
    3

    Default Re: Specified directory for zip file extraction does not exist

    I have the same error message : "Specified directory '' for zip file 'cache/upload/Extension_Manager_Installer_1.0.11a.zip' extraction does not exist.
    I changed in the config.php these values :
    'default_permissions' =>
    array (
    'dir_mode' => 1528,
    'file_mode' => 432,
    'user' => 'apache',
    'group' => 'apache',
    ),

    by these values
    'default_permissions' =>
    array (
    'dir_mode' => 1528,
    'file_mode' => 432,
    'user' => '',
    'group' => '',
    ),config.php with

    but nothing change.
    The rigts on the folder cache/upload are 777
    Any Idea ?

  6. #6
    sonia28av is offline Member
    Join Date
    Jul 2010
    Posts
    7

    Default Re: Specified directory for zip file extraction does not exist

    having the same problem....please help.
    tried all the above solutions .... still no luck..
    any help will be appreciated

  7. #7
    al3
    al3 is offline Sugar Community Member
    Join Date
    Aug 2007
    Posts
    394

    Default Re: Specified directory for zip file extraction does not exist

    I'm getting the same error on my local machine with XAMPP. Can't do the silent upgrade either.

    I did a clean install of CE 6.4.2 and it won't let me upgrade to 6.4.3. I've changed everything to 777 and played with the config.php... and I can't get past this.

    Isn't there anyone who know how to fix this issue out there?

    Thanks,

    Al

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 3
    Last Post: 2011-06-11, 11:29 PM
  2. Replies: 2
    Last Post: 2010-04-26, 01:58 PM
  3. Replies: 0
    Last Post: 2009-10-30, 10:45 AM
  4. Replies: 9
    Last Post: 2009-06-01, 03:43 AM
  5. Replies: 5
    Last Post: 2009-06-01, 03:41 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •