{PROJECT} /meta/stamm.ini {MENU} 00.03.01 {TITEL} EasyBookMarks {CONTENT}

What's it all about?

Easybookmarks is a little PHP Application that allows a group of users to maintain and share interesting hyperlinks. The links are divided into groups and each user has access to the global/public set of groups as well as to his personal set of groups.

Docs

The current documentation can be found here. For a better insight have a look at the history.

Demo

The latest releases can be found at

Testing with XAMPP

It's no problem to test EBM in an XAMPP installation. This is the most easy way to test the suite on your own host. Just download the latest EBM version and unpack it into the htdocs of your XAMPP installation directory. Chose your database and go ahead.

SQLite

If you use SQLite, you just need to uncomment the SQLite lines in the settings.php

/** sqlite **/
require("db/sqlite.php");
$ebm_prefix=".";

mySQL

With mySQL you first need to create a database user named 'ebm' that should have a better password than 'ebm' as used in the example. Then you need to create a database named ebm.

mysql> create database ebm;
Query OK, 1 row affected (0.01 sec)

mysql> create user 'ebm' identified by 'ebm';
Query OK, 0 rows affected (0.00 sec)

mysql> grant ALL on ebm.* to ebm;
Query OK, 0 rows affected (0.01 sec)

In the settings.php you need to uncomment the mySQL lines:

/** MySQL **/
require("db/mysql.php");
$my_host="localhost";
$my_user="ebm";
$my_pass="ebm";
$my_db="ebm";

First start

After you set up the database you can call http://localhost/ebm/ and test away. Then the database will be created automatically and the admin user 'ebm' with the password 'ebm' is set up. Now you're ready to go.

Download