FOR ARCHIVAL PURPOSES ONLY

The information in this wiki hasn't been maintained for a good while. Some of the projects described have since been deprecated.

In particular, the "Ushahidi Platform v3.x" section contains information that is often misleading. Many details about this version of Platform have changed since.

This website is an extraction of the original Ushahidi wiki into a static form. Because of that, functions like logging in, commenting or searching will not work.

For more documentation, please refer to https://docs.ushahidi.com

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: updated Github URL

...

  • Open the 'Terminal' app by going to Applications > Utilities > Terminal
  • Change to our document root folder

    Code Block
    languagebash
    cd /Applications/MAMP/ushahidi
  • Remove the default MAMP Pro files from this directory

    Code Block
    languagebash
    rm MAMP-PRO-Logo.png
    rm index.php
  • Clone the Ushahidi v3 Platform repository from Github

    Code Block
    languagebash
    git clone --recursive https://github.com/ushahidi/Lamuplatform ./
  • Follow the rest of the instructions listed here with the exception of using the database.php file listed below:

    Code Block
    languagephp
    <?php defined('SYSPATH') or die('No direct access allowed.');
    /**
     * Database Config
     * 
     * @author     Ushahidi Team <team@ushahidi.com>
     * @package    Ushahidi\Application\Config
     * @copyright  2013 Ushahidi
     * @license    https://www.gnu.org/licenses/agpl-3.0.html GNU Affero General Public License Version 3 (AGPL3)
     */
    return array
    (
    	'default' => array
    	(
    		'type'       => 'MySQLi',
    		'connection' => array(
    			'hostname'   => 'localhost',
    			'database'   => 'ushahidi',
    			'username'   => 'root',
    			'password'   => 'root',
    			'socket'     => '/Applications/MAMP/tmp/mysql/mysql.sock',
    			'persistent' => FALSE,
    		),
    		'table_prefix' => '',
    		'charset'      => 'utf8',
    		'caching'      => TRUE,
    		'profiling'    => TRUE,
    	)
    );
  • Your new site will be accessible at http://ushahidi.dev:8888/

...