- Aug 20, 2000
- 20,577
- 432
- 126
I know, I know. I should have started off with PHP in the first place. Of course being 10,000+ lines of code in using Perl under mod_perl that's no longer an option... 
Okay, so I've read and read and read one more time all of the documentation available for mod_perl, but there are some basic questions I still am not sure about. Here's my list.
1. Pertains to the common my() Scoped Variable issue. If I've got variables within subroutines, all scoped with my(), are those variable values expiring at the end of execution for that specific user? The variable persistance thing is one hell of a piss-off.
2. Using mod_perl to interact with MySQL using DBI and DBD::mysql. The largest text block I seem to be able to transmit from a Web form through the DBI into MySQL is about 1200 characters long. I've tried upping the max_allowed_packet variable in MySQL's configuration to an enormous 10048576 - no help. How can I transmit large blocks of text from my Web form into MySQL, where is the cutoff occurring?
HELP!
Okay, so I've read and read and read one more time all of the documentation available for mod_perl, but there are some basic questions I still am not sure about. Here's my list.
1. Pertains to the common my() Scoped Variable issue. If I've got variables within subroutines, all scoped with my(), are those variable values expiring at the end of execution for that specific user? The variable persistance thing is one hell of a piss-off.
2. Using mod_perl to interact with MySQL using DBI and DBD::mysql. The largest text block I seem to be able to transmit from a Web form through the DBI into MySQL is about 1200 characters long. I've tried upping the max_allowed_packet variable in MySQL's configuration to an enormous 10048576 - no help. How can I transmit large blocks of text from my Web form into MySQL, where is the cutoff occurring?
HELP!