Wpdomain.db file gets corrupted every other day

Hello
Our secondary wpdomain.db database gets corrupted every other day. Right now we have up to five people connecting to it at one time using multiple instances of ConsoleOne. How many users can we have connect to it at one time?
Chris T.

Hi,
I guess I need to know what OS you are hosting the databases on. OES? Plain SLES? Sort of depends on what is serving up what and who is consuming it. But generally, you MUST disable opportunistic locking / client side caching on the CIFS connections used to access the domain databases. That is, no doubt, what is killing them.
Two approaches:
1. Fix the problem on the CIFS / SAMBA server side. Then client settings don't matter. Our domains are on pure SLES, not OES, and domains are shared via SAMBA. Clients incluse other SLES boxes, Windows clients, etc. So we nipped it in the bud by preventing it on the SAMBA server. If the server is using plain old SAMBA, the corresponding share section in /etc/samba/smb.conf should be set up similar to
Code:
[grpwise]
comment = Transfer
inherit acls = Yes
path = /grpwise
read only = No
oplocks = False
level2oplocks = False
You can configure some of these setting globally, but I like to specify them explicitly - then you know what is actually going to happen. And you don't mess with other shares exposed by the server where client side caching / op locks "might" be OK.
2. You can also solve the problem on the CIFS client side ( in your case, the remote servers mounting the CIFS share ) by disabling oplocks:
cat /proc/fs/cifs/OplockEnabled
It will report "1" meaning its IS enabled. That's bad! You can disable Op Locks easily:
echo 0 > /proc/fs/cifs/OplockEnabled
Generally, under high load, the CIFS client will fall apart with this enabled. The number of pending locks piles up and all the client does is service the locks. We have web server fronting a common CIFS share, you NEED to do the above to the systems mounting CIFS shares.
Doing either or both ( on all systems hosting / consuming the shares ). I don't trust people to set up their clients correctly, so I opted for #1. The next day the problems stopped, order was restored to the Universe.
( This is analogous to, on Windows clients talking to Netware, File Commit = ON, File Caching = OFF, Level 2 OpLocks = OFF, etc. )
-- Bob

Similar Messages

  • About every other day Firefox crashes, this is getting old boys, I have downloaded all the new updates. whats going on????

    About every other day Firefox crashes, this is getting old boys, I have downloaded all the new updates. whats going on???? I was right in the middle of paying bills, this sucks bad!

    https://support.mozilla.com/en-US/kb/Firefox+crashes#Getting_the_most_accurate_help_with_your_Firefox_crash
    Type '''about:crashes''' in the URL bar and hit Enter.
    Click the hyperlinks to bring up the Crash Report pages and copy'n'paste the URL of each of those reports into the message box here. We'll see if we can help you figure out what is causing those crashes to happen.

  • PDF file gets corrupted when generated from BSP

    Hi,
         I am generating a PDF file from a BSP page ( see the code below). The problem is that PDF file gets corrupted and  I am unable to open it. I also tried to use other functions like GUI_Download and DOwnload as suggested by many and they also do not work either. Has any one generated a PDF from BSP and can some one help?
    Data: GG type String.
    event handler for data retrieval
    data : event type ref to cl_htmlb_event.
    class cl_htmlb_manager definition load.
    class CL_HTTP_RESPONSE DEFINITION LOAD.
    DATA : PARAMS TYPE PRI_PARAMS,
             VALID  TYPE C,
    GV_SUCCESS_SPOOL_NO LIKE SY-SPONO.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING DESTINATION           = 'LOCL'
               COPIES                = COUNT
               LIST_NAME             = 'TEST'
               LIST_TEXT             = 'Test NEW-PAGE PRINT ON'
                  IMMEDIATELY           = ''
                  RELEASE               = 'X'
                  NEW_LIST_ID           = 'X'
               EXPIRATION            = DAYS
                  LINE_SIZE             = 140
               LINE_COUNT            = 23
               LAYOUT                = 'X_PAPER'
               SAP_COVER_PAGE        = 'X'
               RECEIVER              = 'SAP*'
               DEPARTMENT            = 'System'
                  NO_DIALOG             = 'X'
        IMPORTING OUT_PARAMETERS        = PARAMS
                  VALID                 = VALID.
      IF VALID <> SPACE.
        NEW-PAGE PRINT ON  PARAMETERS PARAMS NO DIALOG.
    write :/ 'Hello Message1'.
    write :/ 'Hello Message2 '.
    NEW-PAGE PRINT OFF .
      ENDIF.
    data :        spool_no TYPE TSP01-RQIDENT .
    spool_no = sy-spono.
    DATA: itab TYPE TLINE,
            witab TYPE TABLE OF TLINE,
            output TYPE STRING,
            outputx TYPE XSTRING.
    data : l_pdf_len type i.
    data: mi_bytecount type i.
    DATA : APP_TYPE TYPE STRING VALUE  'APPLICATION/PDF' .
    DATA:    cached_response TYPE ref to if_HTTP_RESPONSE.
    data : l_display_url type string .
    data : guid type GUID_32 .
      call function 'CONVERT_ABAPSPOOLJOB_2_PDF'
        EXPORTING
          SRC_SPOOLID              = spool_no
          NO_DIALOG                = 'X'
       IMPORTING
          PDF_BYTECOUNT            =  mi_bytecount
        TABLES
          PDF                      = witab
        EXCEPTIONS
          ERR_NO_ABAP_SPOOLJOB     = 1
          ERR_NO_SPOOLJOB          = 2
          ERR_NO_PERMISSION        = 3
          ERR_CONV_NOT_POSSIBLE    = 4
          ERR_BAD_DESTDEVICE       = 5
          USER_CANCELLED           = 6
          ERR_SPOOLERROR           = 7
          ERR_TEMSEERROR           = 8
          ERR_BTCJOB_OPEN_FAILED   = 8
          ERR_BTCJOB_SUBMIT_FAILED = 9
          ERR_BTCJOB_CLOSE_FAILED  = 10
          others                   = 11.
      if sy-subrc EQ 0.
        LOOP AT witab INTO itab.
          CONCATENATE
            output
            itab-tdline
          INTO output in character mode.
        ENDLOOP.
    endif.
    CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
            EXPORTING
                text   = output
                mimetype =   'APPLICATION/PDF'
            IMPORTING
                buffer = outputx.
    concatenate cl_abap_char_utilities=>byte_order_mark_little
    outputx
    into outputx in byte mode.
      response->set_header_field( name = 'content-type' value =
    'APPLICATION/PDF; charset=utf-16le'  ).
      response->delete_header_field( name =
    if_http_header_fields=>cache_control ).
      response->delete_header_field( name = if_http_header_fields=>expires
      response->delete_header_field( name = if_http_header_fields=>pragma )
      response->set_header_field( name = 'content-disposition'
                                  value = 'attachment; filename = TEST.PDF'
      l_PDF_len = xstrlen( OUTPUTX ).
      response->set_data( data = OUTPUTx
                          length = l_PDF_len ).
    navigation->response_complete( ).
    Regards
    Amit Agrawal

    HI Craig Cmehil,
                   I have tried this code as well as given in the URL specified by you. But using this also browser shows the following  content. It seems that PDF content is corrupted.
    My Output as shown on Browser Starts below this line----
    DF-1.3
    %âãÏÓ
    2 0 obj
    /WinAnsiEncoding
    endobj
    3 0 obj
    <<
    /Type /Font
    /Subtype /Type1
    /BaseFont /Courier
    /Name /F001
    /Encodg 2 0 R
    >>
    endobj
    4 0 obj
    <<
    /Length 5 0 R
    >>
    stream
    /F001 7.30 Tf 0 0 0.753 rg BT 18.00 570.65 Td 0 Tw <33302E30362E3230302020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020>Tj ET 0 0 0.753 rg BT 2950 570.65 Td 0 Tw
    <20204854545020436F6E74726F6C202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020>Tj ET 0 0 0.753 rg BT 572.40 570.65 Td 0 Tw <2020202020202020202020202031>Tj ET q 0 0 0 RG 0.55 w 18.00 562.90 m
    634. 562.90 l S Q 0 0 0.753 rg BT 18.00 551.45 Td 0 Tw <48656C6C6F20416D6974>Tj ET 0 0 0.753 rg BT 18.00 541.85 Td 0 Tw <48656C6C6F204765726176>Tj ET
    endstream
    endobj
    5 0 obj
    624
    endobj
    6 0 obj
    <<
    /Type /Page
    /MediaBox
    /Parent 1 0 R
    /Resource
    <<
    /ProcSet
    /PDF /Text
    /Font
    <<
    /F001 3 0 R
    >>
    /XObject
    <<
    >>
    >>
    /Contents 4 0 R
    >>
    endobj
    7 0 obj
    <<
    /Author (AMG )
    /CreationDate (20050630 181301)
    /Creator (Form X_58_170 EN)
    /Producer (SAP R/3 Release 620 )
    %SAPinfoStart TOA_DARA
    %FUNCTI=(    )
    %MANDANT=(   )
    %DEL_DATE=(00000000)
    %SAP_OBJECT=(          )
    %AR_OBJECT=(          )
    %OBJECT_ID=(                          )
    %FORM_ID=(                                        )
    %FORMARCHIV=(  )
    %RESERVE=(   )
    %NOTIZ=(                                                                )
    %SAPinfoEnd TOA_DARA
    >>
    endobj
    1 0 obj
    <<
    /Type /Pages
    /Kids
    [ 6 0 R
    /Count 1
    >>
    endobj
    8 0 obj<<
    /Type /Catalog
    /Pages 1 0 R
    /PageMode /UseNone
    >>
    endobj
    xref
    0 9
    0000000000 65535 f
    0000001801 00000 n
    0000000017 0000n
    0000000052 00000 n
    0000000157 00000 n
    0000000840 00000 n
    0000000862 00000 n
    0000001048 00000 n
    0000001869 00000 n
    trailer
    /Size 9
    /Root 8 0 R
    /Info 7 0 R
    >>
    startxref
    1944
    %%EOF
    Browser Displey Content Ends----
    My Coding Starts----
    Data: GG type String.
    event handler for data retrieval
    data : event type ref to cl_htmlb_event.
    class cl_htmlb_manager definition load.
    class CL_HTTP_RESPONSE DEFINITION LOAD.
    DATA : PARAMS TYPE PRI_PARAMS,
             VALID  TYPE C,
    GV_SUCCESS_SPOOL_NO LIKE SY-SPONO.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING DESTINATION           = 'LOCL'
               COPIES                = COUNT
               LIST_NAME             = 'TEST'
               LIST_TEXT             = 'Test NEW-PAGE PRINT ON'
                  IMMEDIATELY           = ''
                  RELEASE               = 'X'
                  NEW_LIST_ID           = 'X'
               EXPIRATION            = DAYS
                  LINE_SIZE             = 140
               LINE_COUNT            = 23
               LAYOUT                = 'X_PAPER'
               SAP_COVER_PAGE        = 'X'
               RECEIVER              = 'SAP*'
               DEPARTMENT            = 'System'
                  NO_DIALOG             = 'X'
        IMPORTING OUT_PARAMETERS        = PARAMS
                  VALID                 = VALID.
      IF VALID <> SPACE.
        NEW-PAGE PRINT ON  PARAMETERS PARAMS NO DIALOG.
    write :/ 'Hello Amit'.
    write :/ 'Hello Gaurav '.
    NEW-PAGE PRINT OFF .
      ENDIF.
    GV_SUCCESS_SPOOL_NO = sy-spono.
    data :        spool_no TYPE TSP01-RQIDENT .
    spool_no = sy-spono.
    write: GV_SUCCESS_SPOOL_NO.
    *write: spool_no.
    IF display_type = 'convertspool'.
      DATA: itab TYPE TLINE,
            witab TYPE TABLE OF TLINE,
            output TYPE STRING,
            outputx TYPE XSTRING.
    data : l_pdf_len type i.
    data: mi_bytecount type i.
    DATA : APP_TYPE TYPE STRING VALUE  'APPLICATION/PDF' .
    DATA:    cached_response TYPE ref to if_HTTP_RESPONSE.
    data : l_display_url type string .
    data : guid type GUID_32 .
           spool_no like TSP01-RQIDENT .
    *spool_no = GV_SUCCESS_SPOOL_NO .
      call function 'CONVERT_ABAPSPOOLJOB_2_PDF'
        EXPORTING
          SRC_SPOOLID              = spool_no
          NO_DIALOG                = 'X'
       IMPORTING
          PDF_BYTECOUNT            =  mi_bytecount
        TABLES
          PDF                      = witab
        EXCEPTIONS
          ERR_NO_ABAP_SPOOLJOB     = 1
          ERR_NO_SPOOLJOB          = 2
          ERR_NO_PERMISSION        = 3
          ERR_CONV_NOT_POSSIBLE    = 4
          ERR_BAD_DESTDEVICE       = 5
          USER_CANCELLED           = 6
          ERR_SPOOLERROR           = 7
          ERR_TEMSEERROR           = 8
          ERR_BTCJOB_OPEN_FAILED   = 8
          ERR_BTCJOB_SUBMIT_FAILED = 9
          ERR_BTCJOB_CLOSE_FAILED  = 10
          others                   = 11.
      if sy-subrc EQ 0.
        LOOP AT witab INTO itab.
          CONCATENATE
            output
            itab-tdline
          INTO output in character mode.
        ENDLOOP.
    endif.
    *write : output.
    CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
            EXPORTING
                text   = output
                mimetype =   'APPLICATION/PDF'
            IMPORTING
                buffer = outputx.
    *concatenate cl_abap_char_utilities=>byte_order_mark_little
    *outputx
    *into outputx in byte mode.
    CREATE OBJECT cached_response TYPE CL_HTTP_RESPONSE EXPORTING add_c_msg = 1.
    some Browsers have caching problems when loading Excel Format
      response->set_header_field( name = 'content-type' value =
    'APPLICATION/PDF'  ).
      response->delete_header_field( name =
    if_http_header_fields=>cache_control ).
      response->delete_header_field( name = if_http_header_fields=>expires
      response->delete_header_field( name = if_http_header_fields=>pragma )
        l_pdf_len = xstrlen( outputx ).
        cached_response->set_data( data   = outputx
                            length = l_pdf_len ).
        cached_response->set_header_field( name  = if_http_header_fields=>content_type
                                           value = 'application/pdf' ).
        cached_response->set_status( code = 200 reason = 'OK' ).
        cached_response->server_cache_expire_rel( expires_rel = 180 ).
        CALL FUNCTION 'GUID_CREATE'
          IMPORTING
            ev_guid_32 = guid.
        CONCATENATE runtime->application_url '/' guid '.pdf' INTO l_display_url.
        cl_http_server=>server_cache_upload( url      = l_display_url
                                             response = cached_response ).
    RETURN.
    My Coding Ends----
    Any Further help on this.
    Regards
    Amit Agrawal

  • ITunes Library.itl gets corrupted every time I restart my CISCO VPN enabled laptop.

    Hi,
    iTunes Library.itl file gets corrupted everytime I restart my laptop.
    I am using Lenovo T410 with Windows 7.
    This is causing alot of problems as all my iPhone songs and apps get deleted after every sync.
    Please help.

    I have the same problem.
    I have removed and re-installed iTunes. The music files are still intact but the library gets erased every time I restart the PC.
    This means I have re-scan all my music files over and over again.
    Also, an inspection of the iTunes directory reveals lots and lots of temp (iT*.tmp) files, all of them are about the same size as the iTunes library database (10mb in my case) so it looks like iTunes is not closing down correctly / writing the temp file back to the iTunes library (iTunes Library.itl)file.
    Can anybody help?

  • Unless I repair my hard drive every other day I am unable to delete songs from iTunes or email messages from Postbox. I've only had an iMac for a few weeks, is this normal?

    Unless I repair my hard drive every other day I am unable to delete songs from iTunes or email messages from Postbox. I've only had an iMac for a few weeks, is this normal?

    Back up all data.
    This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it, but you do need to follow the instructions below.
    Step 1
    If you have more than one user, and the one in question is not an administrator, then go to Step 2.
    Triple-click anywhere in the following line on this page to select it:
    { sudo chflags -R nouchg,nouappnd ~ $TMPDIR..; sudo chown -R $UID:staff ~ $_; sudo chmod -R u+rwX ~ $_; chmod -R -N ~ $_; } 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    You'll be prompted for your login password. Nothing will be displayed when you type it. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command may take a few minutes to run, or perhaps longer if you have literally millions of files in your home folder. Wait for a new line ending in a dollar sign ($) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1, if it frightens you, or if it doesn't solve the problem.
    Start up in Recovery mode. When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. A Terminal window will open.
    In the Terminal window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password dialog will open. You’re not going to reset a password.
    In the dialog, select the startup volume ("Macintosh HD," unless you gave it a different name) if it's not already selected.
    Select your username from the menu labeled Select the user account if it's not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
     ▹ Restart
    from the menu bar.

  • HT201263 hi i have an iphone 4 im fed up with it it keeps freezing and blue screen i have restarted it every other day for 2 wks now even had it in a phone shop now the screen is blue with a white line down the middle and will not let me switch off after

    my iphone 4 has been acting up for 2 wks now every other day it keeps freezing sometimes i can wake it by pressing the 2 buttons tog ive restored it restarted it had it in a shop were they got it back on, saying it was the soft ware, but the same day i got it back it froze again, now the screen is blue once again and it wont let me switch it off n sort it with pressing both buttons and the computer isnt finding it, im fed up i will never have another iphone any ideas anyone please

    Hi @imobl,
    You sound like an Apple support guy who hasn't been able to answer my questions.
    To respond to some of the points you made,
    - I did not ignore Ocean20's suggestion. If you has read my post, you would have known that I took my phone to the apple service centre where they tried this restore on THEIR machines. I am assuming that Apple guys know how not to block iTunes. So I actually do not understand your point about me trying the hosts file changes on my machine. Do you not believe that apple tested this issue with the correct settings?
    - you also give a flawed logic of why the issue is a hardware issue. You mentioned that If I thought that the issue was with the software, i should try a restore and getting it to work. The problem is that my error (23), and many others comes up when the restore fails. And you would be astonished to know that not all errors are hardware errors. Sometimes even software errors prevent restores. Funnily enough Apple itself mention that 'in rare cases, error 23 could be hardware related'.
    - all Apple has done so far is replicate the issue. I don not know how anyone can conclude that the issue is a hardware issue.
    And by the way, I am not certain that this is a software bug. Again if you read my Posts, you will notice I only want a confirmation,/proof that the issue is hardware related as they mention..
    Please refrain do. Responding if there is nothing to add.

  • Why does my itunes crash after start up with an "APPCRASH" error every time i open it?! I have been trying to fix this for weeks but all i can do it re-install it every other day which does nothing!

    Why does my itunes crash after start up with an "APPCRASH" error every time i open it?! I have been trying to fix this for weeks but all i can do it re-install it every other day which does nothing! I am desperate to get access to my itunes to get music on my phone and all of this just makes me want me to sell my iphone since there is no other way to add music to my phone. If things go get sorted soon you can say goodbye to my support.

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • Adf-config.xml file gets corrupted

    Hello,
    I have observed in many instances that adf-config.xml file get corrupted in the sense it looses (wipes out) mds conenction string and as a result the projects won't compile or you will not be able to fecth anything from MDS like wsdls ect. Making this file as read only or backing it up seems to be the work around. I have seen this in 11.1.1.3.0 version.
    But can you please suggest why this happens and any permanent solution to fix this?
    Thanks
    SathyaP

    In your adf-config.xml the password property is not properly closed and your property name is incorrect.
    Replace following:
    <property name="password" value="p$ssword1"*with this in your adf-config.xml
    <property name="jdbc-password" value="p$ssword1"/>

  • Ever since I received my Macbook Pro in July 2011 I've had issues with my wireless connection at home.  After software updates, Apple support suggested I reboot my router which works.  But now I have to do it every other day.  ????

    Ever since I received my Macbook Pro in July 2011 I've had issues with my wireless connection at home.  After software updates, Apple support suggested I reboot my router which works.  But now I have to do it every other day.  ????  AT&T my DSL carrier suggests I get a new router.  Apparently the one I have is really old and doesn't support my Macbook Pro.  Does this sound right?

    If your using WEP encryption yes, Apple has discontinued that becaues it's worthless. WEP (and WPA) is cracked so encryption makes no sense.
    Get a new Wireless N router, set it up with WPA2 (AES) Personal and two different 20+ randon letter/numbersymbol character passwords
    One for Admin access only of the router, keep this on paper off all comptuers in a safe someplace.
    One for entering into devices, computers etc for Internet Access Only.
    You need the long and random password to defeat brute force attacks by GPU software that the hackers have now.
    Also if you give out the password to another, they can't hack the network with the guest access password.
    Computers remember the internet password, so anyone with access to your machines or network will have the password.
    Since you have another Admin only password, they can't hack in. got it?
    You don't need "Invisible" or "MAC Address filtering" that's a waste of time as hackers can sniff a network and causes issues getting on the network.
    Good luck.

  • Why do music files get corrupted in iTunes?

    Why do music files get corrupted in iTunes? All kinds of files;( mp3, mp4, aac, etc., either purchased from iTunes, Store, downloaded from online, or uploaded from an audio disc) SUDDENLY GET CORRUPTED AND STOP PLAYING! Even if I delete the file from my iTunes and then re-open it from the source, it appears to be corrupted. My system has been thoroughly scanned and does not have and never has hAd, a virus. Music files should not have a shelf life. They're just non-living pieces of information. So why should they suddenly go bad? It is unacceptable that over the past year I have had to delete many files from my iTunes library and find some other source for the same song. It has been an exhausting headache and an exasperating waste of my time.

    this is not necessarily the case, I had an itunes library go bad on me. I noticed the corrupt files on my ipod, they were either skipping real bad or sounded like there was some crazy modulation filter applie. Anyways, i went to iTunes and the files were bad there, so I played them in WMP, also bad, so obviously it was a file issue, BUT, what was the source of the corruption.......also, this happened ONLY to mp3s, no other audio file.......so i had backups and copied the bad files from a dvd and played them in WMP, files were good, then i import them to iTunes, and the files are crap again, so I tried just adding to library, still bad. So the file was fine before, once iTunes touched it, the file went bad, I **** you not. So I uninstalled iTunes from my PC, downloaded the newest version and reinstalled, same problems, so i continued trying with a different version, and making sure all registry entries were cleared before installing etc. NOTHING, so in the end i had to start using Winamp and all those files have not since caused me problems. So NO, it does not have to be hard drive issues, assess your own situation and you should be able to figure out if it is your HDD. My problem seemed to be iTunes library corrupting my metadata. However, I could never get it to work. I am glad to say I have since abandoned my PC and bought a new iMac on which i once again happily running iTunes with all the same audio files as before

  • Essexcln file gets corrupted

    Hi Experts,
    I need to know why the essexcln.xll file gets corrupted and how it can be prevented?
    Thanks,

    Hi Vasavya,
    After I ReInstall and ReConfigure the Essbase client 11.1.2 (Microsoft Windows 64 bit), I'm getting the same Error as
    *" essexcln.xll file gets corrupted "* when i open the MicroSoft Excel 2007
    More than that I have two folders [*EssbaseClient and EssbaseClient-32*] in the following path
    *" C:\Oracle\Middleware\EPMSystem11R1\products\Essbase ".*
    And also EssbaseClient and EssbaseClient-32 having the same set of SubFolders
    They are
    Bin
    Locale
    Perlmod
    Kindly guide me how to overcome this Issue.
    Thanks And Regards
    ChiDam

  • Why is there a Flash update every other day?

    I'm getting a little paranoid that some of these updates aren't actually from Adobe. How on earth can Flash need to be updated so often? I thought Adobe was giving up on it (I wish).

    Every other day...?  The last few Flash Player updates:
    11.4.402.287 on Oct. 8
    11.4.402.278 on Sept 18
    11.4.402.265 on Aug 21
    What updates did you get?

  • Reminder every Other day?

    My wife just got the 4s last night. She's getting used to Siri but can't figure out how to set reminders for every OTHER day.  Is this possible?

    The repeat options for Reminders is as shown when selecting Repeat:
    None
    Every Day
    Every Week
    Every 2 Weeks
    Every Month
    Every Year
    There is no every other day option.

  • Essexcln.xll file gets corrupted

    Hi All,
    *[The location of essexcln.xll file : *C:\Oracle\Middleware\EPMSystem11R1\products\Essbase\EssbaseServer-32\bin*].*
    While i opening the Microsoft Excel, I get the following Error,
    "The file you are trying to open 'essexcln.xll' is in a different format than specified by the file extension.Verify that the file is not corrupted and is from a trusted source before opening the file.Do you want to open the file now?"
    I Proceed YES to open the Excel File, now also I didnt get the Essbase Add-Ins instead I'm getting Encrypted datas in spreadsheet.
    Kindly guide me how to overcome this issue
    Thanks And Regards
    ChiDam

    Hi Vasavya,
    After I ReInstall and ReConfigure the Essbase client 11.1.2 (Microsoft Windows 64 bit), I'm getting the same Error as
    *" essexcln.xll file gets corrupted "* when i open the MicroSoft Excel 2007
    More than that I have two folders [*EssbaseClient and EssbaseClient-32*] in the following path
    *" C:\Oracle\Middleware\EPMSystem11R1\products\Essbase ".*
    And also EssbaseClient and EssbaseClient-32 having the same set of SubFolders
    They are
    Bin
    Locale
    Perlmod
    Kindly guide me how to overcome this Issue.
    Thanks And Regards
    ChiDam

  • EA6900 drops 2.4 GHz wifi every other day

    Hey,
    my EA6900 (firmware version 1.1.42.158863) drops the 2.4 GHz network every other day or so. At that point, all connected devices lose the network connection and cannot connect again until I manually reset the router. This is a big pain in the **bleep**.
    Here is what this looks like on a Linux client:
    May  4 07:50:06 habanero dhclient: DHCPREQUEST of 192.168.1.104 on wlan0 to 255.255.255.255 port 67 (xid=0x553aef8)
    May  4 07:50:35  dhclient: last message repeated 2 times
    May  4 07:50:39 habanero dhclient: DHCPREQUEST of 192.168.1.104 on wlan0 to 255.255.255.255 port 67 (xid=0x553aef8)
    May  4 07:50:57 habanero dhclient: DHCPREQUEST of 192.168.1.104 on wlan0 to 255.255.255.255 port 67 (xid=0x553aef8)
    May  4 07:51:13 habanero avahi-daemon[1696]: Withdrawing address record for 2605:6000:100e:c073:21e:68ff:fed6:7636 on eth0.
    May  4 07:51:13 habanero avahi-daemon[1696]: Registering new address record for 2605:6000:100e:c073:21e:68ff:fed6:7636 on eth0.*.
    May  4 07:51:13 habanero avahi-daemon[1696]: Registering new address record for fe80::21e:68ff:fed6:7636 on eth0.*.
    May  4 07:51:13 habanero avahi-daemon[1696]: Withdrawing address record for 2605:6000:100e:c073:a18e:f467:24c3:f7bb on wlan0.
    May  4 07:51:13 habanero avahi-daemon[1696]: Registering new address record for 2605:6000:100e:c073:a18e:f467:24c3:f7bb on wlan0.*.
    May  4 07:51:13 habanero avahi-daemon[1696]: Registering new address record for fe80::216:eaff:febc:cc0e on wlan0.*.
    May  4 07:51:15 habanero kernel: [425404.872139] cfg80211: Calling CRDA to update world regulatory domain
    May  4 07:51:15 habanero wpa_supplicant[1981]: wlan0: CTRL-EVENT-DISCONNECTED bssid=48:f8:b3:9d:ae:5b reason=4
    May  4 07:51:15 habanero NetworkManager[1772]: <info> (wlan0): supplicant interface state: completed -> disconnected
    May  4 07:51:15 habanero NetworkManager[1772]: <info> (wlan0): supplicant interface state: disconnected -> scanning
    May  4 07:51:15 habanero kernel: [425405.033185] cfg80211: World regulatory domain updated:
    May  4 07:51:15 habanero kernel: [425405.033189] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
    May  4 07:51:15 habanero kernel: [425405.033192] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)  
    May  4 07:51:15 habanero kernel: [425405.033194] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)  
    May  4 07:51:15 habanero kernel: [425405.033196] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)  
    May  4 07:51:15 habanero kernel: [425405.033198] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)  
    May  4 07:51:15 habanero kernel: [425405.033200] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)  
    May  4 07:51:17 habanero avahi-daemon[1696]: Withdrawing address record for 2605:6000:100e:c073:3d66:cec1:f213:3d26 on eth0.
    May  4 07:51:17 habanero avahi-daemon[1696]: Leaving mDNS multicast group on interface eth0.IPv6 with address 2605:6000:100e:c073:3d66:cec1:f213:3d26.
    May  4 07:51:17 habanero avahi-daemon[1696]: Joining mDNS multicast group on interface eth0.IPv6 with address 2605:6000:100e:c073:21e:68ff:fed6:7636.
    May  4 07:51:17 habanero dhclient: DHCPREQUEST of 192.168.1.104 on wlan0 to 255.255.255.255 port 67 (xid=0x553aef8)
    May  4 07:51:21 habanero NetworkManager[1772]: <info> (eth0): carrier now OFF (device state 100, deferring action for 4 seconds)
    May  4 07:51:21 habanero kernel: [425411.065496] r8169 0000:03:00.0 eth0: link down
    May  4 07:51:23 habanero NetworkManager[1772]: <info> (eth0): carrier now ON (device state 100)
    May  4 07:51:23 habanero kernel: [425412.693894] r8169 0000:03:00.0 eth0: link up
    May  4 07:51:30 habanero NetworkManager[1772]: <warn> (wlan0): link timed out.
    May  4 07:51:30 habanero NetworkManager[1772]: <info> (wlan0): device state change: activated -> failed (reason 'SSID not found') [100 120 53]
    May  4 07:51:30 habanero NetworkManager[1772]: <warn> Activation (wlan0) failed for connection 'olalmaro5'
    May  4 07:51:30 habanero dbus[1572]: [system] Activating service name='org.freedesktop.nm_dispatcher' (using servicehelper)
    May  4 07:51:30 habanero NetworkManager[1772]: <info> (wlan0): device state change: failed -> disconnected (reason 'none') [120 30 0]
    May  4 07:51:30 habanero NetworkManager[1772]: <info> (wlan0): deactivating device (reason 'none') [0]
    May  4 07:51:30 habanero NetworkManager[1772]: <info> (wlan0): canceled DHCP transaction, DHCP client pid 19785
    May  4 07:51:30 habanero avahi-daemon[1696]: Withdrawing address record for 2605:6000:100e:c073:a18e:f467:24c3:f7bb on wlan0.
    May  4 07:51:30 habanero avahi-daemon[1696]: Withdrawing address record for 2605:6000:100e:c073:216:eaff:febc:cc0e on wlan0.
    May  4 07:51:30 habanero avahi-daemon[1696]: Leaving mDNS multicast group on interface wlan0.IPv6 with address 2605:6000:100e:c073:216:eaff:febc:cc0e.
    May  4 07:51:30 habanero avahi-daemon[1696]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::216:eaff:febc:cc0e.
    May  4 07:51:30 habanero avahi-daemon[1696]: Withdrawing address record for fe80::216:eaff:febc:cc0e on wlan0.
    May  4 07:51:30 habanero avahi-daemon[1696]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fe80::216:eaff:febc:cc0e.
    May  4 07:51:30 habanero avahi-daemon[1696]: Interface wlan0.IPv6 no longer relevant for mDNS.
    How do I fix this?
    I've enabled automatic router firmware updates, but this has not helped over the last weeks.
    Thanks in advance,
    Robert

    There is a bunch of people with this router ( me included) that are having issues with the wireless dropping out. Some more than others as far as the frequency of it. I have a ticket open with them and have been talking to them every few days about it. One thing I discovered the other day that has stopped it from dropping connections on the 2.4 is to set the mode to G only. I have given this info to linksys and they are supposed to get back to me by tomorrow with some more info. I am assuming it is the same problem as yours: everything is working fine then all of a sudden devices start to disconnect randomly. An my laptops it shows as the SSID is available but it wont connect to it. Only way to get back on is to reboot the router. As suggested by linksys the security is set to WPA2 Personal and the bandwidth is set to 20 mHz instead of auto. There was a big thread about this starting to happen when the last update came out that went from 1.1.42.156465 to 1.1.42.158863. If the Auto update was checked it got the update and started to disconnect wireless stuff. Might want to see what hardware version your is, the 1.0 came with the 1.1.42.156465 so if yours has updated to the newer one you could roll back and see if it gets better. there is a go back to last version button on the UI. but if you have the hw ver 1.1 it came with the updated version and we have been told not to go back as it may brick the router. here is the thread: http://community.linksys.com/t5/Wireless-Routers/EA6900-New-Firmware-1-1-42-158863/td-p/770985

Maybe you are looking for

  • Adobe Shockwave Player version 11.5.1.601 download problem

    Whenever I try to download version 11.5.1.601it will go about one quarter ways through installation process then I get the message: Error opening file for writing: C:/WINDOWS/system32/Adobe/Director/np32dsw.dll Click Abort to stop the installation, R

  • Help, I think I just killed my 975X PUE

    I stupidly tried to update the bios from 7.54B to 7.7. Now my PC won't even turn on. Sometimes, perhaps every 1/20 turns on and off. Will I get the picture that hides the initial black screen which asks you to press DEL or F12. Help please.

  • HT4914 how can i cancel my itunes match

    Hi, good evening. I have a question last year I suscribed on itunes match, but I want to cancel it, how can i make it? Thank You.

  • Playback speeded up

    I have an iTouch. I imported a cd with meditations on it into my computer. They all play just fine. I created a playlist on my iTouch, and put them into it. When I play the playlist on my iTouch - 3 of the 4 are in fast mode...I deleted the playlist,

  • How to share the entire hard drive with only one group

    We want to share our entire hard drive with our staff, plus share Web folders with our customers plus the staff. We'd like our customers to have no permissions at all for the share point at the root of the drive, so it won't even be presented as a vo