mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
a58ecb64ca
that provides online merchants with unprecedented flexibility and control over the look, content and functionality of their eCommerce store. Magento's intuitive administration interface features powerful marketing, search engine optimization and catalog-management tools to give merchants the power to create sites that are tailored to their unique business needs. WWW: http://www.magentocommerce.com/ Feature safe: yes
28 lines
896 B
Plaintext
28 lines
896 B
Plaintext
POST-INSTALL CONFIGURATION FOR MOODLE
|
|
=====================================
|
|
|
|
1) Create a MySQL user and a database for Magento 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 /magento %%PREFIX%%/%%MAGENTODIR%%/
|
|
AcceptPathInfo On
|
|
<Directory %%PREFIX%%/%%MAGENTODIR%%>
|
|
AllowOverride None
|
|
Order Allow,Deny
|
|
Allow from all
|
|
</Directory>
|
|
|
|
3) Visit your Magento site with a browser (i.e.,
|
|
http://your.server.com/magento/), and you should
|
|
be taken to the install.php script, which will lead
|
|
you through creating a config.php file and then
|
|
setting up Moodle, creating an admin account, etc.
|
|
|
|
For more information, see the INSTALL DOCUMENTATION:
|
|
|
|
http://www.magentocommerce.com/install
|