Redmine + PHP Wamp:如何在现有的Wamp服务器中安装Redmine

I am completely new to RedMine. I want to use RedMine & It's API with PHP (Not Ruby on Rails) & MySQL Table data at local host Wamp Server.

But I don't know how to Configure my existing Wamp server to Install Redmine. I don't understand where to start.Please Please help me if anyone already did this. Thanks.

Since you are using Wamp, it means you didn't install and configure, Apache, PHP and MySql on your own, but downloaded bundled versions with installer. My recommendation is that you download and use Bitnami Redmine from https://bitnami.com/stack/redmine/installer

However if you want manual installation, you already have Mysql with WAMP, so you just need to install Ruby and Redmine.

  1. Choose appropriate ruby
    For Windows installations, you must first install Ruby, check Redmine and Ruby compatibility matrix for Redmine from: http://www.redmine.org/projects/redmine/wiki/RedmineInstall
  2. Then download Ruby from: https://rubyinstaller.org/ and I also recommend DevKit, nowadays there are bundled versions, on downloads section.
  3. Follow the rest of installation instructions from link provided in step 1.
  4. Run Redmine from Windows console, using rails s and you can access it from browser via port http://localhost:3000

To use Redmine API, you must first enable it, via Administration | Settings | API

That's it!