moondogw:
do i need to create these folders , i found admin but not the other 2. under admin i have backups, images, includes
You need to understand that a CMS site uses TWO distinct systems - each reliant on the other - but functionally separate.
The FIRST system is a set of php code files and other "static" resources, such as images.
The SECOND system is the database that stores information and other DYNAMIC resources.
What a CMS does, essentially, is ASSEMBLE html pages "on-the-fly", before sending them to a user's computer to then be displayed on screen, via an internet browser (Firefox, MSIE).
The "pages" are not static... They do not exist until the viewer initiates an ACTION - either via a link, or an action button (eg: "Add to Cart").
The code then gets busy putting the "page" together - calling in all the resources necessary to render the data acccoring to the request it just received.
When it has put all the pieces together (think of a jigsaw puzzle) the page goes down the wire to the user's computer and is rendered on screen.
When the user performs another action (link click or action button) the page they are on EVAPORATES forever, and the code then gets busy assembling a NEW page - possibly performing some calculations on the way - before sending THAT new page to the user's browser.
Because the information on a "page" can contain data that is COMMON to other "pages", much of this information is stored in a database.
So, there are no "product pages". There are no directories in which this info is stored.
You manage the INPUT of relevant data via the shop's ADMIN CONSOLE, where there are features for adding, editing and removing data. Additionally the database is also a store of on-off setting for many of the components and elements that can be rendered on a "page" (for design purposes).