> scenario to setup a new site, I have
> read the ibm developer works article
> but it doesnt explain how the sitegroup,
> group and person records are set up.

Forget it .... it is too old to setup current midgard.
Did You follow midgard manula on midgard web site?

> Also while I have a link at  http://server.name:8199/smmts
> working, I dont seem to understand how the page
> connects to the topic or how articles are
> created in the gui.  I know a tutorial is
> being developed but is enough available to
> answer these questions now?

"connects" 
The page is like php file on filesystem.
Let's say You have page "news", and request
http://hostname/news 
so You may  put such a code:

<? 

$topic = $id ;
// or get_topic_by_name , where $topic is "news" topic with articles as newses

$my_news = mgd_list_topic_articles($topic);

while ($my_news && $my_news->fetch()) { ?>

// You may output all content with php , but I prefer midgard output
<p>&(my_news.name);</p>
<p>&(my_news.content);</p>

<? } ?>


 
> Back to the install, initially when trying
> to access asgard there were no images.  I

How You set up Your blob dir during db install?
Is that path is correct in midgard conf file for this 
virtual host?

> had to drop the midgard database and run
> dbinstall again.
> Also although I was able to search the mailing
> list for a clue as to why I couldnt add groups
> or persons, and found a note about
> php_flag register_globals  which I put in

This flag  must be set to allow You to make all 
things within admin interface, not only for persons and groups.
This is php issue , not midgard.

Piotras

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to