]> git.mxchange.org Git - friendica.git/blob - INSTALL
b2b1a703a5f8a4f30d0c3b5f2cb10119f9d3c87f
[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         NOTE: This has NOT been fully tested!
36         In this case, you cannot use the web installer. 
37         Skip step 3 and proceed to step 4 - especially steps 4a and 4b.
38
39         - Everything will work much better if you can dedicate a domain 
40         or subdomain so that you don't require an extra server path. 
41
42 3. Visit your website with a web browser and follow the instructions. 
43
44 4. *If* the automated installation fails for any reason, check the following:
45
46         4a. ".htconfig.php" exists 
47                 If not, edit htconfig.php and change system settings. Rename 
48 to .htconfig.php
49         4b. Database is populated.
50                 If not, import the contents of "database.sql" with phpmyadmin 
51 or mysql command line
52
53 5. At this point visit your website again, and register your personal account. 
54 Registration errors should all be recoverable automatically. 
55 If you get any *critical* failure at this point, it generally indicates the
56 database was not installed correctly. You might wish to move/rename 
57 .htconfig.php to another name and empty (called 'dropping') the database 
58 tables, so that you can start fresh.  
59
60 6. Set up a cron job or scheduled task to run the poller once every 5-10 
61 minutes to pick up the recent "public" postings of your friends. Example:
62
63         cd /base/directory; /path/to/php include/poller.php
64
65 Change "/base/directory", and "/path/to/php" as appropriate for your situation.
66
67 If you are using a Linux server, run "crontab -e" and add a line like the 
68 one shown, substituting for your unique paths and settings:
69
70 */5 * * * *     cd /home/myname/mywebsite; /usr/bin/php include/poller.php
71
72 You can generally find the location of PHP by executing "which php". If you 
73 have troubles with this section please contact your hosting provider for 
74 assistance. Friendika will not work correctly if you cannot perform this step.
75