My biggest problem is figuring out the templates etc. I did download the 4 main page types from the site , 1_full., 2_2-col-left , 3_2-col-right, 4_1-col. but as I am a silly man still am not getting it
One thing I would have liked in the install was a sample database with 4 templates types and features kind of filled in, I am a typical user I guess that learns fast if presented with visual input...
If a sample db was included with tags etc, I could then see the structure and pretty well would understand somewhat instantly.
I wonder if anyone could post a typical site database export from phpMyAdmin with or without the images for download preferable witht he 4 template types. I would suggest this then be included as a feature for silly users like me
I would save a huge learning curve, that I see arisisng.
thanks
Why not a sample db included??
-
- Posts: 15
- Joined: Sun 11. Apr 2004, 22:09
- Location: London
- Contact:
First off - the tempates are not stored in a DB. they are in flat files.
the samples are so easy you are probably looking to hard.
any code you want to apear in any section you write the in that section.
of course you could use your favorite html editor. write stuff that works and cut&paste it in to the desired area.
bingo.
the replacement tags should be written exactly as they are in the phpwcms.de documents (case sensitive).
the samples are so easy you are probably looking to hard.
any code you want to apear in any section you write the in that section.
of course you could use your favorite html editor. write stuff that works and cut&paste it in to the desired area.
bingo.
the replacement tags should be written exactly as they are in the phpwcms.de documents (case sensitive).
-
- Posts: 15
- Joined: Sun 11. Apr 2004, 22:09
- Location: London
- Contact:
Simple example
ok, just cut and paste this in to your templates...
html head
header
main
left block
right block
footer
error
html head
Code: Select all
<title>mysite | welcome</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<LINK REL="SHORTCUT ICON" HREF="http://www.mydomain.net/favicon.ico">
Code: Select all
this is my header section
{BREADCRUMB}
Code: Select all
this is my main section
{CONTENT}
and some more stuff here
Code: Select all
this is my left block
{NAV_TABLE_COLUMN}
and some more stuff here
Code: Select all
this is my right block
{NAV_TABLE_SIMPLE}
and some more stuff goes here
Code: Select all
this is my footer
{BREADCRUMB}
more stuff goes here
Code: Select all
this will apear if there is no articles in this menu