在 windows 8 上设置 civiCRM

setup civiCRM on windows 8

任何人都可以指导我如何在我的 windows OS 上设置 civiCRM 并使用它进行编码。我对这种类型的平台完全陌生,不知道如何做任何事情,但是,我对基于 PHP 和 php 的框架(如 laravel 和 lumen)有很强的了解。我相信,如果指示我该做什么,我应该能够自己制定标准。我试过 google 但没什么大不了的。

谢谢。

首先,您需要使用 Xampp 在本地 windows 机器上安装 Drupal,这非常简单:

https://www.apachefriends.org/download.html

当所有设置都按照这些步骤进行时,如果您遇到任何错误,请告诉我,我已经解决了!

  1. 从这里获取文件: https://civicrm.org/download版本5.XXXX没问题

  2. 下载文件并解压

  3. 将提取的文件粘贴到模块文件夹中,并确保模块文件夹名称为 civicrm,小型大写字母

  4. 导航至:

http://localhost/crm/sites/all/modules/civicrm/install/index.php

  1. 如果由于权限问题不允许安装:注释掉此文件 index.php 的第 265 行周围的这些行:

C:\Core\XAMPP_2018\htdocs\crm3\sites\all\modules\civicrm\install

/* if ((!function_exists(‘user_access’)) || (!user_access(‘administer site 
configuration’))) {
$errorTitle = ts(“You don’t have permission to access this page”);
$errorMsg = ts(“The installer can only be run by a user with the permission to 
administer site configuration.”);
errorDisplayPage($errorTitle, $errorMsg);
exit();
}
 */
  1. 安装时,与 Drupal 共享数据库,这样您就可以使用 bakcup migrate 来备份 civiCRM 设置和数据。也许加载示例数据已检查。