diff options
Diffstat (limited to 'www/oscommerce/files/pkg-message.in')
-rw-r--r-- | www/oscommerce/files/pkg-message.in | 31 |
1 files changed, 18 insertions, 13 deletions
diff --git a/www/oscommerce/files/pkg-message.in b/www/oscommerce/files/pkg-message.in index a7ba75a428d8..2e42d895868d 100644 --- a/www/oscommerce/files/pkg-message.in +++ b/www/oscommerce/files/pkg-message.in @@ -1,23 +1,28 @@ ------------------------------------------------------------------------------ - -Congratulations! You have installed osCommerce. You are one step closer to -having a functional e-commerce website. You should now open a browser and go -to: +POST-INSTALL CONFIGURATION FOR OSCOMMERCE: - http://localhost/oscommerce/catalog/install/ +----------------------------------------------------------------------------- +Congratulations! You have installed oscommerce. Once you've finished the rest of the installation, it is highly encouraged that you - chmod -R 000 %%WWWDIR%%/catalog/install +to disable the installation utilities. Then: -to disable the installation utilities. - -The administrative interface can be found at +1) Create a user and a database for oscommerce to store all + its tables in (or choose an existing database). - http://localhost/oscommerce/catalog/admin/ +2) Add the following to your Apache configuration, and + restart the server: -and should have its access appropriately restricted to prevent someone -from modifying parts of your catalog. + ### Add the AcceptPathInfo directive only for Apache 2.0.30 or later. + Alias /oscommerce %%PREFIX%%/www/oscommerce/ + AcceptPathInfo On + <Directory %%PREFIX%%/www/oscommerce/> + AllowOverride None + Order Allow,Deny + Allow from all + </Directory> +3) You should now open a browser and go to: + http://localhost/oscommerce/catalog/ ----------------------------------------------------------------------------- |