Categories
english OnlineLife Net Webapps Software

quick fix for version problems with firefox addons…

i love firefox addons for certain quick tasks. they get things done so much faster and there are some really nice ones that i use regularly.

one of them was Exif Viewer, until it stopped working with version 3.6.* of firefox. 😐

since there was no update since July 2009 i didn’t expect a quick fix. so i did it myself.
here is what you do to make the addon work again (i already had it installed when i upgraded firefox to 3.6).

go to (the SOME_HEX_ID part is usually different for everone)

1
~/Library/Application Support/Firefox/Profiles/[SOME_HEX_ID].default/extensions/exif_viewer@mozilla.doslash.org/

and edit the file

1
install.rdf

in that directory.
change:

1
2
3
4
 [...]
em:minVersion="1.5"
em:maxVersion="<strong>3.5.*</strong>" /&gt; &lt;!-- Firefox -->
[...]

to

1
2
3
4
 [...]
em:minVersion="1.5"
em:maxVersion="<strong>3.9.*</strong>" /&gt; &lt;!-- Firefox -->
[...]

or a version number that suits you. after a firefox restart the exif viewer addon should work again.

i give no guarantee this will work on any version of firefox. after all there is a reason they put a version number in there 😉

Categories
OnlineLife Net Webapps Software

sphpblog permalink plugin…

um deeplinks zu alten postings zu erhalten, habe ich einen kleinen plugin geschrieben der diese auf das entsprechende posting im neuen blogsystem verweist. so werden links die im sphpblog noch mit GET parametern verlinkt waren auf die rewrite links von wordpress umgemoppelt.

so wird

https://blog.flo.cx/index.php?entry=entry051119-182307

zu

https://blog.flo.cx/2005/11/19/

wer ebenso wie ich seinen blog von sphpblog auf wordpress umgestellt hat, kann den sphpblog-permalink-plugin hier herunterladen. das archiv entpacken und das php file einfach in den wp-content/plugins/ folder werfen. aktivieren lässt es sich über das admin interface.

der plugin funktioniert für alle blogs die nicht vor dem jahr 2000 gebloggt haben. das sollte kein problem sein, da sphpblog erst im jahr 2004 entstanden ist 😉 . weiters wird immer nur auf das archiv des entsprechenden tages gelinkt. wer also mehrmals täglich gebloggt hat wird den plugin verfeinern müssen.