I have a very strange security problem that only happens on MX--I've tested it on 4.5 and 5.0 and it works fine. Here's the problem:
- Create a new directory under the web root
- Create a new file named security_test.cfm
- Change permissions on that file so only Administrators group has full...
I'm not 100% sure what you mean when you say "when the page is brought normally from the browser..."
Does the home.html file exist? Is that the page it is pointing to and failing?
If you're using IE, go to View | Source -- this will show you the HTML for the FRAMESET code (assuming...
You cannot do what you are asking for. You can't include an "onClick" as part of a URL--that is JavaScript running on the client that has the context of the already loaded frameset.
What you need to do is email a link to the frameset--then include in the query string (after the '?')...
Why don't you read in the original file at the beginning, and then at the end after the connection is lost, write back over the file with what's not processed. You can even dump into a "completed" file what was done.
Example:
my $file_not_done = 'path_and_file';
my $file_completed =...
I think this will do exactly what you want:
##########
# BEGIN
##########
# Define the regex to be used (instead of having to run
# multiple regex's)
my $regex = join('|', keys %hash);
my (%hash1, %hash2, @array1, @array2);
while ($line = <FILE>) {
if ($line =~ /^($regex)/) {...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.