Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

home page install


Guest

Recommended Posts

Posted

I need to know if there is a way to install osCommerce as the "home page" index.html????

Posted
I need to know if there is a way to install osCommerce as the "home page" index.html????

Yes all you need to do is install it to your root directory instead of catalog.

 

yourdomain.com/index.php

 

instead of

 

yourdomain.com./catalog/index.php

 

Now you have to install the complete site at that level not just the index.php file so when you do the install just upload everything inside the catalog folder but not the catalog folder itself.

The Knowledge Base is a wonderful thing.

Do you have a problem? Have you checked out Common Problems?

There are many very useful osC Contributions

Are you having trouble with a installed contribution? Have you checked out the support thread found Here

BACKUP BACKUP BACKUP!!! You did backup, right??

Posted

You can also just place a index.php file in your root directory with the following code in it. you can replace catalog with whatever you are using

 

<?

Header("Location: catalog/index.php");

?>

Posted
You can also just place a index.php file in your root directory with the following code in it.  you can replace catalog with whatever you are using

 

<?

Header("Location: catalog/index.php");

?>

Thanks for this tip! I've been wondering about this for awhile now!! :)

Posted

duh, spoke to soon!

 

Is that index.php file in the root directory supposed to be blank except for:

 

 

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

 

</head>

 

<body>

<?

Header("Location: shopping/index.php");

?>

</body>

</html>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...