mirror of
https://git.freebsd.org/ports.git
synced 2025-07-15 16:29:15 -04:00
Update to 1.8.1: - Add additional patches issued post-release - Stage support - Removed option for MySQL patch now contained in the release - Fix ./mage command by adding zlib to dependencies - Closes ports/187985 (commit of 1.7 was incomplete) - Adds option to support the REST Api. - Adds option to activate redis session module (disabled by default). - Rework cron.sh to do sane locking with lockf(1) - Add example cron entry PR: ports/188901 Submitted by: Melvyn Sopacua (maintainer) Approved by: maintainer (implicit), jadawin (mentor)
30 lines
997 B
Text
30 lines
997 B
Text
POST-INSTALL CONFIGURATION FOR MAGENTO
|
|
=====================================
|
|
|
|
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 the app/etc/local.xml file and then
|
|
setting up Magento, creating an admin account, etc.
|
|
|
|
4) After installation consider setting app/etc back to mode 755 for security
|
|
reasons.
|
|
|
|
For more information, see the INSTALL DOCUMENTATION:
|
|
|
|
http://www.magentocommerce.com/install
|