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