blob: d0eb6d07731363d668d8a1ed8b5a84367f23ef35 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
[
{ type: install
message: <<EOM
1) Add the following to your Apache configuration, and restart the server:
### Add the AcceptPathInfo directive only for Apache 2.0.30 or later.
Alias /joomla %%WWWDIR%%/
AcceptPathInfo On
<Directory %%WWWDIR%%>
AllowOverride None
Order Allow,Deny
Allow from all
# For Apache 2.4 add:
Require all granted
</Directory>
2) Visit your Joomla site with a browser (i.e. http://your.server.com/joomla/),
and you should be taken to the install.php script, which will lead you
through creating a config.php file and then setting up Joomla, creating
an admin account, etc.
3) As of 2.5.5, php5-mysqli and php5-zip are installed. Use of mysqli for mysql
is recommended over mysql.
4) As of 3.6.4, php7 is also supported, and the php*-mysql extension is NOT
asked for. Also, the php*-pgsql extension is asked for as Joomla supports
PostgreSQL as well.
EOM
}
]
|