Results 1 to 1 of 1

Thread: Opportunity DetailView

  1. #1
    diegofliess is offline Sugar Community Member
    Join Date
    Jan 2006
    Posts
    26

    Default Opportunity DetailView

    Hi,

    I don't know when or why but I can not enter de DetailView of any opportunity it hangs up with CGI ScriptTimeout (IIS under W2000) I've been trying to debug it and think that it hangs ups when create a New Currency object in the following lines:

    Code:
    require_once('modules/Currencies/Currency.php');
    	$currency  = new Currency();
    (I also have the same trouble when I go to Admin --> Repair --> Opportunities

    This is the currency constructor I have at modules/currency/currency.php
    Code:
    function Currency()
    {
    	;
    	parent::SugarBean();
    	$this->field_defs['hide'] = array('name'=>'hide', 'source'=>'non-db', 'type'=>'varchar','len'=>25);
    	$this->field_defs['unhide'] = array('name'=>'unhide', 'source'=>'non-db', 'type'=>'varchar','len'=>25);
    	$this->disable_row_level_security =true;
    }
    And I'm attaching the sugarcrm.log when I try to look at an opportunity:

    I Would appreciate any help as I'm desperate.

    Thank you very much in advance.

    Diego.
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

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

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
  •