[SOLVED] Missing kdelibs 4.10.2 for i686

..And after the upgrade everything kde related crashes...
just an example
systemsettings(5077) SettingsBase::initApplication: "View load error: The plugin 'classic_mode' uses an incompatible KDE library (4.10.2)."
systemsettings(5077) SettingsBase::initApplication: "View load error: The plugin 'icon_mode' uses an incompatible KDE library (4.10.2)."
-edit-
Fixed by packagers.
Last edited by kokoko3k (2013-04-06 08:20:50)

I'm very relieved and confident that this will end my problems too... I've lost my entire afternoon on Friday, at work - after upgrading my system - trying to fix the KDE problems (widgets not loading on the taskbar, kde programs not working (konqueror, krunner, nepomuk, various error messages). I was getting pretty annoyed, not being as savvy arch/linux user as I want, thus unable to identify a reason for the problem.
Thought something went wrong because it's been a long time since I last upgraded my arch (3 months). Learned the hard way to do it more frequently and to keep a close eye on the community forums. Really hope to solve the problem tomorrow with this update.
Cheers
LE: I realize that my post may break some rules of the Forum_Etiquette for which I apologize and understand if someone decides that this should be deleted.
Last edited by manu (2013-04-07 19:48:19)

Similar Messages

  • Missing "Save Site as Template" For Publishing Sites in Project online 2013

    First I created Sub site using Project Template under the site collection.
    Now I want to this Sub site Save as a Site Template. When I went for Save site as Template in site setting. Under Site Action there is no option for “Save site as Template”
    marylu

    "Publishing Feature" may be enabled at your site , The Publishing feature does not support the Save Site as Template option.
    http://support.microsoft.com/kb/2492356
    Some workaround -
    http://www.learningsharepoint.com/2013/05/03/missing-save-site-as-template-for-publishing-sites-in-sharepoint-2013/
    http://blogs.msdn.com/b/how24/archive/2013/06/13/save-publishing-site-as-a-template.aspx
    Thanks
    Ganesh Jat [My Blog |
    LinkedIn | Twitter ]
    Please click 'Mark As Answer' if a post solves your problem or 'Vote As Helpful' if it was useful.

  • Missing Base System Device Driver for Elitebook 8440p

    Missing Base System Device Driver for Elitebook 8440p

    Hi Doctorsherif,
    I am sorry, but to get your issue more exposure I would suggest posting it in the Commercial Forums since this is a commercial product or Business product. You can do this at
    http://h30499.www3.hp.com/hpeb/
    Thanks
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • Can anyone solve (or) give me a solution for this problem.....?

    Hi Everyone!
    Can anyone solve (or) give me a solution for this problem.....?
    We have used two folders Source & Finalwork. We have get image from Source folder and put silo path & Moved to Finalwork folder.
    Is this possible to check whether both folder images Embedded color profile same or not.
    -yajiv

    Could you elaborate what you mean by this
    We have get image from Source folder and put silo path & Moved to Finalwork folder.
    Possibly again with a screenshot to illustrate the task?
    // 2012, use it at your own risk;
    #target photoshop
    var theFolder = Folder.selectDialog ("select source folder");
    if (theFolder) {
    var theFiles = theFolder.getFiles(/\.(jpg|tif|eps|psd)$/i)
    var theOtherFolder = Folder.selectDialog ("select target folder");
    if (theOtherFolder) {
    var theOtherFiles = theOtherFolder.getFiles(/\.(jpg|tif|eps|psd)$/i)
    var missingFiles = new Array;
    var unmatchedProfiles = new Array;
    // work through files;
    for (var m = 0; m < theFiles.length; m++) {
              var check = false;
              var theFile = theFiles[m];
    // find name of the same name;
              for (var n = 0; n < theOtherFiles.length; n++) {
                        var theOtherFile = theOtherFiles[n];
    // if one is found;
                        if (theFile.name == theOtherFile.name) {
                                  check = true;
                                  var oneFile = app.open(File(theFile));
                                  var otherFile = app.open(File(theOtherFile));
    // check profiles;
                                  if (oneFile.colorProfileName == otherFile.colorProfileName) {
    // collect umages with unmatched profiles;
                                  else {unmatchedProfiles.push(theFile)};
    // collect missing files;
              if (check == false) {alert ("hahaha");missingFiles.push(theFile)}
    // alert of problems;
    if (unmatchedProfiles.length > 0) {
    alert ("the corresponding files for these do have a different color space:\n"+unmatchedProfiles.join("\n\n"));
    if (missingFiles.length > 0) {
    alert ("these files miss corresponding ones:\n"+missingFiles.join("\n\n"));
    ////// get psds, tifs and jpgs from files //////
    function getFiles (theFile) {
        if (theFile.name.match(/\.(jpg|tif|psd|pdf|)$/i)) {
            return true

  • Using MISSING FIELD VALUES ARE NULL for external table

    I want to place a null for values missing in the sub_account field. Here is my external table:
    CREATE OR REPLACE DIRECTORY INCOMING_ORDERS_log_dir
    AS 'c:\starpubs\starpubs\dataformats\logs\INCOMING_ORDERS\log';
    CREATE OR REPLACE DIRECTORY INCOMING_ORDERS_bad_dir
    AS 'c:\starpubs\starpubs\dataformats\logs\INCOMING_ORDERS\bad';
    create table ext_INCOMING_ORDERS_table (
    Account varchar(5),
    Sub_Account varchar(1),
    Override_Code varchar(1),
    Nomenclature varchar(28),
    chg_nbr varchar(3),
    quantity integer,
    U_I varchar(5),
    zipcode varchar(5),
    type_reject varchar(2)
    organization external
    type oracle_loader
    default directory user_dir
    access parameters
    records delimited by newline
    missing field values are null
    badfile INCOMING_ORDERS_bad_dir:'INCOMING_ORDERS%a_%p.bad'
    logfile INCOMING_ORDERS_log_dir:'INCOMING_ORDERS%a_%p.log'
    fields
    Account(1:5) char(5),
    Sub_Account(7:7) char(1),
    Override_Code(10:10) char(1),
    Nomenclature(11:38) char(28),
    chg_nbr(40:42) char(3),
    quantity(44:48) integer external,
    U_I(50:54) char(5),
    zipcode(56:60) char(5),
    type_reject(61:62) char(2)
    location('PTCLICK.MANUAL.NOMEN.TXT','PTCLICK.ORDERS.TXT', 'EUR_RES.TXT', 'MQ.TXT', 'BPRO.TXT')
    reject limit unlimited;
    How can I place the MISSING FIELD VALUES ARE NULL for missing values for the sub_account?

    made the change I received this error:
    SQL> select * from ext_INCOMING_ORDERS_table;
    select * from ext_INCOMING_ORDERS_table
    ERROR at line 1:
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-00554: error encountered while parsing access parameters
    KUP-01005: syntax error: found "no": expecting one of: "comma, date_format,
    defaultif, enclosed, ltrim, lrtrim, ldrtrim, notrim, nullif, optionally, ),
    rtrim, terminated"
    KUP-01007: at line 7 column 26
    CREATE OR REPLACE DIRECTORY INCOMING_ORDERS_log_dir
    AS 'c:\starpubs\starpubs\dataformats\logs\INCOMING_ORDERS\log';
    CREATE OR REPLACE DIRECTORY INCOMING_ORDERS_bad_dir
    AS 'c:\starpubs\starpubs\dataformats\logs\INCOMING_ORDERS\bad';
    create table ext_INCOMING_ORDERS_table (
    Account varchar(5),
    Sub_Account varchar(1),
    Override_Code varchar(1),
    Nomenclature varchar(28),
    chg_nbr varchar(3),
    quantity integer,
    U_I varchar(5),
    zipcode varchar(5),
    type_reject varchar(2)
    organization external
    type oracle_loader
    default directory user_dir
    access parameters
    records delimited by newline
    badfile INCOMING_ORDERS_bad_dir:'INCOMING_ORDERS%a_%p.bad'
    logfile INCOMING_ORDERS_log_dir:'INCOMING_ORDERS%a_%p.log'
    fields
    Account(1:5) char(5),
    Sub_Account(7:7) char(1) NO PRESERVE BLANKS,
    Override_Code(10:10) char(1),
    Nomenclature(11:38) char(28),
    chg_nbr(40:42) char(3),
    quantity(44:48) integer external,
    U_I(50:54) char(5),
    zipcode(56:60) char(5),
    type_reject(61:62) char(2)
    location('PTCLICK.MANUAL.NOMEN.TXT','PTCLICK.ORDERS.TXT', 'EUR_RES.TXT', 'MQ.TXT', 'BPRO.TXT')
    reject limit unlimited;

  • Solved WiFi issue - Hope it works for you. If not, sorry.

    Hey, I know about your problem. I've been a Windows person for fifteen years and bought a MacBook Pro about eight hours ago and same problem. Been researching it for eight hours and got it to work. I don't know much, but you can try this and maybe it'll work. Plug your notebook into a cable ethernet connection (automatically connects and then go to network preferences (right by the battery indicator). Surf the web and just make sure you are actually connected via cable. If so, click ethernet in network preferences and then click advanced. You should see a bunch of taps, but click DNS and then you should see two sets of DNS servers. Write them down. Click okay and then disconnect cable (replug if you don't have an extra line). Clicka airport and then settings and then DNS servers. Add the two sets of numbers you just saw and then click apply. Enable your AirPort and now it should work. Hope this works. If it does, email me back at <edited by host - for your privacy please do not put email addresses in the body of posts.> Hopefully this solves all the wifi problems.

    Thanks for posting Marcus. This may help, but I've noticed many cable providers do not provide the DNS addresses by default.
    We had had three different cable providers at home over the past eight years and none "fed" DNS info automatically. One of those providers would give you the numbers if you called about a problem but otherwise felt it to be unnecessary for the masses to have them.
    The LAN/WAN sysops where I worked also had to dole out DNS numbers manually. We were spread across three facilities up to six miles apart and some of the remote locations needed DNS entered for best performance. Still, we had to call someone to get them.
    So, yes, it can help--no, many people cannot get these numbers without calling their ISP. Even then, they may not get them depending on the support tech who picks up the phone that day. It will vary by ISP.
    Keep up the experimenting as it benefits the whole community. If someone has to make a support call to try your DNS solution, so be it. It might be well worth the call. You theory certainly fits with DNS info I got from my sysops when I was working; they manually entered DNS addresses for physical locations that had trouble maintain server contact.
    Oops! Almost forgot--welcome to Apple Discussions!
    Allan

  • My phone is miss please check the imei for me thanks

    my phone is miss please check the ime for me thanks.

    Apple does not track phones.
    Contact law enforcement if you believe the device has been stolen.
    If it is merely lost, start looking for it.
    If the "Find My iPhone" feature had been enabled prior to to losing the device, it would be trackable via www.icloud.com

  • Missing table begin XSL context for: ?end if?

    I have 8 if clauses with grouping sub grouping data shown.
    when I try to validate my RTF file I am getting following error msg:
    [061112_073853972][][ERROR] [Line 3322.83] Missing table begin XSL context for: <?end if?>
    [061112_073854018][][ERROR] [Line 3624.134] Missing table begin XSL context for: <?end if?>
    [061112_073854050][][ERROR] [Line 3878.184] Missing table begin XSL context for: <?end if?>
    [061112_073854081][][ERROR] [Line 4203.183] Missing table begin XSL context for: <?end if?>
    [061112_073854112][][ERROR] [Line 4479.134] Missing table begin XSL context for: <?end if?>
    [061112_073854143][][ERROR] [Line 4870.182] Missing table begin XSL context for: <?end if?>
    [061112_073854190][][ERROR] [Line 5201.182] Missing table begin XSL context for: <?end if?>
    I have check each and every <?if:...?> clasue and it's corresponding <?end if?> clause

    Issue has be identified:
    It was a end of group statement after the structure of table.
    all of <?end for-each-group?> end tage should be in a table and only if (open and close) statement should group them.

  • [SOLVED]missing killall

    Arch is installed afresh in one of the hard disk. I found that killall command is missing. Tabbing lists only  kill and killall5. Any idea? I searched in the forum but no result bubbled out.
    During installation usually all base packages selected but this one missed some how. Thanks for the inputs. killall was copied from another arch installation but now correctly installed.
    Last edited by kgas (2009-07-13 15:55:31)

    pacman -Qo $(which kill killall killall5) wrote:/bin/kill is owned by procps 3.2.8-1
    /usr/bin/killall is owned by psmisc 22.7-1
    /sbin/killall5 is owned by sysvinit 2.86-5
    Last edited by whoops (2009-07-13 15:28:57)

  • "Missing signed entry in resource" for only some users

    Hi,
    I have recently updated my .jnlp file and .jar file and added some extra jar resources in the new jnlp.
    Since this new version, some users receive an error saying
    "Missing signed entry in resource:" for one particular resource.
    While for other users it works fine.
    I have signed the jar with jarsigner.
    Does anyone have an idea what could be the problem here?
    Thanks very much in advance,
    Best regards,
    Stein Aerts,
    University of Leuven, Belgium

    I remember hearing something like this, and had to do with :
    1.) what version of jarsigner was used to sign the jar, and
    2.) what version of JRE was used to validate the signed jar file on the client.
    (including US only vs. International version of JRE)
    For the jar that gets this error:
    Does it have any empty directories in it., or does it have entries with non-english characters in the resource names ?
    What version of the JDK was used to run jarsigner to sign this jar, and what jre is the application running on ?

  • Missing menu in SAP GUI for HTML

    I have a user experience missing menu in SAP GUI for html every he/she accessed it through Portal but he/she did not experience it SAP GUI for windows.
    Please let me know if you have an idea how to activate or display the menu (such as menu, edit favorties, extra, etc.).
    Thanks,
    Robert

    no i did get any solution .
    raja

  • Missing items in the IDoc for the delivery

    Hi to all,
    Sorry if not posting in the right forum.
    In my customer's scenario, an IDoc is created against a delivery (via the delivery output), and sent via ALE to a distant warehouse system, for picking and GI posting (basic type SHPMNT03).
    For some times, the IDoc created against deliveries including BOMs is missing the main item of the BOM (though the BOM main item is in the delivery).
    Consequently, the integration in the distant system is failing, because the higher-level item referenced in the BOM sub-items is missing.
    Surprisingly, re-triggering the delivery output does re-generate a complete IDoc, where the segment for the main item is back.
    I looked almost everywhere, did many searches in OSS (on SHPMNT03, on HIPOS, on E1ELD24 - segment name in the IDoc -, on "Missing items in the IDoc for the delivery", etc...), I even simply googled the web, but I can't even figure out what is the cause for this (I imagined it could be caused by a missing commit in the program generating the IDoc, but don't know whether this make sense).
    Any help would be highly appreciated.
    Thanks in advance and best regards
    Yan
    Edited by: Yan Loiseau on Jul 8, 2010 12:52 PM
    Edited by: Yan Loiseau on Jul 8, 2010 12:56 PM

    Hello Yan
    Jelena is right, you are better off taking it up with SAP. I also did not find any relevant OSS notes.
    However the issue, according to my reading, is in the following areas:
    1) LV56KF05: INCLUDE LV56KF62 .  " FILL_E1EDL24"
    This fills the EIEDL24 segment, may be the main item is filled  initially and overwritten later.
    2) Function Module: IDOC_OUTPUT_DELVRY
    You can look at the following OSS notes (though not fully relevant)  for some clues:
    810981 - Reference data missing in DESADV IDoc from decentralized WMS
    537470 - BOM + batch split in decentralized WMS, confirmation fails
    752921 - VL563: Higher-level item does not exist
    705086 - Higher-level item does not refer to existing item
    Hope this helps. Good luck.

  • Missing BIOS 26.4 file for MSI H97M ECO motherboard

    The BIOS 26.4 file seems to be missing from the download page for the MSI H97M ECO motherboard - I get an error when clicking on the link in the UK download site.
    I have installed the 26.3 file instead and I am getting very strange fan rpm on the ECO Center Pro tool - sometimes is shows around 700-800 rpm which is probably correct but it also shows much higher numbers such as 24,000 or 50,000 rpm!

    The bios has been removed that's why. Global just shows 26.3 being latest: http://www.msi.com/support/mb/H97M-ECO.html#down-bios
    Wait for MSI to fix it and re-release it. Usually versions are removed for a good reason (e.g. a bug).

  • Missing "Contact Sheet II" fix for CS4

    Somewhere I saw a missing "Contact Sheet II" fix for CS4. Can anyone point me in the right direction.
    The PDF contact in CS4 is not flexable and is very limited. You can't see it in Bridge or make changes like you can to a jpg contact sheet.
    Thanks Marv.

    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb404900&sliceId=2

  • HT4918 I miss the Jun 30 move for MobileMe to iCloud, how can I move my me email account to ICloud. Thanks

    I miss the Jun 30 move for MobileMe to iCloud, how can I move my me email account to ICloud. Thanks

    MobileMe: About moving to iCloud - http://support.apple.com/kb/HT4918
    http://me.com/move - do this as soon as possible due to limited grace period

Maybe you are looking for

  • Returning strings from OLE2 Word object (Forms 4.5)

    Below is an example of how to return string and numeric values from OLE2 objects. In this example the OLE2 object is a MS Word document, and I want to fetch all the bookmarks in the Document into a Forms 4.5 Varchar2. To do this I first need to get t

  • Help in automatic clearing

    Hiii Experts, i have a General Ledger which is shown TICK(i.e- Posted) instead of open.. and posting a screenshot of FBL3N of General Ledger. I have checked open line management is not maintained for the GL in fs00.. but the client want to run that G

  • Changing times of an intermittently recurring event

    Let me clarify that. So I have my work dates/times in iCal. I work a varied schedule (shift work in a hospital) as in varied days on a given week. I am now changing my hours worked from a 3am start to a 7pm start. Is there a way to change all my curr

  • Acrobat Pro won't download.

    When I click through it changes the language, and then won't let me switch back to my country of purchase. Then changes back to Adobe main page. I can't find a way to chat with somebody about this, and it's frustrating. It does say that my billing in

  • Is it permissible to download another copy of Acrobat lic software to install on laptop

    I installed my copy on my desktop.  I bought a laptop.  Can I download another copy without stepping on anybody's tail?