sugarCRM:使用模块加载器创建关系,未安装软件包 [英] sugarCRM : creating relationship using module loader, package not installing

查看:119
本文介绍了sugarCRM:使用模块加载器创建关系,未安装软件包的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试通过SugarCRM中的模块加载器创建关系。但是问题是我的软件包在55%之后停止安装。当我查看显示日志时,错误是:-

I am trying to create relationships through module loader in SugarCRM. But the problem is my package is stopped installing after 55%. When I am viewing display log the error is:-


无法复制
缓存/升级/温度/ SYWr9G / custom / metadata / accounts_contacts_1MetaData.php
custom / metadata / accounts_contacts_1MetaData.php

Failed to copy cache/upgrades/temp/SYWr9G/custom/metadata/accounts_contacts_1MetaData.php custom/metadata/accounts_contacts_1MetaData.php

我也尝试更改权限,但有时通过内部服务器错误500。以下是我正在使用的代码。

I tried to change permissions also but at some point they through internal server error 500. Following are the code which I am using.

1.In manifest.php file :
    $installdefs = array(
        'id' => 'package_20170804',
        'copy' => array(
            0 => array(
                'from' => '<basepath>/accounts_contacts_1MetaData.php',
                'to' => 'custom/metadata/accounts_contacts_1MetaData.php',
                ),
            1 => array(
                'from' => '<basepath>/accounts_contacts_1.php',
                'to' => 'custom/Extension/application/Ext/TableDictionary/accounts_contacts_1.php',
                ),
            ),
        'relationships'=>array (
            array (
                'module'=> 'Accounts',
                'meta_data'=>'<basepath>/custom/metadata/accounts_contacts_1MetaData.php',
               'module_vardefs'=>'<basepath>/custom/Extension/application/Ext/TableDictionary/accounts_contacts_1.php'

                )
            ),
        );

2. In accounts_contacts_1MetaData.php file :

    <?php
    $dictionary["accounts_contacts_1"] = array (
      'true_relationship_type' => 'one-to-many',
      'from_studio' => true,
      'relationships' =>
      array (
        'accounts_contacts_1' =>
        array (
          'lhs_module' => 'Accounts',
          'lhs_table' => 'accounts',
          'lhs_key' => 'id',
          'rhs_module' => 'Contacts',
          'rhs_table' => 'contacts',
          'rhs_key' => 'id',
          'relationship_type' => 'many-to-many',
          'join_table' => 'accounts_contacts_1_c',
          'join_key_lhs' => 'accounts_contacts_1accounts_ida',
          'join_key_rhs' => 'accounts_contacts_1contacts_idb',
          ),
        ),
      'table' => 'accounts_contacts_1_c',
      'fields' =>
      array (
        0 =>
        array (
          'name' => 'id',
          'type' => 'varchar',
          'len' => 36,
          ),
        1 =>
        array (
          'name' => 'date_modified',
          'type' => 'datetime',
          ),
        2 =>
        array (
          'name' => 'deleted',
          'type' => 'bool',
          'len' => '1',
          'default' => '0',
          'required' => true,
          ),
        3 =>
        array (
          'name' => 'accounts_contacts_1accounts_ida',
          'type' => 'varchar',
          'len' => 36,
          ),
        4 =>
        array (
          'name' => 'accounts_contacts_1contacts_idb',
          'type' => 'varchar',
          'len' => 36,
          ),
        ),
      'indices' =>
      array (
        0 =>
        array (
          'name' => 'accounts_contacts_1spk',
          'type' => 'primary',
          'fields' =>
          array (
            0 => 'id',
            ),
          ),
        1 =>
        array (
          'name' => 'accounts_contacts_1_ida1',
          'type' => 'index',
          'fields' =>
          array (
            0 => 'accounts_contacts_1accounts_ida',
            ),
          ),
        2 =>
        array (
          'name' => 'accounts_contacts_1_alt',
          'type' => 'alternate_key',
          'fields' =>
          array (
            0 => 'accounts_contacts_1contacts_idb',
            ),
          ),
        ),
      ); 
3. In accounts_contacts_1.php file:

<?php
include('custom/metadata/accounts_contacts_1MetaData.php');
?>

我只是想在所有关系中创建一个字段。也许我缺少清单文件中的某个地方,或者我需要包含一些其他文件。

I just wanted to create a field in relationship that's all . Maybe I am missing somewhere in manifest file or i needed to include some additional file.

推荐答案

我解决了它。您可以按照以下步骤通过模块加载器在SugarCRM中创建关系。

I solved it. You can follow following steps to create relationships in SugarCRM through module loader.

第1步:-根据以下

授予您的Sugar目录权限对于Linux: http://support.sugarcrm.com/Knowledge_Base/Platform_Management/Required_File_System_Permissions_on_Linux a>

对于Windows:

http://support.sugarcrm.com/Knowledge_Base/Platform_Management/Required_File_System_Permissions_on_Windows_With_IIS/

步骤2:-在manifest.php中

Step 2:- In manifest.php

<?php
 $manifest = array(
    'acceptable_sugar_flavors' => array('CE','PRO','CORP','ENT','ULT'),
    'acceptable_sugar_versions' => array(
        'exact_matches' => array(),
        'regex_matches' => array('(.*?)\\.(.*?)\\.(.*?)$'),
        ),
    'author' => 'Ravi Ranjan',
    'description' => 'Relationship',
    'icon' => '',
    'is_uninstallable' => true,
    'name' => 'custom relation',
    'published_date' => '2017-08-10 2017 11:45:04',
    'type' => 'module',
    'version' => '20170810',
    );

 $installdefs = array(
    'id' => 'package_20170810',
    'copy' => array(
        0 => array(
            'from' => '<basepath>/accounts_contacts_1MetaData.php',
            'to' => 'custom/metadata/accounts_contacts_1MetaData.php',
            ),

        1 => array(
            'from' => '<basepath>/accounts_contacts_1.php',
            'to' => 'custom/Extension/application/Ext/TableDictionary/accounts_contacts_1.php',
            ),

        ),

    );

 ?>

第3步:-accounts_contacts_1MetaData.php和accounts_contacts_1.php文件的内容与您相同可以看到有问题的。

Step 3:- The contents of both file accounts_contacts_1MetaData.php and accounts_contacts_1.php will be same as you can see in question.

第4步:-安装完快速修复和重建后,压缩所有三个文件并通过模块加载器上传。

Step 4:- Compress all three files and upload through module loader, after installation quick repair and rebuild.

进入Studio>客户>关系您将在其中看到一个新字段,名称为accounts_contacts_1,这就是我想要创建的。

这篇关于sugarCRM:使用模块加载器创建关系,未安装软件包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆