D
Danny
WE are using the redirect command in the code below, I am trying to test.
we are trying to post our products on the shopping sites, like shopping.com,
froogle, nextag etc etc.
But when we use this url as you see below as the product_url, it gives an
error. But if you copy and paste it into the url it will work. ODD. So I
tried to do a redirect from my cgi directory and use this cgi script as the
product url for these sites. But it does not work.
How can I some how make it go to my website and act as if the product_url is
being called from my website
PS. the url works in some sites like froogle.
the error comes from our product.cgi saying "cannot create session"
I know the problem in there, but how can we make this work?
here is code that does not work.
(works for static html of course)
#!/usr/bin/perl
$theurl1 =
"http://www.domain.com/product.cgi?productid=455&department=23333";
use CGI;
use CGI::Carp qw(fatalsToBrowser); # to display warnings and errors on the
browser
$co = new CGI;
print $co->redirect(-url => $theurl1); # redirect to my page
we are trying to post our products on the shopping sites, like shopping.com,
froogle, nextag etc etc.
But when we use this url as you see below as the product_url, it gives an
error. But if you copy and paste it into the url it will work. ODD. So I
tried to do a redirect from my cgi directory and use this cgi script as the
product url for these sites. But it does not work.
How can I some how make it go to my website and act as if the product_url is
being called from my website
PS. the url works in some sites like froogle.
the error comes from our product.cgi saying "cannot create session"
I know the problem in there, but how can we make this work?
here is code that does not work.
(works for static html of course)
#!/usr/bin/perl
$theurl1 =
"http://www.domain.com/product.cgi?productid=455&department=23333";
use CGI;
use CGI::Carp qw(fatalsToBrowser); # to display warnings and errors on the
browser
$co = new CGI;
print $co->redirect(-url => $theurl1); # redirect to my page