blob: 3f532c232583fbad5eb14a7f9da5b2a8eb7e8073 (
plain)
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
|
POST-INSTALL CONFIGURATION FOR OPENCART
=====================================
1) Create a user and a database for opencart to store all
its tables in (or choose an existing database).
2) Add the following to your Apache configuration, and
restart the server:
### Add the AcceptPathInfo directive only for Apache 2.0.30 or later.
Alias /opencart %%WWWDIR%%/
AcceptPathInfo On
<Directory %%WWWDIR%%>
AllowOverride None
Order Allow,Deny
Allow from all
</Directory>
3) Visit your opencart site with a browser (i.e.,
http://your.server.com/opencart/), and you should
be taken to the install script, which will lead
you through configing opencart.
For more information, see the INSTALL DOCUMENTATION:
http://www.opencart.com/documentation
=====================================
|