- Posts: 2
COMMUNITY FORUM
IE7 Syntax Error
- R ICKE
-
Topic Author
- Offline
- New Member
Less
More
16 years 10 months ago #14715
by R ICKE
IE7 Syntax Error was created by R ICKE
Hey -
I've got SIG up and working properly on my website, but bizarrely in IE it returns a syntax error and an irritating warning symbol in the status bar. It's fine in Firefox, though.
I know other people have had this problem in the past, but I can't find a solution anywhere on the net - could the developer PLEASE advise us as how to deal with it?
The site in question is www.arden-theatre.com/joomla
Thanks in advance,
Rob
I've got SIG up and working properly on my website, but bizarrely in IE it returns a syntax error and an irritating warning symbol in the status bar. It's fine in Firefox, though.
I know other people have had this problem in the past, but I can't find a solution anywhere on the net - could the developer PLEASE advise us as how to deal with it?
The site in question is www.arden-theatre.com/joomla
Thanks in advance,
Rob
Please Log in or Create an account to join the conversation.
- R ICKE
-
Topic Author
- Offline
- New Member
Less
More
- Posts: 2
16 years 10 months ago #14716
by R ICKE
Replied by R ICKE on topic Re: IE7 Syntax Error
Does the developer come on this forum or check his e-mail? Bit disappointed that no-one's been able to offer any help - and I know other people who've said the same thing about this place.
Please Log in or Create an account to join the conversation.
- mitokat
-
- Offline
- Junior Member
Less
More
- Posts: 24
16 years 10 months ago #14717
by mitokat
Replied by mitokat on topic Re: IE7 Syntax Error
I dont think the developer comes to this forum :( I tried your site but dont see the error. I am having an issue with IE too so checking to see if it was similar.
Please Log in or Create an account to join the conversation.
- juanp
-
- Offline
- New Member
Less
More
- Posts: 11
14 years 3 months ago #14718
by juanp
Replied by juanp on topic Re: IE7 Syntax Error
I used the next solution given by SouthernStudios. I would have never figured it out
forum.joomlaworks.net/simple-image-gallery-(plugin)/fix-discovered-for-ie7-'syntax-error'-problems/?action=post;num_replies=1
in public_html/plugins/content/jwsig.php I changed
<script type="text/javascript" src="'.$mosConfig_live_site.'/plugins/content/plugin_jw_sig/mootools.js"></script>
to
<script type="text/javascript" src="'.$mosConfig_live_site.'/plugins/content/plugin_jw_sig/mootools.js" defer="defer"></script>
and it was all right.
forum.joomlaworks.net/simple-image-gallery-(plugin)/fix-discovered-for-ie7-'syntax-error'-problems/?action=post;num_replies=1
in public_html/plugins/content/jwsig.php I changed
<script type="text/javascript" src="'.$mosConfig_live_site.'/plugins/content/plugin_jw_sig/mootools.js"></script>
to
<script type="text/javascript" src="'.$mosConfig_live_site.'/plugins/content/plugin_jw_sig/mootools.js" defer="defer"></script>
and it was all right.
Please Log in or Create an account to join the conversation.
- juanp
-
- Offline
- New Member
Less
More
- Posts: 11
14 years 3 months ago #14719
by juanp
Replied by juanp on topic Re: IE7 Syntax Error
I FOUND a simple SOLUTION
I had a problem:
the sig plugin showed this warning:
Mensaje: Syntax error
Línea: 1
Carácter: 1
Código: 0
URI: www.mysite.com/://
and when I was logged it also showed these warnings:
Mensaje: '$tmp' is null or not an object
Línea: 92
Carácter: 741
Código: 0
URI: www.mysite.com/media/system/js/mootools.js
Mensaje: Object doesn't support this property or method
Línea: 59
Carácter: 102
Código: 0
URI: www.mysite.com/media/system/js/mootools.js
I FOUND a simple SOLUTION
since it was working fine
just that it showed warnings
I silenced it AND NOW IT WORKS GREAT
I simply added this line to the file /public_html/plugins/content/jwsig.php:
<script type="text/javascript">window.onerror=Block_Error;function Block_Error(){return true;}</script>
before this line:
<script type="text/javascript" src="'.$mosConfig_live_site.'/plugins/content/plugin_jw_sig/mootools.js"></script>
I found this solution here:
www.mooforum.net/help11/object-doesn-support-this-property-method-t977.html
and I was told in
extensions.qivva.com/forum.html?func=view&id=1674&catid=5
that this was a useful link as well:
www.seongyupyoo.com/index.php?option=com_content&task=view&id=10&Itemid=29
I had a problem:
the sig plugin showed this warning:
Mensaje: Syntax error
Línea: 1
Carácter: 1
Código: 0
URI: www.mysite.com/://
and when I was logged it also showed these warnings:
Mensaje: '$tmp' is null or not an object
Línea: 92
Carácter: 741
Código: 0
URI: www.mysite.com/media/system/js/mootools.js
Mensaje: Object doesn't support this property or method
Línea: 59
Carácter: 102
Código: 0
URI: www.mysite.com/media/system/js/mootools.js
I FOUND a simple SOLUTION
since it was working fine
just that it showed warnings
I silenced it AND NOW IT WORKS GREAT
I simply added this line to the file /public_html/plugins/content/jwsig.php:
<script type="text/javascript">window.onerror=Block_Error;function Block_Error(){return true;}</script>
before this line:
<script type="text/javascript" src="'.$mosConfig_live_site.'/plugins/content/plugin_jw_sig/mootools.js"></script>
I found this solution here:
www.mooforum.net/help11/object-doesn-support-this-property-method-t977.html
and I was told in
extensions.qivva.com/forum.html?func=view&id=1674&catid=5
that this was a useful link as well:
www.seongyupyoo.com/index.php?option=com_content&task=view&id=10&Itemid=29
Please Log in or Create an account to join the conversation.