Re: Developer plugin for Firefox 23 doesn't work
See https://code.google.com/p/google-web-toolkit/issues/detail?id=8464 On Tuesday, November 26, 2013 4:27:50 PM UTC+1, Paul Wujek wrote: > > And again same issue with FF 25.01 Ubuntu 13.10. > > On Thursday, November 21, 2013 10:32:59 PM UTC-5, Mikhail wrote: >> >> same issue with plugin 1.25 and firefox 25, fedora 18 x64 >> > -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to google-web-toolkit@googlegroups.com. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/groups/opt_out.
Re: Developer plugin for Firefox 23 doesn't work
And again same issue with FF 25.01 Ubuntu 13.10. On Thursday, November 21, 2013 10:32:59 PM UTC-5, Mikhail wrote: > > same issue with plugin 1.25 and firefox 25, fedora 18 x64 > -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to google-web-toolkit@googlegroups.com. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/groups/opt_out.
Re: Developer plugin for Firefox 23 doesn't work
Same issue on ubuntu 12.04 x64 Firefox 25. plug-in 1.25 Le vendredi 22 novembre 2013 04:32:59 UTC+1, Mikhail a écrit : > > same issue with plugin 1.25 and firefox 25, fedora 18 x64 > -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to google-web-toolkit@googlegroups.com. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/groups/opt_out.
Re: Developer plugin for Firefox 23 doesn't work
I have and that doesn't work. It's a pretty persistent error. Cannot test my GWT at this point. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to google-web-toolkit@googlegroups.com. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/groups/opt_out.
Firefox versioning problems with developer plugin (was: Developer plugin for Firefox 23 doesn't work)
Hi, further investigation. I'm not very qualified to discuss linux library issues, sorry if terms are used in a wrong way. But from my previous experience and observation of current situation I see situation this way. I'm trying command objdump --dynamic-syms --demangle -w libxul.so | grep NS_GetDebug to compare dynamic symbol tables for FF versions 22, 23.0 and 23.0.1 All firefox builds are downloaded from Firefox FTP. FF 22 reports: 00fb339e gDF .text 0011 BaseNS_GetDebug FF 23.0 reports: 0102505e gDF .text 0011 xul23.0 NS_GetDebug FF 23.0.1 reports: 0102572e gDF .text 0011 xul23.0.1 NS_GetDebug I don't know a term, but lets call it symbol version, FF 23 and 23.0.1 packaged in Fedora repositories report not xul23.0 (what expects developer plugin) but mozjs. FF 22 and 23.0 dowloaded from Mozilla works with developer plugin as expected. Developer plugin doesn't work with FF 23 from Fedora and FF 23.0.1 from Mozilla. So far my workaround is to uninstall firefox installed from repositories, download "supported" by developer plugin version of FF from Mozilla FTP: wget -c ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/23.0/linux-x86_64/en-US/firefox-23.0.tar.bz2 tar -xjvf firefox-23.0.tar.bz2 and use it for developement. It works with GWT developer plugin without issues. G. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to google-web-toolkit@googlegroups.com. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/groups/opt_out.
Re: Developer plugin for Firefox 23 doesn't work
On Wed, Sep 4, 2013 at 12:18 PM, GWTter wrote: > Has anyone tried just removing the plugin and reinstalling it? I was > having the same issue and that seems to have remedied it. > > No, this doesn't help. While looking at: Failed to load native module at path '/home/gv/.mozilla/firefox/cwbagi2d.default/extensions/ gwt-dev-plu...@google.com/lib/Linux_x86_64-gcc3/ff230/libgwt_dev_ff230.so': (80004005) /usr/lib64/firefox/xulrunner/libxul.so: version `xul23.0' not found (required by /home/gv/.mozilla/firefox/cwbagi2d.default/extensions/ gwt-dev-plu...@google.com/lib/Linux_x86_64-gcc3/ff230/libgwt_dev_ff230.so) it seems, that plugin's libgwt_dev_ff230.so library wants to load libxul.so identified as xul23.0, but Fedora packaged library reports itself as mozjs (copy-pasted from googled forum, but mine output was the same): Fedora Firefox 23 reports: $ objdump --dynamic-syms --demangle libxul.so | grep CheckedUnwrap DF *UND* mozjs js::CheckedUnwrap(JSObject*, bool) Expected report: $ objdump --dynamic-syms --demangle libxul.so | grep CheckedUnwrap 01863030 gDF .text 003d xul23.0 js::CheckedUnwrap(JSObject*, bool) Future builds (at Rawhide) report version same way - mozjs. It seems that there is going some transformation in Firefox module versioning, and we are caught in between of something. I switched back to older Firefox version. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to google-web-toolkit@googlegroups.com. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/groups/opt_out.
Re: Developer plugin for Firefox 23 doesn't work
Has anyone tried just removing the plugin and reinstalling it? I was having the same issue and that seems to have remedied it. On Thursday, August 29, 2013 4:46:04 PM UTC+2, Emil Burzo wrote: > > On Friday, August 16, 2013 12:42:01 PM UTC+3, Gražvydas Valeika wrote: > >> Hi, >> >> I just updated FF to 23. And I see strange behavior. >> >> Developer plugin properly installed and shows version 1.23 and latest >> update date of today, >> >> but while starting DevMode application I'm getting 'Development Mode >> requires the Google Web Toolkit Developer Plugin' prompt. I'm installing >> plugin again, FF restarts, but while trying again I am getting plugin >> install prompt as I wouldn't have plugin installed. >> >> :( >> >> Fedora 18, 64bit. >> >> >> Thanks, >> >> Grazvydas >> > > Happening to me also. > > If I open up the error console, I can see this message: > > Failed to load native module at path > '/home/eaglex/.mozilla/firefox/ddmltom4.default/extensions/ > gwt-dev-plu...@google.com/lib/Linux_x86_64-gcc3/ff230/libgwt_dev_ff230.so': > (80004005) /usr/lib/firefox/libxul.so: version `xul23.0' not found > (required by /home/eaglex/.mozilla/firefox/ddmltom4.default/extensions/ > gwt-dev-plu...@google.com/lib/Linux_x86_64-gcc3/ff230/libgwt_dev_ff230.so) > > I'm guessing it's related. > > Anyone have an idea on what to look for? My google-fu is weak with this > one. > > -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to google-web-toolkit@googlegroups.com. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/groups/opt_out.
Re: Developer plugin for Firefox 23 doesn't work
On Friday, August 16, 2013 12:42:01 PM UTC+3, Gražvydas Valeika wrote: > Hi, > > I just updated FF to 23. And I see strange behavior. > > Developer plugin properly installed and shows version 1.23 and latest > update date of today, > > but while starting DevMode application I'm getting 'Development Mode > requires the Google Web Toolkit Developer Plugin' prompt. I'm installing > plugin again, FF restarts, but while trying again I am getting plugin > install prompt as I wouldn't have plugin installed. > > :( > > Fedora 18, 64bit. > > > Thanks, > > Grazvydas > Happening to me also. If I open up the error console, I can see this message: Failed to load native module at path '/home/eaglex/.mozilla/firefox/ddmltom4.default/extensions/gwt-dev-plu...@google.com/lib/Linux_x86_64-gcc3/ff230/libgwt_dev_ff230.so': (80004005) /usr/lib/firefox/libxul.so: version `xul23.0' not found (required by /home/eaglex/.mozilla/firefox/ddmltom4.default/extensions/gwt-dev-plu...@google.com/lib/Linux_x86_64-gcc3/ff230/libgwt_dev_ff230.so) I'm guessing it's related. Anyone have an idea on what to look for? My google-fu is weak with this one. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to google-web-toolkit@googlegroups.com. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/groups/opt_out.
Re: Developer plugin for Firefox 23 doesn't work
Working fine for me. FF 23.0.1 GWT 2.4.1 Plugin 1.23 Win 7 64-bit. On Monday, August 26, 2013 5:54:58 PM UTC+10, Gražvydas Valeika wrote: > > On Mon, Aug 26, 2013 at 3:54 AM, Joshb >wrote: > >> We have the same issue. Worked around by downloading the ESR version >> here: >> >> http://www.mozilla.org/en-US/firefox/organizations/all.html >> >> Older version meant for enterprise. Doesn't change very often. Will at >> least get you up and running. Since we only use FF for GWT development, >> doesn't cause any other issues. >> >> Same there. I only downgraded to FF 17 using fedora repositories. > It works, but developer tools in FF >= 22 were better... > -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to google-web-toolkit@googlegroups.com. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/groups/opt_out.
Re: Developer plugin for Firefox 23 doesn't work
On Mon, Aug 26, 2013 at 3:54 AM, Joshb wrote: > We have the same issue. Worked around by downloading the ESR version here: > > http://www.mozilla.org/en-US/firefox/organizations/all.html > > Older version meant for enterprise. Doesn't change very often. Will at > least get you up and running. Since we only use FF for GWT development, > doesn't cause any other issues. > > Same there. I only downgraded to FF 17 using fedora repositories. It works, but developer tools in FF >= 22 were better... -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to google-web-toolkit@googlegroups.com. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/groups/opt_out.
Re: Developer plugin for Firefox 23 doesn't work
We have the same issue. Worked around by downloading the ESR version here: http://www.mozilla.org/en-US/firefox/organizations/all.html Older version meant for enterprise. Doesn't change very often. Will at least get you up and running. Since we only use FF for GWT development, doesn't cause any other issues. On Friday, August 16, 2013 5:42:01 AM UTC-4, Gražvydas Valeika wrote: > > Hi, > > I just updated FF to 23. And I see strange behavior. > > Developer plugin properly installed and shows version 1.23 and latest > update date of today, > > but while starting DevMode application I'm getting 'Development Mode > requires the Google Web Toolkit Developer Plugin' prompt. I'm installing > plugin again, FF restarts, but while trying again I am getting plugin > install prompt as I wouldn't have plugin installed. > > :( > > Fedora 18, 64bit. > > > Thanks, > > Grazvydas > -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to google-web-toolkit@googlegroups.com. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/groups/opt_out.
Re: Developer plugin for Firefox 23 doesn't work
I just upgraded to FF 23.0.1 and devmode seems to be loading just fine for me. No issues that I've seen yet. OSX 10.8.4 FF 23.0.1 GWT plugin 1.23 Eclipse Kepler GWT 2.4.0 -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to google-web-toolkit@googlegroups.com. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/groups/opt_out.
Re: Developer plugin for Firefox 23 doesn't work
Similar issue. FF crashes on startup, reset FF in safe mode solves the issue until gwt plugin is re-installed, then it starts crashing again. Windows 7 64-bit On Friday, August 16, 2013 5:42:01 AM UTC-4, Gražvydas Valeika wrote: > > Hi, > > I just updated FF to 23. And I see strange behavior. > > Developer plugin properly installed and shows version 1.23 and latest > update date of today, > > but while starting DevMode application I'm getting 'Development Mode > requires the Google Web Toolkit Developer Plugin' prompt. I'm installing > plugin again, FF restarts, but while trying again I am getting plugin > install prompt as I wouldn't have plugin installed. > > :( > > Fedora 18, 64bit. > > > Thanks, > > Grazvydas > -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to google-web-toolkit@googlegroups.com. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/groups/opt_out.
Re: Developer plugin for Firefox 23 doesn't work
Same issue here. Updated an hour ago. FF 23.0.1 Scientific Linux 64bit -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to google-web-toolkit@googlegroups.com. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/groups/opt_out.
Developer plugin for Firefox 23 doesn't work
Hi, I just updated FF to 23. And I see strange behavior. Developer plugin properly installed and shows version 1.23 and latest update date of today, but while starting DevMode application I'm getting 'Development Mode requires the Google Web Toolkit Developer Plugin' prompt. I'm installing plugin again, FF restarts, but while trying again I am getting plugin install prompt as I wouldn't have plugin installed. :( Fedora 18, 64bit. Thanks, Grazvydas -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to google-web-toolkit@googlegroups.com. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/groups/opt_out.