Why is this "Failed to copy" with no other info in the logs or in Display Log?

Why is this "Failed to copy" with no other info in the logs or in Display Log?

I am trying to copy over files that were created in the previous instance of sugar.. That is the sugarfield file

CEFields.zip

Parents
  • Have a look on that two copy elements:

    			array(
    				'from' => '<basepath>/Files/custom/Extension/modules/Lev_Course_Costs/Ext/Vardefs/sugarfield_total_to_client.php',
    				'to' => 'custom/Extension/modules/Lev_Course_Costs/Ext/Vardefs/sugarfield_total_to_client.php',
    			),
    
    ...
    
    			array(
    				'from' => '<basepath/Files/custom/Extension/modules/Lev_Contracts/Ext/Vardefs/tugarfield_contract_status.php',
    				'to' => 'custom/Extension/modules/Lev_Contracts/Ext/Vardefs/tugarfield_contract_status.php',
    			),
    

    You see the difference between line 2 and line 9?

    'from' => '<basepath>/... surely works

    'from' => '<basepath/... never works

    The missing ">" after basepath kills the copy statement.

    Harald Kuske
    Principal Solution Architect – Professional Services, EMEA
    hkuske@sugarcrm.com
    SugarCRM Deutschland GmbH

Reply
  • Have a look on that two copy elements:

    			array(
    				'from' => '<basepath>/Files/custom/Extension/modules/Lev_Course_Costs/Ext/Vardefs/sugarfield_total_to_client.php',
    				'to' => 'custom/Extension/modules/Lev_Course_Costs/Ext/Vardefs/sugarfield_total_to_client.php',
    			),
    
    ...
    
    			array(
    				'from' => '<basepath/Files/custom/Extension/modules/Lev_Contracts/Ext/Vardefs/tugarfield_contract_status.php',
    				'to' => 'custom/Extension/modules/Lev_Contracts/Ext/Vardefs/tugarfield_contract_status.php',
    			),
    

    You see the difference between line 2 and line 9?

    'from' => '<basepath>/... surely works

    'from' => '<basepath/... never works

    The missing ">" after basepath kills the copy statement.

    Harald Kuske
    Principal Solution Architect – Professional Services, EMEA
    hkuske@sugarcrm.com
    SugarCRM Deutschland GmbH

Children