Results 1 to 10 of 10
Like Tree1Likes
  • 1 Post By kengichan

Thread: File link error after upgrade to 6.3

  1. #1
    alderkoten is offline Junior Member
    Join Date
    Dec 2011
    Posts
    1

    Default File link error after upgrade to 6.3

    We completed the upgrade to 6.3 and we are getting the following erro when clicking on documents to open/download them:

    developer Fatal error: Call to a member function ACLAccess() on a non-object in /home/contactj/public_html/alderkoten/download.php on line 69

    Any ideas?

  2. #2
    andylenzini is offline Junior Member
    Join Date
    Oct 2011
    Posts
    1

    Default Re: File link error after upgrade to 6.3

    I'm getting the same error. This is a fresh install in a shared host environment. I've set the cache permissions.

    Thanks in advance,

    Andy

  3. #3
    Juliusachim is offline Sugar Community Member
    Join Date
    Jul 2008
    Posts
    11

    Question Re: File link error after upgrade to 6.3

    Hello,
    is there a solution for this problem?

  4. #4
    bickart68 is offline Sugar Community Member
    Join Date
    Apr 2008
    Posts
    108

    Default Re: File link error after upgrade to 6.3

    Which version of PHP are you using? Make sure that you are using a version of PHP that is supported by 6.3
    --
    Jeff Bickart
    CTO
    NEPO Systems
    jeff@neposystems.com

  5. #5
    privasphere is offline Member
    Join Date
    Mar 2007
    Posts
    12

    Default Re: File link error after upgrade to 6.3

    has anyone an idea?

    I just upgraded to sugar 6.3.0 and can not download files from documents

    I get

    Fatal error: Call to a member function ACLAccess() on a non-object in /var/www/crm/download.php on line 69

    I run:
    Sugar 6.3.0
    PHP 5.2.6-1+lenny13
    Debian 5.0.9

  6. #6
    privasphere is offline Member
    Join Date
    Mar 2007
    Posts
    12

    Default Re: File link error after upgrade to 6.3

    has anyone an idea?

    I just upgraded to sugar 6.3.0 and can not download files from documents

    I get

    Fatal error: Call to a member function ACLAccess() on a non-object in /var/www/crm/download.php on line 69

    I run:
    Sugar 6.3.0
    PHP 5.2.6-1+lenny13
    Debian 5.0.9

  7. #7
    privasphere is offline Member
    Join Date
    Mar 2007
    Posts
    12

    Default Re: File link error after upgrade to 6.3

    has anyone an idea?

    I just upgraded to sugar 6.3.0 and can not download files from documents

    I get

    Fatal error: Call to a member function ACLAccess() on a non-object in /var/www/crm/download.php on line 69

    I run:
    Sugar 6.3.0
    PHP 5.2.6-1+lenny13
    Debian 5.0.9

  8. #8
    kengichan is offline Junior Member
    Join Date
    Dec 2011
    Posts
    1

    Default Re: File link error after upgrade to 6.3

    i found a way to fix, (from ver 6.4rc)

    change download.php line 68~71

    PHP Code:
            $focus BeanFactory::getBean($module$_REQUEST['id']);
            if(!
    $focus->ACLAccess('view')){
                die(
    $mod_strings['LBL_NO_ACCESS']);
        } 
    // if 
    to
    PHP Code:
            $focus BeanFactory::newBean($module);
            if(!empty(
    $focus) && !$focus->ACLAccess('view')){
                die(
    $mod_strings['LBL_NO_ACCESS']);
            } 
    // if
            
    $focus->retrieve($_REQUEST['id']); 
    Chris_C likes this.

  9. #9
    LaFortuna is offline Sugar Community Member
    Join Date
    Nov 2010
    Posts
    55

    Default Re: File link error after upgrade to 6.3

    I'm using 6.3 and have the same error, but I need an upgrade-safe solution. Has anyone found one? Is this solved in 6.4?
    Last edited by LaFortuna; 2012-02-06 at 11:17 PM.

  10. #10
    Chris_C's Avatar
    Chris_C is offline Sugar Community Member
    Join Date
    Jun 2011
    Location
    Connecticut
    Posts
    227

    Default Re: File link error after upgrade to 6.3

    Try upgrading to 6.3.1. It fixed several bugs from 6.3.0. I don't know whether this bug was fixed in there. But the official latest and greatest is 6.3.1.

    Post back and let us know your results!

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Error during upgrade:The zip file is missing a manifest.php file
    By layres in forum Installation and Upgrade Help
    Replies: 3
    Last Post: 2012-02-10, 12:12 PM
  2. Can't upgrade from 5.1.0c / file permission error
    By LoanMart in forum Installation and Upgrade Help
    Replies: 2
    Last Post: 2010-05-03, 02:45 PM
  3. Error 500 link to a file problems
    By flymirco in forum Developer Help
    Replies: 4
    Last Post: 2009-09-14, 12:55 PM
  4. Upgrade from 5.0.0a to 5.0.0b - calls list contact link error not fixed
    By lmcanada in forum Installation and Upgrade Help
    Replies: 2
    Last Post: 2008-02-18, 05:26 PM
  5. UPGRADE 4.5.0h to 4.5.1: UpgradeWizard - ERROR: no file uploaded!
    By creaware in forum Installation and Upgrade Help
    Replies: 0
    Last Post: 2007-02-13, 12:24 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
  •