]> git.mxchange.org Git - friendica.git/blob - INSTALL
prevent repository leakage on the web
[friendica.git] / INSTALL
1
2 Friendika Installation
3
4 1. Requirements
5         - Apache with mod-rewrite enabled and "Options All" so you can use a 
6 local .htaccess file
7
8         - PHP > 5.1. The later the better. You'll need 5.3 for full openssl 
9 encryption support
10
11         - PHP *command line* access with register_argc_argv set to true in the 
12 php.ini file
13
14         - Mysql 5.x
15
16         - ability to schedule jobs with cron (Linux/Mac) or Scheduled Tasks
17 (Windows)
18         
19         [Dreamhost.com offers all of the necessary hosting features at a 
20 reasonable price. If your hosting provider doesn't allow Unix shell access, 
21 you might have trouble getting everything to work.] 
22
23 2. Put this directory into the root of your web server document area.
24
25         - If you copy the directory tree to your webserver, make sure
26         that you also copy .htaccess - as "dot" files are often hidden 
27         and aren't normally copied.
28
29         - To use a subdirectory of your main domain, set the 
30         config variable $a->path to the relative subdir
31         in .htconfig.php - for example to use http://example.com/test - 
32         use
33                 $a->path = 'test';
34
35         In this case, you cannot use the web installer. 
36         Skip step 3 and proceed to step 4 - especially steps 4a and 4b.
37
38         - Everything will work much better if you can dedicate a domain 
39         or subdomain so that you don't require an extra server path. 
40
41 3. Visit your website with a web browser and follow the instructions. 
42
43 4. *If* the automated installation fails for any reason, check the following:
44
45         4a. ".htconfig.php" exists 
46                 If not, edit htconfig.php and change system settings. Rename 
47 to .htconfig.php
48         4b. Database is populated.
49                 If not, import the contents of "database.sql" with phpmyadmin 
50 or mysql command line
51
52 5. At this point visit your website again, and register your personal account. 
53 Registration errors should all be recoverable automatically. 
54 If you get any *critical* failure at this point, it generally indicates the
55 database was not installed correctly. You might wish to move/rename 
56 .htconfig.php to another name and empty (called 'dropping') the database 
57 tables, so that you can start fresh.  
58
59 6. Set up a cron job or scheduled task to run the poller once every 5-10 
60 minutes to pick up the recent "public" postings of your friends. Example:
61
62         cd /base/directory; /path/to/php include/poller.php
63
64 Change "/base/directory", and "/path/to/php" as appropriate for your situation.
65
66 If you are using a Linux server, run "crontab -e" and add a line like the 
67 one shown, substituting for your unique paths and settings:
68
69 */5 * * * *     cd /home/myname/mywebsite; /usr/bin/php include/poller.php
70
71 You can generally find the location of PHP by executing "which php". If you 
72 have troubles with this section please contact your hosting provider for 
73 assistance. Friendika will not work correctly if you cannot perform this step.
74