Hi all I am using the get and post method to get the variables name and last name i am able to get the second cgi but when i am checking the variables the "QUERY_STRING" is coming empty even though i can see the value in the url can pls some one advice why i am gettong the QUERY_STRING as empty
...This is pretty basic stuff
Hi All,Thanks for the reply i am attaching the main file with the fields , i am using cgi for the same. If you can review and see if you can see any issue on the sameI am using the below link :http://cms.digitas.com/iw-bin/iw_cgi_wrapper.cgi/video_datacapture_callout.ipl
i am trying to run a find and grep command it is giving me issue but in command line it works fine...
Note that 'system' function does not capture command's execution output. Perhaps you can try to modify it as follows.Firstly, rigth before execution, log out the command you've built. Double-check that your command is really what you expect it to be. Secondly, use qx, redirect STDERR to STDOUT and log out execution output as well.Something Like this:my $cmds="find // /| grep /-i libc/.so"; # Btw, that's very strange 'find' syntax. Perhaps you meant to escape slash? If so, it's - 'find \/ whatever', not 'find // whatever'log_it($cmds);#my $output = system("$cmds>log 2>$1"); Commented Out. Instead:my $output = qx($cmds 2>$1);log_it($output);
my $ouput = qx($cmds 2>&1);
I believe that should be:my $ouput = qx($cmds 2>&1);