in reply to Re: Re: Parsing of the web log file, access_log
in thread Parsing of the web log file, access_log
However, I noticed a strange line here:
That "my" is scoped inside an if block and it won't be visible elsewhere. Also, for some reason you're creating a hash reference that has only one element, not a key/value pair.push (my @visual_page_values, {$processed_visual_pages{$dateproc}});
I notice at the start of your program that you commented out "use strict;" That's a very bad idea. I doubt you will be able to untangle the uses of "my" and global variables until you turn strict back on.
|
|---|