Fat Free CRM 的安装说明?

发布于 2024-11-18 18:42:19 字数 560 浏览 1 评论 0原文

有谁知道安装 Fat Free CRM 的教程或详细说明集? github 上的说明显然是针对经验丰富的 Rails 开发人员的,而不是像我这样愚蠢的新手。

当我尝试将源代码下载到我的 Mac 时,rails 将无法工作,并且当我尝试启动服务器时会出现数十个错误。 (有太多的东西甚至无法在这里发布)我还尝试设置一个新的应用程序,并在多次抱怨找不到 Rails 服务器后,煞费苦心地将文件从源代码复制并粘贴到新应用程序中。现在它继续抱怨十几个文件中的语法错误和依赖关系,并抱怨我的宝石。

我确实正确地更新了数据库 yaml 文件,并尝试更新我的 gems 并运行捆绑包很多很多次,但意大利面条碗的错误似乎从来没有解决太多问题。这是该应用程序的最新 Rails 3 版本,那么为什么它不起作用,为什么它似乎认为一半的 gem 已被弃用?其他人似乎没有遇到这些类型的错误。

我显然错过了一些对世界其他地方来说显而易见的东西,并且以某种方式严重搞砸了安装。下载完整应用程序的过程与安装插件的过程有何不同? (我从来没有在插件方面遇到过这么大的麻烦。)有谁知道用于下载、安装和设置此应用程序的防白痴清单?经过三个月的努力,我感到非常沮丧。

非常感谢。

Does anyone know of a tutorial or detailed instruction set for installing Fat Free CRM? The instructions on github are clearly meant for experienced rails developers not stupid newbies like me.

When I try downloading the source code to my Mac, rails won't work and I get dozens and dozens of errors when I try to start the server. (There are way too many to even post here) I also tried setting up a new app and painstakingly copying and pasting the files from the source into the new app after it complained numerous times that it could not find the rails server. Now it continues kvetching about syntax errors and dependencies in a dozen or so files and complaining about my gems.

I did properly update the database yaml file and have tried updating my gems and running bundle many, many times but the spaghetti bowl of errors never seems to resolve much. This is the latest Rails 3 version of the app so why would it not work and why does it seem to think that half the gems are deprecated? Other people don't seem to be getting these types of errors.

I'm clearly missing something that is plainly obvious to the rest of the world and have somehow majorly screwed up the installation. How does the process of downloading a complete app differ from installing a plugin? (I've never had this much trouble with plugins.) Does anyone know of an idiot-proof checklist for downloading, installing and setting up this app? After three months of trying to make this work, I am beyond frustrated.

Thanks so much.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不及他 2024-11-25 18:42:19

首先要看的地方

1) Wiki 指南

2) 自述文件

这是我采取的步骤在 Ubuntu 上,主要是按这个顺序。请记住尝试完成每个步骤而不出现错误。如果出现错误,那么它将无法工作。

sudo cp -r fatfreecrm/ /var/www (Copy crm to your www root)

sudo apt-get install rails (install rails + ruby + mysql)

cd /var/www/fatfreecrm

cp config/database.mysql.yml config/database.yml (copy mysql config over)

chmod 777 config/database.yml (set write permissions)

vim config/database.yml (set db password, remove /tmp/mysql.sock )

gem install bundler (install bundler)

PATH=$PATH:/var/lib/gems/1.8/bin/ ( put bundler on your path, or not ) 

sudo gem install mysql2 -- --with-mysql-dir=/etc/mysql/  (install mysql2)

sudo /var/lib/gems/1.8/bin/bundle install (install bundle gems)

rake db:create

rake crm:setup

rake crm:demo:load

rake crm:settings:load

sudo ruby script/rails server

祝你好运找到适合你的东西!

The first places to look

1) The Wiki Guide

2) The Readme

Here are the steps I took on Ubuntu, mostly in this order. Remember to try to complete each step without getting errors. If you get errors then it won't work.

sudo cp -r fatfreecrm/ /var/www (Copy crm to your www root)

sudo apt-get install rails (install rails + ruby + mysql)

cd /var/www/fatfreecrm

cp config/database.mysql.yml config/database.yml (copy mysql config over)

chmod 777 config/database.yml (set write permissions)

vim config/database.yml (set db password, remove /tmp/mysql.sock )

gem install bundler (install bundler)

PATH=$PATH:/var/lib/gems/1.8/bin/ ( put bundler on your path, or not ) 

sudo gem install mysql2 -- --with-mysql-dir=/etc/mysql/  (install mysql2)

sudo /var/lib/gems/1.8/bin/bundle install (install bundle gems)

rake db:create

rake crm:setup

rake crm:demo:load

rake crm:settings:load

sudo ruby script/rails server

Good luck finding what works for you!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文