blob: f55728eb858d2ebc4695ea081faced3bcefa1902 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
=======================================================================
lilurl is now installed. If you intall it for the first time,
you may have to follow this steps to make it work correctly:
1. Create the MySQL database:
# mysqladmin --user=root create lilurl
2. Create a mysql user/password for lilurl:
(change user and/or password if requered)
# echo "GRANT ALL ON lilurl.* TO lilurluser@localhost IDENTIFIED BY 'lilurluser'; FLUSH PRIVILEGES;" | mysql
3. Import the default lilurl database:
# mysql lilurl < %%TARGETDIR%%/%%LILURL_DIR%%/lilurl.sql
4. Copy %%TARGETDIR%%/%%LILURL_DIR%%/includes/conf.php.sample to %%TARGETDIR%%/%%LILURL_DIR%%/includes/conf.php
Edit %%TARGETDIR%%/%%LILURL_DIR%%/includes/conf.php
5. Add alias in apache config for the lilurl dir:
Alias /lilurl "%%TARGETDIR%%/%%LILURL_DIR%%/"
=======================================================================
|