在Windows 8上设置civiCRM

时间:2018-10-17 05:57:11

标签: php windows-8 open-source civicrm

请任何人指导我如何在Windows操作系统上设置civiCRM并进行编码。我对这种类型的平台是完全陌生的,对如何进行任何工作一无所知,但是,我对PHP和基于laravel和lumen的基于PHP的框架有很深的了解。我相信,如果指导如何做,我应该能够自己制定标准。我已经尝试谷歌,但没有什么重要的。

谢谢。

1 个答案:

答案 0 :(得分:0)

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

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

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

  1. 从此处获取文件: https://civicrm.org/download版本5.XXXX很好

  2. 下载文件并解压缩

  3. 将提取的文件粘贴到modules文件夹中,并确保模块文件夹名称为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迁移来备份civiCRM设置和数据。也许可以检查样本数据。