I am using the old code and recently IE always presents when I firest access the page. Appraently it expects a " ' " or something. It is at a point where yousee "hidden" followed by "PHPSESSID" I thinkit has to do with the double quotes versus single quote? IS there a fix for this because I cannot find the code anywhere..
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Does it work still with the old brower? Have you changed your Server/PHP config? Has this error appeared before?
Please let me know know will then try to help you. But usually I will go ahead with the new version.
Tamo
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
If I turn off Java Script I do nto get the error. It happens when you firs hit the index.php.. Internet Explorer errors and asks if you wnat to debug... This is what we were thinking..
I think you're on the right track by removing the double quotes around the variables "hidden," "PHPSESSID" and "46f961ec6f919b23223ca24cf0c6b96f." I did a little investigating and javascript cannot process double quotes embedded within a string. So, when it hits:
type="hidden"
it thinks that is the end of the string because the double quotes closes the beginning of the string and is cranky because it is expecting a semicolon to end the line of code. There should only be single quotes until the closing double quote at the end of the string at:
/>\r\n"
Of course, some of the functions being called could be buggy too but replacing the double quotes with single quotes for the 3 variables mentioned above should take care of the specific error message we have been getting...
This code seems to be dynamically generated because I cannot find it in any of the pages..
\Bob
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am using the old code and recently IE always presents when I firest access the page. Appraently it expects a " ' " or something. It is at a point where yousee "hidden" followed by "PHPSESSID" I thinkit has to do with the double quotes versus single quote? IS there a fix for this because I cannot find the code anywhere..
Does it work still with the old brower? Have you changed your Server/PHP config? Has this error appeared before?
Please let me know know will then try to help you. But usually I will go ahead with the new version.
Tamo
If I turn off Java Script I do nto get the error. It happens when you firs hit the index.php.. Internet Explorer errors and asks if you wnat to debug... This is what we were thinking..
I think you're on the right track by removing the double quotes around the variables "hidden," "PHPSESSID" and "46f961ec6f919b23223ca24cf0c6b96f." I did a little investigating and javascript cannot process double quotes embedded within a string. So, when it hits:
type="hidden"
it thinks that is the end of the string because the double quotes closes the beginning of the string and is cranky because it is expecting a semicolon to end the line of code. There should only be single quotes until the closing double quote at the end of the string at:
/>\r\n"
Of course, some of the functions being called could be buggy too but replacing the double quotes with single quotes for the 3 variables mentioned above should take care of the specific error message we have been getting...
This code seems to be dynamically generated because I cannot find it in any of the pages..
\Bob