Lib32-konqueror-nsplugins and flash doesn't work

Hallo,
I tried the lib32-konqueror-nsplugins. But it doesn't work because:
Adobe Flash Player: gtk_clipboard_get(GDK_SELECTION_PRIMARY); failed. Trying to call gtk_init(0,0);
(<unknown>:6900): Gdk-WARNING **: Error converting from UTF-8 to STRING: Could not open converter from 'UTF-8' to 'ISO-8859-1'
(<unknown>:6900): Gdk-WARNING **: Error converting from UTF-8 to STRING: Conversion from character set 'UTF-8' to 'ISO-8859-1' is not supported
So there is a problem with utf8. So I changed en_US.utf8 to en_US in rc.conf rebooted but still the same error. I searched but I didn't find a solution. Can you please help me? (I have lib32-gtk2 installed)
Stefan
Last edited by Noneus (2007-09-03 01:14:18)

Hi Noneus,
The error message is quite normal you get it in opera too. The problem is (since last weeks updates) you need lib32-pcre. I added it as a lib32-konqueror-nsplugins decency so one else has this problem.

Similar Messages

  • IPhone 5 torch and flash doesn't work

    iPhone 5 torch and flash doesn't work? How can I activate?

    The flash is activated as follows:
    When you are in camera mode, and the camera is open about to take a photo, you will see an elliptical button in the upper left with a flash-like sign.  Press that button and you will find it has three settings: Auto, On, and Off.
    Choose one.
    I don't know what you mean by "torch".

  • I have a black iphone 5 and my flash doesn't work it used to work every once in a while but stopped

    I have a black iphone 5 and my flash doesn't work it used to work every once in a while but stopped I went into the camera app and tried to see if it would flash when I took a picture but I saw it light very faintly and hasn't done lot up since. Should I get the led replaced?

    First, try bringing up Control Center by swiping up from the bottom of the home screen.  Turn on the flashlight by tapping the icon in the lower left.  Does the flashlight work?  If not, perhaps you have a hardware issue.
    If it works, check the top of the screen when you open the Camera app to make sure you have the flash on.

  • IPhone 4s glitches, is cracked, and camera flash doesn't work. What is the cost to exchange for a new one?

    Front screen of my iPhone 4s is cracked, it freezes/lags, camera flash doesn't work, and every time you press a bit harder on the front screen red and grey vertical lines appear. I have had it for more than a year now, so how much will it cost for me to replace it?

    These prices are for the U.S.
    Out-of-Warranty Service
    If you own an iPhone that is ineligible for warranty service but is eligible for Out-of-Warranty (OOW) Service, Apple will service your iPhone for the Out-of-Warranty Service fee listed below.
    iPhone model          Out-of-Warranty Service
    iPhone 5          $229
    iPhone 4S          $199
    iPhone 4, iPhone 3GS,
    iPhone 3G, Original iPhone          $149
    A $6.95 shipping fee will be added if service is arranged through Apple and requires shipping. All fees are in U.S. dollars and are subject to local tax.
    When setting up out-of-warranty service, Apple will request credit card pre-authorization for the maximum service fee listed above.  This amount will be deducted from your credit limit. The final service fee we charge will be determined during testing and may be less than the service fee listed above.
    Certain damage is ineligible for out-of-warranty service, including catastrophic damage, such as the device separating into multiple pieces, and inoperability caused by unauthorized modifications. However, an iPhone that has failed due to contact with liquid may be eligible for out-of-warranty service.
    Apple reserves the right to determine whether or not your iPhone is eligible for Out-of-Warranty service. iPhones that are repaired or replaced have a 90-day limited hardware warranty or assume the remainder of your standard warranty or AppleCare service contract coverage, whichever is longer. Please see Apple's Repair Terms And Conditions for further details.

  • Flash doesn't work and work with another browser!!

    ''locking as a duplicate of - https://support.mozilla.com/en-US/questions/900202''
    Flash doesn't work and work with another browser!!.
    The message is " An error occurred, please try again later" just with youtube. Other sites work. Another browser works with youtube!!

    Whay do you mean "difficult with the camer?"
    Two things that might help. Reset all your settings and reset the phone.  Use the Settings app to reset all settings. Settings > General > Reset > Reset All Settings  Then reset your device. Press and hold the Home and Sleep buttons simultaneously until the Apple logo appears. Let go of the buttons and let the device restart. See if that helps.

  • HELP! Uploading AS3 Game to server, no sound and Spacebar doesn´t work HELP!

    Hello, relatively new to AS3 and flash, this is the first time i am publishing anything. We are trying to upload our simple flashgame to our webserver, the game works perfectly fine locally save for one thing. We get an error regarding TLF which says it wont stream or something. So when it gets online, no sounds play and spacebar doesn't work, left and right arrow does work. We have three TLF text fields that are used to update score, lives and show you final score. If i turn these into classical text they stop working.
    Things we have tried: Changing default linkage from RLS to Merged into code, changing the text boxes to classical text(they then stop working), made sure the paths are correct(all files are in the same directory including the .swz file)
    This is the code from the soundclass:
    package 
        import flash.net.URLRequest;
        import flash.media.Sound;
        import flash.media.SoundChannel;
        import flash.events.*;
        public class MySound
            private var bgSound:Sound;
            private var fireSound:Sound;
            private var waterSound:Sound;
            private var earthSound:Sound;
            private var lightSound:Sound;
            private var soundChannel:SoundChannel;
            public function MySound()
                soundChannel = new SoundChannel();
                bgSound = new Sound();
                var req:URLRequest = new URLRequest("BackgroundSound.mp3");
                bgSound.load(req);
                //fire
                fireSound = new Sound();
                var req2:URLRequest = new URLRequest("soundFire.mp3");
                fireSound.load(req2);
                // water
                waterSound = new Sound();
                var req3:URLRequest = new URLRequest("soundWater.mp3");
                waterSound.load(req3);
                // earth
                earthSound = new Sound();
                var req4:URLRequest = new URLRequest("soundEarth.mp3");
                earthSound.load(req4);
                // light
                lightSound = new Sound();
                var req5:URLRequest = new URLRequest("soundLight.mp3");
                lightSound.load(req5);
            public function playBgSound()
                soundChannel = bgSound.play(0, 999999);
            public function stopBgSound()
                soundChannel.stop();
            public function playFireSound()
                fireSound.play();
            public function playWaterSound()
                waterSound.play();
            public function playEarthSound()
                earthSound.play();
            public function playLightSound()
                lightSound.play();
    I can somewhat get that sound can bugg out, but why does spacebar stop functioning? ANy help is greatly appreciated as this has to be delivered in twelve hours(published online) for a school assignment.

    Also might add publishing it locally in my own browser everything works, as does ofcourse playing it in flash itself. Changing from RLS to merged into code stops the error from coming, but doesn´t fix the problem on the server.
    Code from main class related to sound and spacebar:
    import flash.display.*;
        import flash.events.*;
        import flash.ui.Keyboard;
        import flash.text.TextField;
        import flash.media.Sound;
        import flash.net.URLRequest;
        import flash.events.MouseEvent;
        import flash.utils.Timer;
        import flash.events.TimerEvent;
        public class main extends MovieClip
            private var fireTimer:Timer; //delay between shots
            private var canFire:Boolean = true;
            private var mySound:MySound;
            private var bulletSpeed:Number = -450;
              public function main()
                //load sounds
                mySound = new MySound();
            private function playGame(event:MouseEvent)
                gotoAndStop(2);
                // initialize
                myLives = 5;
                myHitsNo = 0;
                weaponType = 1;
                mybullets = new Array();
                enemys = new Array();       
                myScoreTxt.text = "Score: " + myHitsNo;
                myLivesTxt.text = "Lives: " + myLives;   
                fireTimer = new Timer(400, 1);
                fireTimer.addEventListener(TimerEvent.TIMER, shootTimerHandler, false, 0, true);
                stage.addEventListener(KeyboardEvent.KEY_DOWN, listenKeyDown);
                stage.addEventListener(Event.ENTER_FRAME, addEnemy);
                stage.addEventListener(Event.ENTER_FRAME, checkCollision);   
                player = new thePlayer(stage.stageWidth-40, spawnPoint2);// stage.stageHeight/2);
                stage.focus = player;
                addChild(player);
                mySound.playBgSound();
    public function listenKeyDown(event:KeyboardEvent)  // Controls and weapontype selector
                if (event.keyCode == 37) //left
                    player.movethePlayerDown();
                if (event.keyCode == 39) //right
                    player.movethePlayerUp();
    if (event.keyCode == Keyboard.SPACE) //space
                    shootBullet();
                    //soundFX.attachSound("Pistol Fire.wav");
                    //soundFX.start();

  • Exports from Keynote to Flash doesn't work

    I am trying to create an automatic slide show and export it as an .swf (or anything) to run on a web site and it doesn't work. For documentation of my tests go to: http://www.equalivote.com/abKeynoteExportTESTS.pdf

    Another thought: If you need it to be flash, could you export the slideshow to quicktime, then put the quicktime movie into a flash project? I'm not too familiar with flash but it seems like that would be worth a try.

  • Flash doesn't work suddenly [SOLVED]

    Today flash doesn't work anymore, I do not remember any modifications. In Firefox the browser segfaults after a few seconds of flash content. In Opera the flash area is replaced with weird graphics http://img294.imageshack.us/img294/5845 … 0x800s.png like this. I reinstalled flash10, no help. I installed flash9, no help, same problems.
    Also, gnash plugin works for most flash content, but not for youtube though (on youtube I'll just get a blueish empty screen). Viewing flash videos is a must for my PC use..
    EDIT:
    I discovered that my sound didn't work, and I remember removing dbus from my modules since somebody says HAL starts it.
    I solved it by adding dbus after hal in modules. I know that people say you shouldn't do that, and it creates this error text at bootup, but that did fix my sound, and my flash issues. Weird.
    Last edited by nawitus (2009-05-19 10:03:38)

    that didnt do the trick either.
    I decided to reinstall flashplugin, and then i noticed a warning that said "warning: directory permissions differ on usr/lib/mozilla. filesystem: 700 package: 755."
    should i just try to chmod /usr/lib/mozilla, and then reinstall Flash?
    EDIT: Yep, i just ran sudo chmod 755 /usr/lib/mozilla, and reinstalled flash. Works well
    Last edited by DisturbedFood (2011-03-17 20:52:35)

  • My Flash doesn't work on IE 8

    I am a webmaster with an existing flash on
    http://www.patriciawells.com
    No changes to the flash in about a year. Works great on IE 7,
    Firefox, Netscape, Opera, etc....
    Downloaded IE 8 Beta 2 this morning and the flash doesn't
    work.... Displays an x in the box (like a missing pix on an html
    page).
    Called Microsoft and they basically told me take a long walk
    off a short pier.... So much for them caring about how their beta
    works....
    Any suggestions would be appreciated.
    Thanks
    JohnJ

    RaleighPilot wrote:
    > I am a webmaster with an existing flash on
    http://www.patriciawells.com
    No
    > changes to the flash in about a year. Works great on IE
    7, Firefox, Netscape,
    > Opera, etc....
    >
    > Downloaded IE 8 Beta 2 this morning and the flash
    doesn't work.... Displays
    > an x in the box (like a missing pix on an html page).
    >
    > Called Microsoft and they basically told me take a long
    walk off a short
    > pier.... So much for them caring about how their beta
    works....
    Well, all your object embed tags are correct so it's
    obviously the Beta problem.
    Nothing can do about it.
    Best Regards
    Urami
    "Never play Leap-Frog with a Unicorn."
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Can't mount dmg files, Applications button in sidebar automatically closes Finder, and Flash won't work in browsers

    Although these problems don't seem to be related, they all started occurring at the exact same time. To reiterate
    1) Any time I try to mount a .dmg file, the setup window automatically closes
    2) Any time I go into Finder and click on "Applications" button in the sidebar, the Finder window automatically closes
    3) Flash player does not work in any browser
    I have tried repairing permissions and this doesn't work.
    Can anyone help?

    Have you repaired the Disk. You must boot into the Recovery HD to repair the disk. See http://support.apple.com/kb/HT4718 and http://support.apple.com/kb/HT1782

  • Flash doesn't work in Firefox 13

    Installed Firefox 13 yesterday. Now flash doesn't work. Have done all the supposed fixes to no avail. Have uninstalled and reinstalled flash. I'm at my wits end with this issue. I'm a web designer who uses flash in a number of my sites. VERY IRRITATING when my sites don't display properly. Anyone have a solution other than the pat Mozilla "fixes"?

    I received a PM from '''CheckMate''' about this thread. Since this is something that I think should be discussed openly I'll reply here.
    The ActiveX plugin (npmozax.dll) issue is now fixed via the Mozilla blocklist, which automatically disables it. For some background on the ActiveX plugin issue, see [https://support.mozilla.org/en-US/forums/contributors/708425 Blocking the old ActiveX plugin] in the contributor's forum thread.
    The Flash 11.3 Firefox protected mode problem is a separate issue and one related bug is [https://bugzilla.mozilla.org/show_bug.cgi?id=747683 747683] So, if you did have the ActiveX plugin installed and it is now disabled, AND you have Flash 11.3 installed, then the issue is no longer the ActiveX plugin.
    If the problem is Flash 11.3 protected mode (or other issues with Flash 11.3) it's not a good idea to suggest downgrading to 11.2.202.235. The reason why uninstalling Flash and going to a page that requires Flash installs an older version is because the Plugin Finder Service hasn't been updated yet! This is from http://kb.mozillazine.org/Flash#Installing_Flash_on_Windows <br>
    '''Quote:'''<br>
    ''If the Flash plugin is not installed and you visit a page that has Flash content that requires the plugin, the Plug-in Finder Service can download and install Flash for you (see [https://support.mozilla.org/kb/Installing+the+Flash+plugin Installing the Flash plugin (Firefox Support)] for more information). If you want to try this method and Flash is already installed, you can [http://kb.mozillazine.org/Flash#Uninstalling_Flash uninstall Flash] and then visit [http://www.adobe.com/software/flash/about/ Adobe's Flash test page] to launch the Plugin Finder Service ; however, it may offer you an outdated version.''
    The alternative (disabling Flash 11.3 protected mode by editing an obscure file) is not good either. I don't know what to suggest in those cases. I think it would be a good idea if you could bring this up in the SUMO Community Discussions forum. There's already a topic started on Flash 11.3 issues, here:
    *https://support.mozilla.org/en-US/forums/contributors/708430 Flash 11.3 issues (was: flash 11.3 released)
    Here is your original message, for reference:
    ''Hi, Alice- You locked the thread on the Adobe Flash Plugin update 11.300.257 not working question but you really shouldn't have for the following reasons. First, although I too found today that the Active X has been blocked as of June 7, the problem persists and the instruction is to contact the manufacturer. How about contacting Adobe and straightening this out on the Developer level instead of closing the thread because there's another temporary but much simpler solution that I found. Second, the instructions on how to disable Protected Mode are nuts. I'm pretty advanced, but my common sensed tells me this is too complicated to bother with and shouldn't be necessary and you yourself say this isn't a permanent fix. Third, I found a much simpler solution, at least until this bug is fixed. Completely uninstall the Plugin from the Add and Remove Programs list. Then, when you try to access any video on YouTube which uses the Plugin, Firefox reports that it needs an additional Plugin to play the video (look specifically for the FF blue plugin icon). When you click on it, it automatically downloads the PREVIOUS VERSION, 11.2.202.235 which works perfectly. But if you click on the warning below it that Adobe Flash is needed, the buggy 11.3.300.257 version will be installed again! This has to be fixed by the Developers. Until it is, the fix is simply to roll back the faulty update, which could have also been done with a restore point but I wanted to find the cause. FF apparently knows automatically that this plugin is faulty and installs the previous version, but the other instruction is contradictory and installs the 11.3.300.257 Nice!?!? ''

  • Hi, I am wondering why my iphone won't send pictures through messages, I have MMS on and I have tried sending it with 3G on aswell and still doesn't work. Someone please help me :)

    Hi, I am wondering why my iphone won't send pictures through messages, I have MMS on and I have tried sending it with 3G on aswell and still doesn't work. Someone please help me :)

    Hey lozza567,
    Thanks for the question. I understand that you are experiencing issues sending MMS messages. The following resource may provide a solution:
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    Issues with sending and receiving MMS
    You will need these to send and receive MMS:
    - An iPhone 3G or later.
    - iOS 3.1 or later.
    - A cellular data connection. MMS isn't available if you are using only Wi-Fi.
    - A domestic MMS plan from your cellular provider. You may need an international messaging plan to send MMS to an international contact. Contact your carrier for more information.
    - A roaming MMS when using a cellular provider's network different from your billing cellular provider's network. Learn more about roaming and contact your carrier for more information.
    To resolve issues with sending and receiving MMS, follow these steps first
    1. Go to Settings and turn airplane mode off.
    2. Go to Settings > Messages and turn MMS Messaging on.
    3. Go to Settings > Cellular and turn Cellular Data on.
    4. Go to Settings > Cellular and turn Data Roaming on if you are roaming on a cellular provider network different from your billing provider's network.
    5. Verify that you have a cellular data connection in the status bar at the top left of your iPhone.
    6. Go to Settings and turn Wi-Fi off. Open Safari and navigate to www.apple.com to verify that you have a data connection. Turn Wi-Fi back on to continue using Wi-Fi for other features. If your cellular data connection isn't available, follow these steps.
    7. Verify that you can send and receive SMS. If you are unable to send and receive SMS, see the "Issues with sending and receiving SMS" section, above.
    8. MMS may not be available while on a call. Only 3G and faster GSM networks support simultaneous data and voice calls. Learn more about which network your phone supports.
    9. Restart your iPhone.
    10. Tap Settings > General > Reset > Reset Network Settings on your iPhone.
    11. Reseat your SIM card.
    If you are still unable to send or receive MMS, follow these steps
    1. Make sure that the contact trying to message you isn't blocked in Settings > Messages > Blocked.
    2. Go to Settings > Messages and turn on group messaging if you are sending a group message.
    3. Make sure that you are using the area code with the contact's phone number. When sending messages internationally, you also need the contact's international code.
    4. Verify a "Pay as you go" MMS plan has enough available balance. Contact your carrier if unsure of your MMS plan or available balance.
    5. If the issue occurs with a specific contact or contacts, back up or forward important messages and delete your current messaging threads with the contact. Create a new message to the contact and try again.
    6. If the issue occurs with a specific contact or contacts, delete and re-create the contact from the Contacts application. Create a new message to the newly created contact and try again.
    7. Back up and restore your iPhone as new.
    8. If your carrier has recently ported your phone number, the porting process may not be complete. Contact your carrier to confirm that the porting process is complete.
    9. Contact your carrier to verify that you are provisioned to send SMS and are in an area with cellular coverage.
    10. Contact your carrier to verify that there are no blocks or filters placed on your wireless account preventing you from sending SMS.
    11. Your carrier may require APN settings to be modified to use MMS. Learn more about when you should adjust APN settings.
    Thanks,
    Matt M.

  • I am trying to use livetype with persian alphabet and it doesn't work. what should I do?

    I am trying to use livetype with persian alphabet and it doesn't work. what should I do?

    There is no more LiveType with Motion 5.  You may want to go to the Final Cut Express forum, as that's the only place it's existed for the last few years.

  • My iphone 6 wont turn on after i updated it and it doesn't work to restore it in itunes. what should i do?

    my iphone 6 wont turn on after i updated it and it doesn't work to restore it in itunes. what should i do?

    Hello ole-gunnar,
    Thanks for using Apple Support Communities.
    If your iPhone is unresponsive after updating your iOS version, then I'd like you to please follow the troubleshooting below.
    If you see a black screen
    You might need to charge your device before it can turn on. Plug in your device and let it charge for at least 10 minutes (20 minutes for iPad), then try turning it on. 
    You should see a battery icon while your device is charging. If you continue to see a black screen, reset your device. If your device doesn't respond when you press buttons
    Your device might not return to the Home screen when you press the Home button, wake from sleep when you press the Sleep/Wake button, slide to unlock or power off, or it might appear frozen. Try these steps:
    Restart your device.
    If it still doesn't respond, or if it doesn't turn back on, reset your device.
    If your device gets stuck during startup
    When starting up, you might see the Apple logo or a red or blue screen for a long time, or your device might restart again. Try these steps:
    Make sure that you have iTunes 12 or later on your computer.
    Put your device in recovery mode.
    When you get the option to restore or update, select Update. This will reinstall iOS without erasing your data.
    Get more help
    If you still need help after trying the steps above, contact Apple Support. 
    If your iPhone, iPad, or iPod touch doesn't respond or doesn't turn on - Apple Support
    Cheers,
    Alex H.

  • My screensaver seems to be freezing and I can't access Safari. I've tried restarting/shutting down and that doesn't work. Any ideas to help?

    My screensaver seems to be freezing and I can't access Safari. I've tried restarting/shutting down and that doesn't work. Any ideas to help?

    Which OS X is installed on your Mac ?
    Click the Apple () menu top left in your screen. From the drop down menu click About This Mac. The version is noted there.
    Troubleshooting advice can depend on that information.

Maybe you are looking for

  • Message Mapping for multiple item levels

    Hi, My query is regarding message mapping Example of source data structure & Target data structure Source data Structure <item>       --<no>1</no>       --<address/>       --<ITEMS>         ----<item>           ------<Name>a</Name>         ----<item>

  • Problems with images greyed out. Downloaded folder not showing up in Left Panel

    Downloaded folder and it showed up in Lightroom. Next day images greyed out Folder doesnt show in Left Panel. Lightroom says no images to Import. What do I do?

  • Cannot use winzip to unzip the zip file zipped by java.util.zip

    Hi all, I use the followcode to create a zip file, and i downlaod it and try to use winzip to unzip this file but fail. The path is correct and i got the zip file. but it just cannot unzip. pls help thanks alot. Kin           int count = 0;          

  • Word and Excel documents vanish

    This may be the wrong forum for this question if so I apologize and wold appreciate direction. Working on numerous word and excel documents every so-often the file will disappear off my screen. If I click on another application then click on say word

  • Event producer/consumer

    hello, i'm trying to study the differents existing structures (event, state, semaphore ...) the first is event producer/consumer and i don't succeed to display queue infos it's ok for size queue but not max and array of elements, what can i do to mak