[solved] Preferred way to install & update Gnome extensions

Hello there,
What is the preferred way to install and update Gnome extensions?
Do you
a) install the respective extensions from the AUR
b) or do you use the https://extensions.gnome.org/local/ page for that purpose?
What are the advantages and disadvantages of both ways?
Thanks!
Last edited by orschiro (2013-06-13 10:10:48)

Unia wrote:
Thaodan wrote:Why add an extra interface if your package manager already does the job?
Because if you use the AUR, you depend on the respective maintainers to update their PKGBUILD when a newer version is out. If they don't update, you will not receive a notification that a newer version of your extension is available.
With extensions.gnome.org/local, you do not depend on anyone else. It has no harm to your system to manage extensions like this; they get installed for just your user (in $HOME/.local/share/gnome-shell/extensions).
I know which method I prefer.
Hmm true, despite the bad effects of using the AUR prefer to use it cause I don't like to add extra interfaces for every app. But I think that is just an opinion...

Similar Messages

  • Unable to install any Gnome Extensions through Web Interface

    I am trying to install Gnome Extensions through the Web Interface. I have done this before a few months ago but for some reason it stopped working. I switch the extension to on, and I confirm I want to install it. Nothing happens after.
    I can enable and disable Gnome Extensions through the web interface, and the firefox extension "Gnome Shell Integration" is enabled. I have found plenty of topics on the subject but none seemed to actually provide a working solution.

    Binero wrote:
    I am trying to install Gnome Extensions through the Web Interface. I have done this before a few months ago but for some reason it stopped working. I switch the extension to on, and I confirm I want to install it. Nothing happens after.
    I can enable and disable Gnome Extensions through the web interface, and the firefox extension "Gnome Shell Integration" is enabled. I have found plenty of topics on the subject but none seemed to actually provide a working solution.
    Which extension are you trying to install?
    I have this problem recently with google chrome and the dash-to-dock extension every time either GNOME Shell updates, or the extension updates. I find if I turn the extension off, delete it, restart GNOME Shell, and then reinstall the extension then it works.

  • [Solved] 'Best' way to install programs?

    I was wondering what the arch Linux community thought the best way to install things is.
    I was wondering if compiling things from source would be better in some cases then using Pacman, I'm sure I read that you prefer people to install from source, when I was reading the tex live wiki. Now I could have been wrong, read something wrong or just not understood.
    I'm sure this makes the program faster, and makes me be able to install them to my every need, but then is updating and keeping them up to date problematic? Should I install OpenGL and mesa from source, and leave the rest like Firefox to Pacman?
    I am new to Linux, and haven't compiled anything from source, and would like to know how to.
    Last edited by Peilonrayz (2014-06-21 12:03:57)

    Peilonrayz wrote:
    There are two good ways to install TeX Live. One is to use pacman. The other is to use the upstream installer.
    Can you please show me what you are referring to?
    I didn't know about the TeX having it's own installer, it's just as I read this when I was installing it last time: `Installing TeX Live manually honors the Arch Way in that it gives you much more control and lets you understand the process.`
    After being told about PKGBUILD, this makes much more sense as I read it as compile from source, rather then alternate ways like this.
    The 'install manually' is referring to using upstream's installer. It is not talking about compiling the binaries from source.
    For details of the options offered by upstream, see http://www.tug.org/texlive/. If you have a reasonable network connection and are not planning to install on more than a couple of machines, the network installer is probably the best option. The 'quick installation' instructions are useful but you will want to refer to parts of the full installation documentation as well if doing this for the first time.
    I recommend accepting upstream's defaults for the most part. In particular, I recommend using the 'full' installation scheme unless you are short of disk space.
    I also recommend *not* installing as root. This is also in line with upstream's recommendation. What I did was create a new user and group (texlive:texlive). As root, I also created the directory /usr/local/texlive and made sure it was owned by the texlive user. Then I logged in as that user to install. This works well. Neither the installer nor later use of the utilities can touch your home directory or system files. There is no downside to this - it is no less convenient than having the installation owned by root. So you gain a security benefit for no cost. (Or minimal cost: you have to create a single user and group, make one new directory and chmod that directory appropriately.)
    # adjust options as desired
    useradd -d /usr/local/texlive -m -g texlive -r -s /bin/sh texlive
    Set a password for the new account, and check ownership and permissions on the new directory:
    drwxr-xr-x 7 texlive texlive 4.0K Meh 26 02:14 .
    Then log in as texlive and install.

  • [Solved] Proper/Preferred Way to Install a Directory into $pkgdir?

    I'm wondering if there are any guidelines on installing directories from an unpacked RPM into my $pkgdir. From what I've seen, it's typically frowned upon to use cp/mv, but install doesn't seem to have an option to recursively copy a directory. Is my current PKGBUILD okay, or should I be using a different command in place of "cp -r"? Thanks!
    My current PKGBUILD looks like this:
    # Contributor: Trevor Turner <turn3r [dot] tr3v0r [at] gmail [dot] com>
    _i686rpm=hpasm-7.7.0-115.sles9.i586.rpm
    _x86_64rpm=hpasm-7.7.0-115.sles9.x86_64.rpm
    pkgname=hpasm
    pkgver=7.7.0_115
    pkgrel=1
    pkgdesc="HP Proliant Server Management Agents and Utilities"
    arch=('i686' 'x86_64')
    url="ftp://ftp.compaq.com/pub/products/servers/supportsoftware/linux/"
    license=('custom')
    makedepends=('rpmextract')
    source=('hpasmd' 'hpasmd.service')
    md5sums=('4efbcaf99d2ad688d5887dd28d48854f' '3249472c2ca273d8c348b8daf0ffd996')
    if [ "${CARCH}" = "x86_64" ]; then
    source+=(ftp://ftp.compaq.com/pub/products/servers/supportsoftware/linux/${_x86_64rpm})
    md5sums+=('812416e7ee25690d55389b1df1b549bb')
    noextract=("${_x86_64rpm}")
    elif [ "${CARCH}" = "i686" ]; then
    source+=(ftp://ftp.compaq.com/pub/products/servers/supportsoftware/linux/${_i686rpm})
    md5sums+=('420e886d6a66eb6cb3fd0671635519ec')
    noextract=("${_i686rpm}")
    fi
    package() {
    cd "$srcdir"
    msg2 "Extracting RPM..."
    rpmextract.sh *.rpm
    msg2 "Installing Files..."
    install -dm 755 "${pkgdir}/usr/lib/systemd/system"
    install -dm 755 "${pkgdir}/usr/sbin"
    install -dm 755 "${pkgdir}/etc/rc.d"
    install -Dm 755 "${srcdir}/hpasmd" "${pkgdir}/etc/rc.d/hpasmd"
    install -Dm 755 "${srcdir}/hpasmd.service" "${pkgdir}/usr/lib/systemd/system/hpasmd.service"
    install -Dm 755 "${srcdir}/sbin/bootcfg" "${pkgdir}/usr/sbin/bootcfg"
    install -Dm 755 "${srcdir}/sbin/hpasmcli" "${pkgdir}/usr/sbin/hpasmcli"
    install -Dm 755 "${srcdir}/sbin/hplog" "${pkgdir}/usr/sbin/hplog"
    install -Dm 755 "${srcdir}/sbin/hpuid" "${pkgdir}/usr/sbin/hpuid"
    cp -r "${srcdir}/opt" "${pkgdir}/"
    ln -s "/opt/compaq/hpasmd/bin/hpasmd" "${pkgdir}/usr/sbin/hpasmd"
    ln -s "/opt/compaq/hpasm/addon/libhpasmintrfc.so.1.0" "${pkgdir}/usr/lib/libhpasmintrfc.so.1.0"
    ln -s "libhpasmintrfc.so.1.0" "${pkgdir}/usr/lib/libhpasmintrfc.so.1"
    ln -s "/opt/compaq/hpasm/addon/libhpev.so.1.0" "${pkgdir}/usr/lib/libhpev.so.1.0"
    ln -s "libhpev.so.1.0" "${pkgdir}/usr/lib/libhpev.so.1"
    Last edited by DarkSniper (2012-07-11 00:20:01)

    cp is tolerated, but make sure that you manually set permissions if necessary.
    Otherwise, create your own functions and paste them in sparingly, e.g.
    function install_dir()
    src_dir_="${1%/}"
    shift
    dst_dir_="${1%/}"
    shift
    src_len_=${#src_dir_}
    find "$src_dir_" -type f -print | while read path_
    do
    rel_path_="${path_:${src_len_}}"
    install "$@" "$path_" "$dst_dir$rel_path_"
    done
    install_dir "$srcdir/$pkgname-$pkgver/foo/lib" "$pkgdir/lib" -Dm 644

  • [SOLVED] Any Way to Install Mesa 7.9 Early?

    I'm a KDE user, and I've read that the new Mesa/Intel 7.9 supposedly fixed a few problems I find myself running into. I see that Mesa 7.9 is in testing, and I'm itching to try it out. I know that it will probably hit stable soon, but I'm really curious to see if it really does make KDE 4.5 work better.
    Is there a way I can upgrade to Mesa 7.9 now without enabling all of testing? I know that's typically not recommended but in this case I want to see if it resolves my KDE problems.
    Last edited by jlacroix (2010-10-13 14:32:17)

    I went ahead and took the plunge. I downloaded all the Mesa packages (and dependencies) and installed them. KDE now works A LOT better. The blur effect works, and it seems to be faster. A few of the kwin/OpenGL bugs remain, but the blur effect works so it appears that I didn't take this risk for no reward. The thumbnail previews are fixed with the new version of Mesa as well.
    I'm not proud of the fact I mixed packages from testing, but some of the issues/lag with KDE and Mesa 7.8 was driving me crazy, and I wasn't sure how long it would be before Mesa 7.9 hits extra. When I update packages it complains that Mesa is newer than the repositories but I guess that is to be expected.
    In the testing forum, I see some people are having problems with Mesa 7.9 so I wouldn't recommend anyone else do this. I guess I got lucky, Mesa 7.9 works well for me.
    I am marking this solved for now. However, I look forward to the new Xorg as well as the new Intel driver, whenever they may hit extra. Hopefully those packages will solve the rest of my issues.

  • Easiest way to install update rollups for exchnage 2010

    Dear Mates,
    i have downloaded the update roll ups from RU 1 to RU 7 for my test environment exchange 2010  and i would like install all the update roll ups in all my exchange servers (8 No's). what is the easy method to install all the RU's in single command, or
    batch file or from any scripts, instead of double click on each files (RU's)and giving next next next...etc....it should automatically install the RUS
    Guide me , if there is any way to achieve this

    Hi  rush2ramki
    Thank you for your question.
    I agree with Andy.
    Notice:
    you can follow the order to update : Client Access server, Hub Transport server, Mailbox server
    If you have multiple Active Directory sites and have deployed a Client Access server in the proxy sites that aren't Internet-facing, apply the update rollup to the Internet-facing Client Access servers before you apply the update rollup to the non-Internet-facing
    Client Access servers.
    You can refer to the following :
    http://technet.microsoft.com/en-us/library/ff637979(v=exchg.141).aspx
    If there are any questions, please let me know.
    Best Regard,
    Jim

  • [SOLVED] No sound after installing/uninstalling gnome

    I thought I'd give Gnome a try again after a year or so away from it using bspwm, just to remind myself of it. Once it was installed though my sound no longer worked within bspwm. Uninstalling it with pacman -Runs left me with no sound still. I then reinstalled Gnome so that I could at least have some sound while I worked out the problem, but this time had no sound in Gnome either. I tried using pacman -Rnsdd the second time but again I'm left with no sound. Now if I open alsamixer, the default sound card appears to be HDMI, but changing it back to PCH does nothing. Anyone have any ideas?
    Last edited by shpongledspores (2015-06-03 12:55:05)

    Fixed it by changing the default control and pcm card to 1 instead of 0 in /usr/share/alsa/alsa.conf

  • [SOLVED] New Install of Gnome 3.2 doesn't feel like loading

    Greetings,
    Before making this post, I have spent the majority of the day trying to solve this issue. I have switched from nvidia drivers to nouvela (sp?) drivers, incase that was the issue. I have scoured google, arch-wiki, and the forums until my eyes have bled. I have dug through the xsession-errors log to search out any missing components that might be causing this... but to no avail. If anything, trying to run and try Gnome 3.2 has made me feel like a complete idiot, who has obviously learnt nothing after years of using linux. So, I come here hoping that some one can point me to the solution my brain cannot itself come up with.
    Here the situation:
    I have been running KDE4 for quite some time happily. I have ran Gnome 3 back in its beginning days succesfully as well, but that was an older, now dead, pc. Having seen some neat little things about the new Gnome 3.2, I got an itch to give it a try. So, I go and follow the Gnome article on the excellent arch wiki- installing both gnome and gnome extras, letting it grab everything, change from kdm to gdm, and reboot.
    Well, it gives me the old gdm I remember from the early gnome 3 days (wasn't this changed) despite it showing that it is GDM 3.2 via pacman. It shows my user name, lets me put my password, and shows the stripped background. One thing to note is that the cursor remains a clock face, never changing to a pointer.
    I log in, choosing GNOME, all that remains is the wallpaper, with the clockface cursor, no pointer. I go take the kids to the bus stop, come back apx. 20 min. later, no change.
    Ok, bug crushing time right? So I go through the steps. I make sure that gnome shell is indeed installed. I remove any config files (there weren't any), remove gnome shell, reinstall. No go. I rinse and repeat, but removing & reinstalling different things, such as GDM, and even gnome completely. No go.
    Hopping into pekwm, I search. I make copies of the xsession-errors each time, and load them in pekwm after a reboot, looking through with pacman by myside to make sure I have any possible missing files. And finally after failure after failure I give up, and come here.
    So, here's my xsession-errors log. Please, if anyone can help, or even offer any kind of suggestion that might spark something in my brain to get me going in the right direction, I'd greatly appreciate it. If this thread needs moved, merged, etc, please do so... I've searched the forums, but now my brain is numb, so yeah...
    /etc/gdm/Xsession: Beginning session setup...
    /etc/gdm/Xsession: Setup done, will execute: /usr/bin/ssh-agent -- gnome-session
    gnome-session[1112]: EggSMClient-WARNING: Desktop file '/home/mythus/.config/autostart/dropbox.desktop' has malformed Icon key 'dropbox.png'(should not include extension)
    ** (gnome-settings-daemon:1138): WARNING **: libltdl.so.7: cannot open shared object file: No such file or directory
    ** (gnome-settings-daemon:1138): WARNING **: Cannot load plugin 'Color' since file '/usr/lib/gnome-settings-daemon-3.0/libcolor.so' cannot be read.
    ** (gnome-settings-daemon:1138): WARNING **: Error activating plugin 'Color'
    ** (gnome-settings-daemon:1138): WARNING **: libltdl.so.7: cannot open shared object file: No such file or directory
    ** (gnome-settings-daemon:1138): WARNING **: Cannot load plugin 'Power' since file '/usr/lib/gnome-settings-daemon-3.0/libpower.so' cannot be read.
    ** (gnome-settings-daemon:1138): WARNING **: Error activating plugin 'Power'
    GNOME_KEYRING_CONTROL=/tmp/keyring-HPDXfX
    GNOME_KEYRING_CONTROL=/tmp/keyring-HPDXfX
    GPG_AGENT_INFO=/tmp/keyring-HPDXfX/gpg:0:1
    GNOME_KEYRING_CONTROL=/tmp/keyring-HPDXfX
    GPG_AGENT_INFO=/tmp/keyring-HPDXfX/gpg:0:1
    GNOME_KEYRING_CONTROL=/tmp/keyring-HPDXfX
    GPG_AGENT_INFO=/tmp/keyring-HPDXfX/gpg:0:1
    SSH_AUTH_SOCK=/tmp/keyring-HPDXfX/ssh
    ** (gnome-settings-daemon:1138): WARNING **: libltdl.so.7: cannot open shared object file: No such file or directory
    ** (gnome-settings-daemon:1138): WARNING **: Cannot load plugin 'Media keys' since file '/usr/lib/gnome-settings-daemon-3.0/libmedia-keys.so' cannot be read.
    ** (gnome-settings-daemon:1138): WARNING **: Error activating plugin 'Media keys'
    Gtk-Message: Failed to load module "canberra-gtk-module"
    common-plugin-Message: checking whether we have a device for 4: yes
    common-plugin-Message: checking whether we have a device for 5: yes
    common-plugin-Message: checking whether we have a device for 6: yes
    common-plugin-Message: checking whether we have a device for 7: yes
    common-plugin-Message: checking whether we have a device for 8: yes
    common-plugin-Message: checking whether we have a device for 9: yes
    common-plugin-Message: checking whether we have a device for 10: yes
    /usr/bin/gnome-shell: error while loading shared libraries: libltdl.so.7: cannot open shared object file: No such file or directory
    gnome-session[1112]: WARNING: Failed to start app: Unable to start application: Failed to execute child process "if" (No such file or directory)
    Initializing tracker-store...
    Tracker-Message: Setting up monitor for changes to config file:'/home/mythus/.config/tracker/tracker-store.cfg'
    Initializing tracker-miner-fs...
    /usr/lib/evolution/3.2/evolution-alarm-notify: error while loading shared libraries: libltdl.so.7: cannot open shared object file: No such file or directory
    Tracker-Message: Setting up monitor for changes to config file:'/home/mythus/.config/tracker/tracker-miner-fs.cfg'
    /usr/bin/canberra-gtk-play: error while loading shared libraries: libltdl.so.7: cannot open shared object file: No such file or directory
    Gtk-Message: Failed to load module "canberra-gtk-module"
    Starting log:
    File:'/home/mythus/.local/share/tracker/tracker-miner-fs.log'
    Gtk-Message: Failed to load module "canberra-gtk-module"
    Gtk-Message: Failed to load module "canberra-gtk-module"
    /usr/bin/pulseaudio: error while loading shared libraries: libltdl.so.7: cannot open shared object file: No such file or directory
    Tracker-Message: Setting up monitor for changes to config file:'/home/mythus/.config/tracker/tracker-store.cfg'
    Starting log:
    File:'/home/mythus/.local/share/tracker/tracker-store.log'
    ** Message: applet now removed from the notification area
    (nm-applet:1180): libnotify-WARNING **: Failed to connect to proxy
    ** (nm-applet:1180): WARNING **: get_all_cb: couldn't retrieve system settings properties: (25) Launch helper exited with unknown return code 1.
    ** (nm-applet:1180): WARNING **: fetch_connections_done: error fetching connections: (25) Launch helper exited with unknown return code 1.
    ** (nm-applet:1180): WARNING **: Failed to register as an agent: (25) Launch helper exited with unknown return code 1
    Gtk-Message: Failed to load module "canberra-gtk-module"
    /usr/lib/libgvfscommon.so.0: undefined symbol: g_free
    Failed to load module: /usr/lib/gio/modules/libgvfsdbus.so
    Last edited by mythus (2011-10-07 15:36:43)

    Ok, I guess all it took was for me to post this to wake up and be able to solve the issue.
    It is simple really. I just needed to re-install libltdl.
    So, for those searching, if you get this similar problem,
    pacman -S libltdl
    is what solved it for me.

  • Another way to install Add-ons (updated)

    Hi everyone,
    Just wanted to let you know that we just provided another way to install Add-ons, this is primarily if you encounter an install problem when using the Creative Cloud desktop app, then we now have an alternative way to install. We have also made it more discoverable. You can now find it in 2 places:
    1. In My Add-ons (Click on "Install issues?" and if the Add-on is compatible with CS6 and you want to use it specifically for CS6 now you can! Just click the blue text "Install for CS6" which will take you to a direct download for use with Adobe Extension Manager CS6.
    2. In the Where to find it section after you have acquired a product. Look at the "Install another way" section for details.
    We also have a new troubleshooting check list.
    It's not as slick as using the Creative Cloud Desktop app but it should work.
    Clicking Download Add-on for that Add-on downloads a zxp file. You need to have Adobe Extension Manager installed to then unpack the zxp.
    Please read the Where to find it section of that Add-ons for next steps once the Add-on has been installed via Extension Manager and please ensure you are using the compatible version of Extension Manager for that Add-on, so for instance if it's for CC or CC 2014 apps you need Extension Manager 7.2 or later. If it's for CS6 you would need Extension Manager CS6, there are links on the page to download Extension Manager.
    Here's download links for Extension Manager
    Download Adobe Extension Manager
    If you already have Extension Manager CC you can also get a small update to Extension Manager CC 7.2 which works with CC and CC 2014 release here.
    We hope you like this new alternative installation method. See below for a screenshot.
    Update (July 29): You can now get access to install via Extension Manager in My Add-ons.
    If you are having trouble
    If the Add-on

    I'm running OSX 10.6.9 on a MBP 15", dooming me to be very selective width CC vs CS6 installations. The Cloud app does not run on my OS, as far as I know, so I try to install via Extension Manager CC. Which apparently goes fine, but my (compatible, yes) purchased and presumably installed Lightroom 4 presets do not show up in Lightrrom, exactly as for this fellow:
    I am unable to see the add-on I installed through extension manager in Lightroom
    How come the installation procedure has to suck that much for the lot of us who havent the latest shining hardware/software ?!?
    REALLY, REALLY annoying! Frustrating!

  • No way to install extensions in DW CC 2014

    There is now no way to install extensions that were previously purchased.
    The extension manager does not recognize CC 2014 Apps and yes, I know about the Addons page but that doesn't work either for the free extensions I have previously and there is no way I am spending a few thousand dollars again on repurchasing apps.
    There is no excuse not to have a new version of the Extension Manager.

    Tropical Soul wrote:
    Tom,
    I had exactly the same issue and found that Creative Cloud for some reason was not updating and installing the latest build - so I totally deleted it and re-downloaded the correct build (7.3.2.39) then installed - fixed the issue.
    As I posted last night, I had uninstalled (using the uninstall app in Utilities) and reinstalled. Tried again, same error by Extension Manager.  Today, I used the uninstall app inside the Extension Manager app, it left some remnants in the Extension Manager folder.  So, I have a little utility called App Cleaner which I used - dragged the remaining Extension Manager and App Cleaner deleted along with all preferences that Uninstall Extension Manager left.  I  have a menu extension from Project Seven, here is what they say on their web site:
    "New Adobe extension installer formats
    Extension installer files come in 2 formats: MXP and ZXP. MXP is supported by Extension Manager versions MX, MX2004, 8, CS3, CS4, CS5, CS5.5 and CS6. ZXP is supported by versions CS5.5 and higher. Dreamweaver CC has dropped support for the MXP format. To continue to support all Adobe customers, regardless of version, we include both the classic MXP and the new ZXP versions in new product releases. All existing products have now been updated to include a ZXP version."
    Well, I still get this error after uninstalling and reinstalling via CC menu:
    The current Dreamweaver version is 15 so I don't know what to do.  And I need this extension to update my web site menus.
    Thanks for any insight.
    Tom

  • I started my update for ios 5.1for iPhone 4s and cancelled it have way through now it says it's downloaded but really it's not the update is still there and when I try to update it it says unable to install update : an error occurred installing iOS 5.1  ?

    I started my update for ios 5.1for iPhone 4s and cancelled it have way through now it says it's downloaded but really it's not the update is still there and when I try to update it it says unable to install update : an error occurred installing iOS 5.1  ?

    See Here... Unable to Update or Restore...
    http://support.apple.com/kb/HT1808

  • After having shut down after installing updates, when I restarted and tried to open a word file, it started opening ALL the word docs and the only way I could stop it was by"force quit"  arted  and tried to open

    After having shut down after installing updates, when I restarted and tried to open a word doc, it started opening ALL the word docs and the only way I could stop it was by"force quit"  . This is REALLY annoying!!

    May be it is the Resume feature.
    System Preference > General > Number of recent items
    Uncheck the box next to      "Restore windows when quitting and re-opening apps".
    Best.

  • Is there a way to remove installed updates from the App Store update window? I keep getting an alert that I have an update for Apple Remote Desktop. It says its installed, but the alert and the app keep showing up. Annoying!!

    Is there a way to remove installed updates from the App Store update window? I keep getting an alert that I have an update for Apple Remote Desktop. It says its installed, but the alert and the app keep showing up. Annoying!!

    Spotlight: How to re-index folders or volumes
              http://support.apple.com/kb/ht2409
    Mac App Store: Cannot update App Store purchases or updates do not seem available
              http://support.apple.com/kb/TS4236
    If re-indexing the spotlight doesn't fix it,we can try a few other tricks.

  • HT5045 Is there a way to install older versions of Java, like Java 6 Update 26 on Mac OS X 10.7 ?

    We have an application that worked fine on Java 6 Update 26. Update 29 broke the application. Even though we have fixed the problem, for people using older versions of the application, there is no recourse, if they have upgraded their OS to 10.7. So, is there a way to install Java 6 Update 26 on Mac OS X 10.7 ?

    Hello,
    I have a client that just started working remotely and needs to do payroll via her Mac OS X 10.7.5 system via a web browser. The payroll system appears to be ADP/Kronos as far as I can tell. We first tried using Safari and it said the plugin was missing so we downloaded the latest Java and installed. When we tried to run it dumped the following error. (see below)
    At this point we decided to try Firefox and rather than a dump we found the message Java 1.6.0_07 required.
    At this point we went hunting for an older version of Java and did find one only to be told if was specifically for OS X 10.5.x. My client is running OS X 10.7.5.
    I have other clients running Windows that have multiple (older) versions of Java installed including 4, 5 and 6 all on one machine so I'm not sure if this is possible on Mac OS X or not.
    Note I am not in charge of the payroll system and have no way of updating that side of things. I may recommend that my client contact her internal Help Desk or revert to using a Windows based system as I know for sure that would be capable of handling these requirements.
    Thanks, Jason
    Java 7 error
    Initializing JVM for plug-in
    JVM loading complete
    Adding listener: quickfind.navLabel - [email protected]a6a8 - isPrinciple? true - isHost? false - isDialog? false - isAppletValid? true [1174251176] to com.kronos.wfc.platform.uiframework.applet.baseapplet.AppletEventManager@38ea76e6
    Debug mode: false
    Request made for a theme value with an invalid selector
    Overriding LookAndFeel: Aqua
    Setting LookAndFeel for root: sun.plugin2.main.client.PluginEmbeddedFrame[frame0,0,22,1900x902,invalid,layout=java.awt.BorderLayout,title=,resizable,normal]
    Adding listener: superSummary.appletName - com.kronos.wfc.commonapp.genies.applet.manager.ManagerSummaryApplet@2c72bd07 - isPrinciple? true - isHost? false - isDialog? false - isAppletValid? true [745716999] to com.kronos.wfc.platform.uiframework.applet.baseapplet.AppletEventManager@39ac5a78
    Debug mode: false
    Request made for a theme value with an invalid selector
    Overriding LookAndFeel: Aqua
    Setting LookAndFeel for root: sun.plugin2.main.client.PluginEmbeddedFrame[frame2,61,203,1900x902,invalid,layout=java.awt.BorderLayout,title=,resizable,normal]

  • Installing or updating an extension fails

    Firefox version: 3.6.8
    OS: Mandriva Linux 2010.1
    After adding a new extension, or updating an existing one, Firefox asks for a restart. When Firefox restarts, the extension is not installed/updated and it requires a restart.
    When checking the extensions.log file I found the following three lines repeated a number of times on each Firefox start:
    2010-08-12 17:25:25 - safeInstallOperation: file extraction failed, rolling back file moves and aborting installation.
    2010-08-12 17:25:25 - ExtensionManager:_finishOperations - failure, catching exception - lineno: 1608 - file: undefined - [Exception... "Component returned failure code: 0x80520015 (NS_ERROR_FILE_ACCESS_DENIED) [nsIFile.permissions]" nsresult: "0x80520015 (NS_ERROR_FILE_ACCESS_DENIED)" location: "JS frame :: file:///usr/lib/xulrunner-1.9.2.8/components/nsExtensionManager.js :: safeInstallOperation :: line 1608" data: no]

    After some trial and error, I discover that my instance of this problem was caused by having the profile on a FAT drive (for ease of dual boot with Windows). FAT does not allow user permissions so any attempt to do chown fails. Copying the profile to my Linux filesystem in a temporary directory, changing ~/.thunderbird/profiles.ini to point to it and doing the install worked perfectly. I then copied all the files in the profile directory back again and I now have the add-on installed.
    Something of a work-around, but at least it worked

Maybe you are looking for

  • Itunes makes win7 blue screen when i go to store

    My Windows 7 blue screens each time i try to open the store from itunes 11. Was the same for itunes 10, upgrade did not help. Been having this problem for over a year!

  • Fan runs constantly with Yosemite on Macbook Pro 13, Mid 2010

    Have noticed this recently, mainly since the 10.10.1 update. It's a 2.66 Intel C2D with 8 gigs of OWC RAM and a 240GB Crucial SSD I work mainly from home and have it at my desk. It's hooked up to an Apple Cinema HD Display 23" All updates done to sof

  • Missing close, minimize, and maximize buttons

    I'm using OS X 10.7.4 Lion-- and have been unable to add back the minimize and other buttons when on webpages via Safari or in Mail.  I've tried rebooting, repair disk permission, but nothing seems to bring it back.  I seem to have a totally white sc

  • How to use/call IVI-C drivers in Visual Studio 2012

    Hello, i downloaded some IVI-drivers and saw that they all contain IVI-COM and IVI-C drivers. I am trying now to call the IVI-C drivers in my Visual Studio 2012 but i cannot find any examples how to do this. Can someone provide a simply example proje

  • Redirect all logs e trace files.

    How can I redirect all the logs and trace files in the WebAS Java to a different directory? Tks for the help. José Simões