perl_diver

msg:3597732 | 7:03 pm on Mar 11, 2008 (gmt 0) |
The first line is a valid http header, but if you see it displayed as text in the browser that means another http header has already been printed. The second line is not valid as-is. But it could be that the author as deliberately coded the script in an unusual manner and the "q^" line is just the beginning of some more code that gets added to it and becomes valid code. "q" is the single-quote operator and "^" would be the delimiter, in total it would look like this: print q^some stuff to print^; although using the "^" character as a string delimiter is also unusual it is valid if someone wanted to do that.
|
TheSeoGuy

msg:3597745 | 7:19 pm on Mar 11, 2008 (gmt 0) |
Thanks for the reply and the info perl_diver. I believe you are correct in your assumption. The line directly after print q^ is standard html... <table border="0"... If I go to the bottom of the file, it ends with </table>^; Note the closing ^ "closing" carrot. I will try to find out where else the http header is getting written out... Thanks again.
|
perl_diver

msg:3597802 | 8:15 pm on Mar 11, 2008 (gmt 0) |
Very good.
|
phranque

msg:3597954 | 11:55 pm on Mar 11, 2008 (gmt 0) |
most likely the including script or the server is providing the header. [edited by: phranque at 2:44 am (utc) on Mar. 17, 2008]
|
TheSeoGuy

msg:3600922 | 7:45 pm on Mar 14, 2008 (gmt 0) |
Thanks for the reply phranque. We were able to get the main site running, but now we are running into another issue. Part of the site relies on a module called Crypt::CBC. This module is not installed on our host server by default nor will they install it for us. Is there another "more standard" module that we might be able to use in place of the Crypt::CBC module? Thanks.
|
phranque

msg:3601318 | 6:54 am on Mar 15, 2008 (gmt 0) |
why not install it yourself in a local library and refer to it with a "use lib" statement in your script?
|
wruppert

msg:3602053 | 12:54 pm on Mar 16, 2008 (gmt 0) |
You can install Crypt::CBC from CPAN, it is a pure Perl module, into a local directory. You can modify the PERL5LIB environment variable to include the local library. There was a related discussion at [webmasterworld.com...] . [edited by: phranque at 2:50 am (utc) on Mar. 17, 2008] [edit reason] fixed the link [/edit]
|
TheSeoGuy

msg:3602890 | 1:45 pm on Mar 17, 2008 (gmt 0) |
phranque & wruppert, Thank you both for your replies. Please excuse my inexperience with Perl and Perl modules. I see in the code the lib path that references the un-installed perl module. If I understand you correctly, I can just upload the .pm file to the directory of where the lib path is already pointing and it is "installed"? Do I only need to upload the .pm file? When I unzip the module, it consists of numerous files and directories. Thanks again.
|
phranque

msg:3603495 | 11:09 pm on Mar 17, 2008 (gmt 0) |
for simpler modules, the zipped file contains the .pm file and the make files and usually a readme file. try creating a subdirectory in your lib path directory: mkdir /(lib_path)/Crypt and then copy CBC.pm to that subdirectory. if the package has more operational pieces/parts than just the one .pm, it's usually easier to install it with make.
|
TheSeoGuy

msg:3603972 | 1:30 pm on Mar 18, 2008 (gmt 0) |
Thanks for the info phranque. It is much appreciated.
|
chorny

msg:3645259 | 10:31 pm on May 8, 2008 (gmt 0) |
TheSeoGuy, package manager for your OS may contain ready package for Crypt::CBC. Or do cpan Crypt::CBC from command prompt. [edited by: phranque at 2:47 am (utc) on May 9, 2008] [edit reason] No urls, please. See TOS [webmasterworld.com] [/edit]
|
TheSeoGuy

msg:3645689 | 1:33 pm on May 9, 2008 (gmt 0) |
Thanks for your reply chorny. Because we were limited in access due to the hosting environment restrictions, we ended up removing the few lines of code that referenced the module in question and were able to get the site to function properly. Thanks again.
|
|