Re: [midgard] Document root not working correctly. (no images)?

2000-03-09 Thread Mike Dent

dave wrote:
 
 Mike Dent wrote:
 
  Emiliano Heyns wrote:
  
   Mike Dent wrote:
Now, when I add another sample test site on port 8081 and add the
VirtualHost directives to httpd.conf for it, all works except the images
are not there? Looking at the page source it *looks* ok, images are
referenced like img src="/example/earth.gif" and the DocumentRoot is
set the same as the vhosts that work?
 
 I had this same problem with the images - all I did was copy the
 correct directories from my midgard-data source dir to my http root
 dirs. For seom reason (probably the same) it hadn't been done during
 my install process.
 
 cheers
 Dave

Thanks Dave but I already had that. Anyway in the end I logged in as
admin and deleted that host which was causing problems, recreated it and
all seems fine now!

Cheers
Mike
p.s. Are you using Midgard for any real world applications yet Dave?

 
 --
 This is The Midgard Project's mailing list. For more information,
 please visit the project's web site at http://www.midgard-project.org
 
 To unsubscribe the list, send an empty email message to address
 [EMAIL PROTECTED]

-- 
Mike Dent, Morecambe, Lancs. UK | http://www.lancs.ac.uk/staff/dentm
email [EMAIL PROTECTED], Amprnet [EMAIL PROTECTED]
PGP fingerprint: 44 F5 22 C4 CB A2 3F 9F  73 9C 02 9F 0B 16 55 72

--
This is The Midgard Project's mailing list. For more information,
please visit the project's web site at http://www.midgard-project.org

To unsubscribe the list, send an empty email message to address
[EMAIL PROTECTED]



[midgard] Unsubscribe from list?

2000-03-09 Thread Jouke Visser

Hi there,

I tried to unsubscribe myself from the midgard mailinglist. I received a
confirmation that I was sucessfully unsubcribed (after a confirmation from
myself), but I still receive mailings from this list...

Can anyone manually unsubscribe me?

--
Jouke Visser
 
Com-bat Intra- en Internet
Noordsingel 92
3032 BH Rotterdam
T: 010 2651699
F: 010 4672098
M: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
W: http://www.com-bat.nl
 


--
This is The Midgard Project's mailing list. For more information,
please visit the project's web site at http://www.midgard-project.org

To unsubscribe the list, send an empty email message to address
[EMAIL PROTECTED]



[midgard] Question to midgard-functions

2000-03-09 Thread Anatol Mayr / HEXAGON

I've generated the following script:
It should show the first topic, then all of the articles of the first
topic, the second topic and all of the articles of the second topic ...


!-- StartSeite wird  generiert --
? { $article = mgd_get_article(23); ?
(article.content:h);
 ?  } ?
? $topic = mgd_list_topics(18);
while ($topic-fetch()) {?
  H3 class="grey"(topic.description:h);/H3
?   $allArticles=mgd_list_topic_articles($topic,"alpha");?
?  } ?

I want to show the topics in a structure like this:

--- topic 1
--- article 1 of topic 1
--- article 2 of topic 1
--- article 3 of topic 1
--- topic 2
--- article 1 of topic 2
--- article 2 of topic 2
--- article 3 of topic 2
--- topic 3
--- article 1 of topic 3
--- article 2 of topic 3
--- article 3 of topic 3
..

How can I access the articles of "$allArticles"?

Anatol Mayr
HEXAGON EDV-Dienstleistungen
Weissenwolffstraße 14
A-4221 Steyregg, Austria
Tel.: (+43) 732 / 640 530
Fax:  (+43) 732 / 640 530 - 20
Email: mailto:[EMAIL PROTECTED]


--
This is The Midgard Project's mailing list. For more information,
please visit the project's web site at http://www.midgard-project.org

To unsubscribe the list, send an empty email message to address
[EMAIL PROTECTED]



[midgard] a not existing include file in midgard

2000-03-09 Thread Andi Petzoldt

Hello,

i am try to install Midgard 1.2.5 on my Linux. I become every time the same
error, by installing the midgard_php_1.2.5 package. The configure is running
without errors, but the make delivered the following error to me:
  In file included from internal_functions.c:72:
  functions/php3_gd.h:44: gd.h: No such file or directory
  make: *** [internal_functions.o] Error 1
It seems, the file gd.h is doesnt exist. Can you mail me this include file?
Sorry for my bad english and thanks !!!

Bye ... Andi Petzoldt


--
This is The Midgard Project's mailing list. For more information,
please visit the project's web site at http://www.midgard-project.org

To unsubscribe the list, send an empty email message to address
[EMAIL PROTECTED]



RE: [midgard] Question to midgard-functions

2000-03-09 Thread Anatol Mayr / HEXAGON

Thanks, i've tried to access the articles of my topics in the
same way, but the result is a little bit strange, because no articles
are shown.

My site-structure is the following:

topic(18)
 -- subtopic(27)
 article(28)

 -- subtopic(28)
 No article here at the moment

 -- subtopic(29)
 article(26)
 article(24)
 article(25)
 article(27)

Here's the script:

$topic = mgd_list_topics(18);
if ($topic) {
  while ($topic-fetch()) { ?
H3 class="grey"(topic.description:h);/H3
?php $article = mgd_list_topic_articles($topic-id);
if ($article)
  while ($article-fetch) { ?
a class="navi" href="/buchtipps/beschreibung/(article.id);.html"
(article.title);/a /P
  ?php
   }
  }
} ?


So, I thought the script does the following:
Go to topic 18, have a look, if there are subtopics.
If yes, show the description of the subtopic. ('til this
point everything works fine). Have a look if there are
articles in this subtopic. If yes, show the article-id.
(but this doesn't work.It seems that the script never runs in the
"while ($article-fetch)".



Anatol Mayr
HEXAGON EDV-Dienstleistungen
Weissenwolffstra?e 14
A-4221 Steyregg, Austria
Tel.: (+43) 732 / 640 530
Fax:  (+43) 732 / 640 530 - 20
Email: mailto:[EMAIL PROTECTED]



--
This is The Midgard Project's mailing list. For more information,
please visit the project's web site at http://www.midgard-project.org

To unsubscribe the list, send an empty email message to address
[EMAIL PROTECTED]



Re: [midgard] Question to midgard-functions

2000-03-09 Thread Emiliano Heyns

Anatol Mayr / HEXAGON wrote:
 
 Thanks, i've tried to access the articles of my topics in the
 same way, but the result is a little bit strange, because no articles
 are shown.

 $topic = mgd_list_topics(18);
 if ($topic) {
   while ($topic-fetch()) { ?
 H3 class="grey"(topic.description:h);/H3
 ?php $article = mgd_list_topic_articles($topic-id);
 if ($article)
   while ($article-fetch) { ?

  ^
while ($article-fetch()) { ?

 a class="navi" href="/buchtipps/beschreibung/(article.id);.html"
 (article.title);/a /P
   ?php
}
   }
 } ?
 

Emile

--
This is The Midgard Project's mailing list. For more information,
please visit the project's web site at http://www.midgard-project.org

To unsubscribe the list, send an empty email message to address
[EMAIL PROTECTED]



RE: [midgard] Question to midgard-functions

2000-03-09 Thread Anatol Mayr / HEXAGON

Oh, oh, oh :-) thanks a lot - now it works fine!

Greetings to all of the midgardians,

Anatol

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
Behalf Of Emiliano Heyns
Sent: Thursday, March 09, 2000 2:59 PM
To: [EMAIL PROTECTED]
Subject: Re: [midgard] Question to midgard-functions


Anatol Mayr / HEXAGON wrote:

 Thanks, i've tried to access the articles of my topics in the
 same way, but the result is a little bit strange, because no articles
 are shown.

 $topic = mgd_list_topics(18);
 if ($topic) {
   while ($topic-fetch()) { ?
 H3 class="grey"(topic.description:h);/H3
 ?php $article = mgd_list_topic_articles($topic-id);
 if ($article)
   while ($article-fetch) { ?

  ^
while ($article-fetch()) { ?

 a class="navi"
href="/buchtipps/beschreibung/(article.id);.html"
 (article.title);/a /P
   ?php
}
   }
 } ?


Emile

--
This is The Midgard Project's mailing list. For more information,
please visit the project's web site at http://www.midgard-project.org

To unsubscribe the list, send an empty email message to address
[EMAIL PROTECTED]




--
This is The Midgard Project's mailing list. For more information,
please visit the project's web site at http://www.midgard-project.org

To unsubscribe the list, send an empty email message to address
[EMAIL PROTECTED]



Re: [midgard] Unsubscribe from list?

2000-03-09 Thread Emiliano Heyns

Christopher J Ceska wrote:
 
 I am having the same problem.

Try sending mail to [EMAIL PROTECTED] I only manage
the @mi-recordz list, which is going to be phased out. Greywolves.org
is back up and once again running the mailinglist.

Emile

--
This is The Midgard Project's mailing list. For more information,
please visit the project's web site at http://www.midgard-project.org

To unsubscribe the list, send an empty email message to address
[EMAIL PROTECTED]



RE: [midgard] Unsubscribe from list?

2000-03-09 Thread Jouke Visser

Hi,

I tried this too now, but the listserver at mi-recordz.com tells me I'm not
on the list...

Jouke.

 -Oorspronkelijk bericht-
 Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]namens Henri
 Bergius
 Verzonden: donderdag 9 maart 2000 18:07
 Aan: [EMAIL PROTECTED]
 CC: Christopher J Ceska
 Onderwerp: Re: [midgard] Unsubscribe from list?


 On  9 Mar, Christopher J Ceska wrote:
  I am having the same problem.

 Due to mail server problems we are currently running
 two separate instances of the mailing lists, and
 these are a bit out of sync.

 We're working on getting the two synchronized, but
 that might take a while.

 In the meantime, if you wish to get off the list
 fast, send an email to both unsubscribe addresses:

 [EMAIL PROTECTED]
 [EMAIL PROTECTED]

  -chris

 /Bergie

 --
 -- Henri Bergius -- +358 40 525 1334 -- [EMAIL PROTECTED] --
http://www.iki.fi/Henri.Bergius


 --
 This is The Midgard Project's mailing list. For more information,
 please visit the project's web site at http://www.midgard-project.org

 To unsubscribe the list, send an empty email message to address
 [EMAIL PROTECTED]



--
This is The Midgard Project's mailing list. For more information,
please visit the project's web site at http://www.midgard-project.org

To unsubscribe the list, send an empty email message to address
[EMAIL PROTECTED]



Re: [midgard] HTML editor for textarea boxes

2000-03-09 Thread CORBIN HARRIS

I've been using Egrail in setting up a new website.
They've implemented a text editor that allows to add bold  italic tags,
not as cool(yet) as the Manila feature set.  I've tried using Mozilla M14 
a pre-release version of IE 5/Mac  I'm not able to use that feature.
Is there some reason this only works for IE 5/Windows? And if so why?
Thanks,
Corbin Harris
[EMAIL PROTECTED]


--
This is The Midgard Project's mailing list. For more information,
please visit the project's web site at http://www.midgard-project.org

To unsubscribe the list, send an empty email message to address
[EMAIL PROTECTED]



[midgard] Session data ?

2000-03-09 Thread Michael Ed

Since I force external users to log in to our
XtraNet there should be a possibility to identify
and log sessions. In the new agreement with
our distributors the *must* read news every day.
(Else I'll send a techie out to spank them.)
I scanned the documentation on the project site,
but found nothing pointing towards this (session
logging - not spanking!).

Please supply me with a hint.

We do this on the old XtraNet :
...
WHERE
Users.username = '$REMOTE_USER'
AND  
...


-- 
Regards,
Blixten

Cellular : +46 (0)708-999 105

Linux  KDE  Compaq DPEP !

--
This is The Midgard Project's mailing list. For more information,
please visit the project's web site at http://www.midgard-project.org

To unsubscribe the list, send an empty email message to address
[EMAIL PROTECTED]