alex <[EMAIL PROTECTED]> wrote: > example this page i not see > > http://192.168.2.2/coretech/core-interno/quienessomos > > the error is > Not Found > The requested URL /coretech/core-interno/quienessomos was not found on > this server. > > Apache/1.3.27 Server at 192.168.2.2 Port 80 > > > and http://192.168.2.2/coretech/quienessomos > yep this page i see
It means that "coretech" page is marked as static. If You want to see quienessomos , and it is a topic name , You should provide some code fot coretech page and mark this page as active. http://www.midgard-project.org/documentation/glossary http://www.midgard-project.org/documentation/concepts/host_and_page/ So, coretech is $argv[0] in Your case and Your code should look like: <?php if ($topic = mgd_get_topic($argv[0])) { print "$topic->name"; } ?> Piotras --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
