Results 1 to 2 of 2

Thread: After edit record-Attempt to vavigate to another pg of records-Login screen appears

  1. #1
    leemoney24 is offline Sugar Community Member
    Join Date
    Feb 2006
    Posts
    56

    Default After edit record-Attempt to vavigate to another pg of records-Login screen appears

    When I edit any record (lead, account, contact) and save the changes. All subsequent attempts to navigate the pages using the arrows prompts the login screen.

    To resolve: i simply press the Search button (with existing selections still made), screen updates, navigation works.

    Please help anyone.

    Using 5.1.0c

    Nothing in log file.

  2. #2
    leemoney24 is offline Sugar Community Member
    Join Date
    Feb 2006
    Posts
    56

    Default Re: After edit record-Attempt to vavigate to another pg of records-Login screen appears

    This fixed my problems...

    Re: LINUX file/directory permissions

    --------------------------------------------------------------------------------

    Note: This message applies to SugarCRM Pro 5.1.0a

    As an alternative to umask changes, you can edit a couple of lines in two files:

    yoursugarinstallationpath/config.php
    yoursugarinstallationpath/include/utils.php

    These two files set the chmod parameters for an installation.

    For config.php - on or around line 162 you'll find the following:

    'default_permissions' =>
    array (
    'dir_mode' => 1528,
    'file_mode' => 432,
    'user' => '',
    'group' => '',
    ),

    Change the values to:

    'default_permissions' =>
    array (
    'dir_mode' => 1517,
    'file_mode' => 420,
    'user' => '',
    'group' => '',
    ),

    They are decimal values for the octal permission values of 02755 and 0644

    Next, open utils.php - on or around line 122 you'll find the following:

    'default_permissions' => array (
    'dir_mode' => 02770,
    'file_mode' => 0660,
    'chown' => '',
    'chgrp' => '',
    ),

    Change the values to:

    'default_permissions' => array (
    'dir_mode' => 02755,
    'file_mode' => 0644,
    'chown' => '',
    'chgrp' => '',
    ),

    Save both files. Do a quick repair and rebuild. Then under the admin repair list, run REPAIR JS FILES.

    This should fix several javascript errors in 5.1.0a Pro. Undefined popup items will now display the correct text. Charts will display properly, and reports will function properly. Good luck!

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 10
    Last Post: 2005-10-14, 05:31 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
  •