RE: [users@httpd] Newbie CGI: nested href

2005-06-04 Thread Michael D. Berger
Indeed, one "non-standard" link had to be corrected. Later I'll run find...grep to check for other problems. Mike. -- Michael D. Berger [EMAIL PROTECTED] > -Original Message- > From: Dan Mahoney, System Admin [mailto:[EMAIL PROTECTED] > Sent: Saturday, June 04, 2005 10:37 AM > To: users

RE: [users@httpd] Newbie CGI: nested href

2005-06-04 Thread Dan Mahoney, System Admin
On Sat, 4 Jun 2005, Michael D. Berger wrote: Problem solved by pathcing the href in the outgoing response. Mike. It was either that, or come up with some complex mod_rewrite answer so your users wouldn't see the cgi url but rather the url of some page. I figured just tweaking the links (as

RE: [users@httpd] Newbie CGI: nested href

2005-06-04 Thread Michael D. Berger
Problem solved by pathcing the href in the outgoing response. Mike. -- Michael D. Berger [EMAIL PROTECTED] > -Original Message- > From: Michael D. Berger [mailto:[EMAIL PROTECTED] > Sent: Saturday, June 04, 2005 12:34 AM > To: users@httpd.apache.org > Subject: RE: [EMAIL PROTECTED] Newb

RE: [users@httpd] Newbie CGI: nested href

2005-06-03 Thread Michael D. Berger
I have a legacy tree with numerous branches, and many relative links. I was hoping to get it all with one CGI. Mike. -- Michael D. Berger [EMAIL PROTECTED] > -Original Message- > From: Dan Mahoney, System Admin [mailto:[EMAIL PROTECTED] > Sent: Saturday, June 04, 2005 12:32 AM > To: Apa

Re: [users@httpd] Newbie CGI: nested href

2005-06-03 Thread Dan Mahoney, System Admin
On Sat, 4 Jun 2005, Michael D. Berger wrote: Try putting the cgi in the same directory as the html file and turning on execCGI in that directory? That's the easy answer. I suppose there's something harder involving mod_rewrite. But since you're parsing the html anyway, you could rewrite the

[users@httpd] Newbie CGI: nested href

2005-06-03 Thread Michael D. Berger
I wrote a CGI that opens an html file, reads it and sends it out (with some modification). Now these files contain relative links of the form: something Now when the client clicks on "something", only the relative paths appear to the CGI, and I cannot open the file. What should I do? 1. I coul