[pm-h] Perl Modules at HG

Mev412 mev412 at gmail.com
Sun Dec 2 08:16:24 PST 2018


Mike,

Try changing

<img src="accent10x10.GIF" border="0">

to

<img src="/accent10x10.GIF" border="0">

If you leave off the / at the beginning, the path will be relative from the
current url, which turns into /cgi-bin/accent10x10.GIF (which does not
exist).

The way I discovered the redirect issue was using the Browser's network
tab. This tab shows all requests to the server, whether its to load HTML,
AJAX, javascript, css, etc. I prefer Firefox when debugging w/ the network
tab because it does a better job at showing when redirects take place (the
original request will show a 301 status and a new request will show up),
and it also does better at preserving form data after redirects.

1) Open firefox
2) Navigate to your page
3) Right click somewhere on page and click "Inspect Element"
4) Click the "Network" tab
5) Check "Persist Logs"
6) Submit form or reload page to see network requests populate
7) Select network request to view more details such as url, form data,
headers, response, etc.

Hope this helps. I attached a screenshot to show an example.

Best Regards,
Christopher Mevissen

[image: site2.png]


On Sun, Dec 2, 2018 at 8:48 AM Mike Flannigan <mikeflan at att.net> wrote:

>
> Sorry for bombarding you guys with e-mails, but I wrote
> the e-mail below incorrectly.  This is what I meant
> to say about what fixed my problem:
>
> WOW, I just tried:
> <form method="POST" action="http://www.mflan.com/cgi-bin/qa.cgi">
> and IT WORKS!!!!!!!!!!!!
>
>
> This redirect issue seems to be propagated across my site.
> I have removed the single Redirect I had and it did not
> seem to change anything.
>
> At the top of my webpage I have this simple image:
>
> <IMG src="../common/accent10x10.GIF" border=0>
>
> in my program and it didn't work.
>
> So I change it to
> <IMG src="http://www.mflan.com/cgi-bin/accent10x10.GIF" border=0>
> and it doesn't work.
>
> I change it to
> <IMG src="accent10x10.GIF" border=0>
> and it doesn't work.
>
> After doing more testing I think I am actually going to have
> to move to another ISP to fix this, unless HG fixes it.
>
> This simple site does not display the
> accent10x10.GIF
> graphic
> http://www.mflan.com/cgi-bin/test.cgi
>
> Mev412,
>
> If you could tell me how you figured out my problem
> was related to redirection, that may help me.
>
>
> Mike
>
>
> On 12/1/2018 12:11 PM, Mike Flannigan wrote:
> >
> > I think you may be on to something there, but it did not
> > work when I changed my line:
> >
> > <FORM ACTION="http://mflan.com/cgi-bin/qa.cgi" METHOD="POST">
> > to
> > <FORM ACTION="http://www.mflan.com/cgi-bin/qa.cgi" METHOD="POST">
> >
> > I say it does not make send for the link
> > http://mflan.com/cgi-bin/qa.cgi?name=muscle
> > to work if File::Find was the problem.
> >
> >
> > WOW, I just tried:
> > INCORRECT************ <FORM
> > ACTION="http://www.mflan.com/cgi-bin/qa.cgi" METHOD="POST">
> > ***********INCORRECT
> > and IT WORKS!!!!!!!!!!!!
> >
> > Now I need to figure out what is going on here.
> > Why did it work before and then quit working.
> > I am positive it worked before.
> >
> > If anybody can enlighten me, please call me at
> > 281-286-6869.
> >
> >
> >
> > Mike
> > 281-286-6869
> >
> _______________________________________________
> Houston mailing list
> Houston at pm.org
> https://mail.pm.org/mailman/listinfo/houston
> Website: http://houston.pm.org/
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.pm.org/pipermail/houston/attachments/20181202/147fdb51/attachment-0001.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: site2.png
Type: image/png
Size: 139362 bytes
Desc: not available
URL: <http://mail.pm.org/pipermail/houston/attachments/20181202/147fdb51/attachment-0001.png>


More information about the Houston mailing list