Apache::Cookie comes in two parts (although when things work, you don't need to know this). There is the Perl part in Cookie.pm which seems to be installed. Then there is the binary (xs) part which apparently should be in '/usr/lib/perl5/site_perl/5.6.0/i386-linux/auto/Ap ache/Cookie/Cookie.so' but isn't.
Basically, the compilation/installation of Apache::Cookie/libapreq went wrong. Try installing libapreq from scratch. Tar zxvf if. Run the make's and any tests and watch for errors carefully. If there are none, after make install and an Apache reboot, things should be ok
(footnote, why the heck is there a space between Ap and ache in Apache. I swear I didn't type a space in there but the preview windows is giving me one)
it probably has to do with the width of the textarea (50 characters) and the way in which word wrapping is handled. the following string of numbers was entered without spaces:
Sorry it took so long to notice this! I posted the original message, and it took a long time for it to appear here so I sort of gave up on it. I found the problem with starting up apache. When I installed libapreq it installed the lib files in/usr/local/lib
When apache tried to start up it could not find the library. I had to add the following to my library path:
export LD_LIBRARY_PATH=/usr/local/lib
and now I can get apache to start up.
Sorry about the delay and thank you for the reply!
Binary portion missing (Score:1)
Basically, the compilation/installation of Apache::Cookie/libapreq went wrong. Try installing libapreq from scratch. Tar zxvf if. Run the make's and any tests and watch for errors carefully. If there are none, after make install and an Apache reboot, things should be ok
(footnote, why the heck is there a space between Ap and ache in Apache. I swear I didn't type a space in there but the preview windows is giving me one)
Re:Binary portion missing (Score:1)
it probably has to do with the width of the textarea (50 characters) and the way in which word wrapping is handled. the following string of numbers was entered without spaces:
12345678901234567890123456789012345678901234567
i would think this is the browser's fault...surely the server doesn't need to think about word wrapping when the form is POSTed...
Re:Binary portion missing (Score:1)
When apache tried to start up it could not find the library. I had to add the following to my library path:
export LD_LIBRARY_PATH=/usr/local/lib
and now I can get apache to start up.
Sorry about the delay and thank you for the reply!