Unique Plugin CSS IDs

I'm trying to style the output from a number of the plugins, the email subscription and the search bar to be specific for now, but I can't find a good way to identify them. The only thing output is "ctl00_bannerslot_ctl02_SubscribePanel", but that changes depending on which page you are viewing. How do I globally and uniquely identify plugin output? I don't want to edit the .aspx files because then I have to remake those changes every time that I upgrade a patch level.

Unfortunately you/we are stuck between a rock and a hard place with this. In some places the HTML elements have classes assigned to them (eg npbody) and these won't change based on the page.
At the end of the day we are stuck either directly modifying a aspx/ascx page to embed a class we can re-use or you may need to get into some fancy css structure (nested paths). I'm not a designer so I'm not sure about this.
I'm not sure if modifying a master page would help you make style changes and these remain  after upgrading. For example if you wrap a dot net control with a div tag and a class in a master page .. and then in the stylesheet you use the path from that class to define a specific style in the control you need (eg myclass.table.tr.td).

Similar Messages

  • Where can I find Kerberos plugin for iDS 5.X?

    I use iDS 5.0 to replace NIS naming service in our Solaris 8 environment. I would like to get user authenticate through Kerberos but don't know what need to be done. Can someone please help. Thank You.

    PADL Software (www.padl.com) wrote an iDS 5.0 plugin that can do Kerberos v5 authentication.
    Ludovic.

  • Uniqueness of conversation IDs(?)

    In WebLogic81sp5/WLI8.5 I use a service control to call a conversational Web service from a JPD process. The service control exposes two methods, clientRequest (conversation state: start) and a callback method, clientResponse (conversation state: finish).
    When I call the clientRequest method (in a Control send node), the service control generates a unique conversation id of the form:
    [<processInstanceID>]myserviceControl:<AUniquePart>
    Now, the web service may not reply, so I put a Timeout path on my Control send/Control receive structure, configured to retry once. In case the response does not arrive within, say, 1 minute, the request is resent, generating a new conversation ID for the service control:
    [<processInstanceID>]myserviceControl:<AnotherUniquePart>
    So far, so good. But now the fun starts: Assume that the first response was only delayed, not lost. After 1.5 minutes it arrives, bearing the original conversation ID in a <CallbackHeader> element in the SOAP header. Because the service control is now tied to the new conversation ID, I would expect the Workshop framework to ignore the incoming (delayed) response and just return a SOAPFault saying that the conversation ID is unknown.
    However, the process happily accepts the old message, even if the conversation ID is outdated?
    In fact, when the second response arrives, IT triggers a SOAPFault stating that the conversation is unknown.
    Workshops seems to discard the unique part of the service control conversation ID, given that the error message reads: "An attempt was made to send a request to conversation id <processInstanceID>. This is not a valid conversation id." So for conversation control, Workshop only uses the process instance ID?
    I tested this theory by having the web service return with a modified conversation ID in the header, like:
    [<processInstanceID>]myserviceControl:BLAHBLAHBLAH
    Indeed, the process happily accepts this response and continues?!
    Is this how the Workshop framework is supposed to work, or is there some switch that I am not aware of? In other words, how can I make sure that Workshop does not loose the uniqueness of a service control ID and just accepts any incoming message to the process instance in question?
    (This becomes a serious issue if the control is used more than once in a process. Assume requestA will generate responseA ('SUCCESS'), and requestB will generate responseB ('FAILURE'). If the Control receive node waiting for responseA times out, it causes requestA to be resent. Now, if the first responseA is received, it will appear to the process as belonging to the second requestA. This is not critical; however, when the process now sends off requestB, it receives (and accepts) the second responseA as belonging to requestB! Since responseA and responseB differ (SUCCESS/FAILURE), the process now thinks that requestB went fine even though it actually failed.)
    If you are still with me so far, I thank you for reading and apologize for the lengthy post...
    / Anders

    Hi Anders
    Hi
    I tested your scenario and it seems to work as designed.
    It is true that the process Instance Id is what JPD considers and not the whole of conversationId.
    So which ever response "comes first" will be consumed and other will get dropped.This is what we see now.
    Here are the convId and the results for 2 concurrent requests.
    JPD ---> Service control ---> JWS
    Req 1:
    <conversationID>[1152668451563]ws:192.168.1.100-1be3a66.10c6056ed9d.-7f8d</conversationID>
    Retry1:
    <conversationID>[1152668451563]ws:192.168.1.100-1be3a66.10c6056ed9d.-7f87</conversationID>
    Response1:
    Actual response with convId [1152668451563]ws:192.168.1.100-1be3a66.10c6056ed9d.-7f8d
    Retry1 Response:
    Failure with conv Id [1152668451563]ws:192.168.1.100-1be3a66.10c6056ed9d.-7f87
    com.bea.wlw.runtime.core.bean.ConversationNotFoundException: An attempt was made to send a request to conversation id 1152668451563. This is not a valid conversation id. The most common cause of this exception is an attempt to send a request to a conversation that has already been
    Request2:
    <conversationID>[1152668454958]ws:192.168.1.100-1be3a66.10c6056ed9d.-7f8a</conversationID>
    Retry of request2:
    <conversationID>[1152667953547]ws:192.168.1.100-1be3a66.10c6056ed9d.-7fa5</conversationID>
    Response1:
    Actual response with convId [1152668454958]ws:192.168.1.100-1be3a66.10c6056ed9d.-7f8a
    Retry1 Response:
    Failure with conv Id [1152667953547]ws:192.168.1.100-1be3a66.10c6056ed9d.-7fa5
    com.bea.wlw.runtime.core.bean.ConversationNotFoundException: An attempt was made to send a request to conversation id 1152668451563. This is not a valid conversation id. The most common cause of this exception is an attempt to send a request to a conversation that has already been
    MULTIPLE CONTROL INSTANCES:
    In this case I believe we can use control factory to create multiple control instances and so they get unique control instance id also and so the responses are consumed correctly not across the requests as you mentioned here.
    You can define a factory like
    * @common:control
    private test.WsControlFactory wsFac;
    and then create the instances by
    public void wsSayHello1() throws Exception
    WsControl ws1 = wsFac.create();
    WsControl ws2 = wsFac.create();
    ws1.sayHello(timeout);
    ws2.sayHello(timeout);
    I have tested this scenario also.
    the conv id looks like
    control instance1 (ws1)
    <conversationID>[1152668886228]wsFac:0:192.168.1.100-1be3a66.10c6056ed9d.-7f79</conversationID>
    control instance2 (ws2)
    <conversationID>[1152668886228]wsFac:1:192.168.1.100-1be3a66.10c6056ed9d.-7f77</conversationID>
    control instance1 retry
    <conversationID>[1152668886228]wsFac:2:192.168.1.100-1be3a66.10c6056ed9d.-7f6f</conversationID>
    control instance2 retry
    <conversationID>[1152668886228]wsFac:3:192.168.1.100-1be3a66.10c6056ed9d.-7f6d</conversationID>
    Please let me know if you have any questions or you see a different behavior.
    Thanks
    Vimala

  • Unique Area FC IDs for HBAs

    When HBA port and the storage port are connected to the same switch. Some HBA ports require a different area ID than storage ports when they are both connected to the same switch. For example, if the storage port FC ID is 0x6f7704, the area for this port is 77. In this case, the HBA port's area can be anything other than 77. The HBA port's FC ID must be manually configured to
    be different from the storage port's FC ID.
    Can someone elaborate on which specific/host storage vendors referred here. Any insight on this behavior would be helpful.
    Reference: MDS CLI Guide (Text Part Number: OL-16484-02) - Page 18-17

    As I recall, this is a Qlogic (and their re branded HBAs) issue. Emulex HBAs do not have this issue. I think it stemmed from the early days of FC, when the vendors used the port number on the switch as the area portion of the FCID. When you trace the connection, you see the HBA Flogi, then register with the name server, then query the name server for devices in the same zone. For some reason, it never sends Plogi to any devices with the same area. Cisco developed the unique OUI feature as a bypass to the issue. If the MDS detects a Qlogic OUI at Flogi, it will be given an FCID with a unique area. You also have the ability to add additional OUIs as needed if you happen to hit this issue and the OUI is not included in the MDS firmware already. If you want to see which OUIs the firmware has included for unique area assignment, issue this command from the CLI "show fcid-allocation area"
    Hope this helps,
    Mike

  • Get unique sort result ids

    ID SORT
    2000001 1
    2000054 1
    2000161 1
    2004102 1
    2000126 8
    2000161 8
    2004102 8
    2000001 51
    2000054 51
    2000161 51
    2004102 51
    2000126 58
    2000161 58
    2004102 58
    Output
    ID SORT
    2000001 1
    2000054 1
    2000161 1
    2004102 1
    2000126 8
    2000161 8
    2004102 8
    we want all unique ID values with minimum sort values

    Try the below:
    ;With cte
    as
    (Select *,Row_number() over(partition by id order by SORT asc) Rn From Table)
    Select * From cte
    Where Rn=1

  • Uniqueness of Row IDs across Objects

    Are the RowIDs unique across all objects of an instance, or just within the object? Or Stated another way, would a Lead Row ID ever be the same as an Opportunity Row ID in the same instance?

    The RowIDs are unique across all objects in a CRM On Demand instance.

  • RPC with IDS-Script/IDS-plugin

    Hi @all,
    I am devolping a webfrontend for the IDS based on Adobe Flex which communicates with IDS-Scripts via SOAP (simplified: by clicking a button, a SOAP-message is send and a script will be executed on AIS).
    But this way force me to save all infos I need in an XML-doc, which is used and imported into the script. My idea: send all infos I need directly to a script/plugin and process these in IDS without saving in XML.
    I know that there is a possibility to make remote procedure calls with Flex.
    Is there a chance to let the rpc communicate with scripts (javascript) or java-plugins of IDS?
    Thanks for your help!
    Chris

    chrismo,
    I am using the WebService class in Flex to send an arbitrary number of parameters to an ExtendScript script which runs on the server. WebService takes care of the parsing of the IDSP.wsdl file, and creates the XML SOAP packet that is then sent to IDS. I did have to use the Flex 3 beta in order to make this all happen, though, since Flex 2 seems to have trouble parsing IDSP.wsdl.
    Stephen

  • UID Uniqueness plug-in getting tripped

    I have the UID Uniqueness enabled in a multi-master environment. Yes I've read the plugin is not designed for multi-master replication environments and that if the UID is modified on more than one server at the same time the plug-in cannot detect it because it does not perform the uniqueness check when receiving replication updates, but only on the master in which the update is being made.
    That being said, the risk I run is that I unknowingly have duplicate UIDs in my system that were not detected. However, what I have recently been experiencing is the UID uniqueness plugin being tripped with false positives. Periodically, maybe once per week, or 0.5% of update transactions, an update to the directory will return err=19, tag=105 with the error log stating Attribute Uniqueness as the problem. In each case, simply re-running the LDAP modify yeilds success. Basically the UID uniqueness plugin is reporting a false positive.
    The UID is not the naming attribute in our system but is configured identically (applicable subtrees) on each of the servers.
    Is there a known scenerio where this can occur? Am I wasting my time having the plugin enabled on each master?
    DS 5.2_4 pkg install
    Solaris 9
    Thanks

    does your system reuse ids? could the system be seeing an entry marked for deletion, and still holds the unique uid value, only when the object is really finally deleted do you see it work, appearing like a false positive?
    I forget how to find a deleted entry, but it assigns it a new objectclass and does a modrdn to a guid value, then deletes the entry later. Just a thought.

  • Using attribute uniqueness with multi-master replication?

    Hi,
    I'm trying to use attribute uniqueness in a iDS 5.1 multi-master replication env. I have created a plug-in instance for the attribute (memberID) on each directory instance (same installation on NT) and tested (if I try to create a duplicate value under the same instance I get a constraint error as expected). However if I create a entry under one instance and then create a second entry (different DN) with the same attribute value on the second instance, the entry is written with no complaints? If I create the entries with an identical DN, then the directory automatically adds nsuniqueID to the RDN of the second entry to maintain DN uniqueness but it doesn't seem to mind about duplicate values within the entry despite the plug-in?
    BTW I've tested MMR and it is working and I'm using a subtree to enforce uniqueness.
    Regards
    Simon

    Attribute uniqueness plugin only ensure uniqueness on a single master before the entry is added. It doesn't check replicated operation since they have already been accepted and a positive result was returned to the client. So in a multiMastered environment, it is still possible to add 2 identical attributes, if like you're saying you're adding the entries at the same time on both master servers.
    We're working on a solution to have Attribute Uniqueness working in a multiMastered environment. But we're worried about its impact on performances we may get with it.
    Regards,
    Ludovic.

  • Fine Grained Access ERROR on INSERT when generating unique keys

    I'm using VPD/Fine Grained Access Control (FGAC) to implement security on my 9i backend. I created a security policy function that returns the predicate 'owner = USER'; - each of the tables has an additional column titled OWNER which contains the name of the logged-in user. Every time a user inserts a record, a BEFORE INSERT trigger fires (for every row) and inserts the USER name into the OWNER column. This is fairly straightforward and ensures that users can see only their rows. Using the DBMS_RLS.add_policy procedure, I attached the security policy to several tables and made it effective upon SELECT, UPDATE, INSERT, and DELETE statements.
    However, the frontend Java application (custom-made) generates unique IDs (sequences are not used) by selecting max(ID)+1 from the primary key columns of the tables. The problem is that the predicate is appended to the SELECT max(ID)+1 query to limit the max(ID) to only those rows where 'owner = USER'. Therefore, the max(ID) generated is not the largest ID for the entire table, but only the largest among the USER rows.
    So unless that USER happens to have the the largest ID in the whole table (and it has worked then), a primary-key violation error will be returned and the INSERT operation will be aborted.
    How can I allow every USER to select from AND get the absolute largest ID from the PK column without allowing that user to select records that don't belong to him? If I had developed the application, I would have made use of sequences on the back-end to generate unique primary key IDs. Unfortunately, I don't have this option and must work with the application as is.
    NOTE: the front-end Java application understands only the base table names, NOT Views created by me on the server. If the answer to this problem involves views, how can I make use of them on the backend when the front-end code does not recognize them?
    Any help is greatly appreciated!
    Michael

    first you could use default column values, not a trigger, which is more expensive.
    if your apps already assumes full access to table to get max id ( another RT ), this is bad. Current RLS can not really help if you can not change the apps because of this flaw logic ( you can store the maxid anywhere, why scanning the whole table to find it )

  • Replicate Plugins DS 5.2

    I'm a starter to LDAP and want to know how to create a new plugin from a existing one. I want to replicate uid uniqueness plugin to work as email uniqueness so that I can use two plugins uid and email uniqueness.
    I'm using DS 5.2
    Please help !

    Try this:
    http://docs.sun.com/source/817-7613/uiduniq.html

  • Messaging Server: mail and mailalternativeaddress attributes must be unique

    Email addresses for a given User Directory must have unique mail
    and mailalternativeaddress
    attributes.
    <P>
    Messaging Server uses the following two attributes to search for email
    addresses in the User Directory:<BR>
    <P>
    <OL>
    <LI>mail
    <LI>mailalternativeaddress
    </OL>
    <P>
    Each email address in the User Directory must have unique entries for these
    two attributes. If a given email address appears twice in the User Directory,
    the Messaging Server will display an error message and will not deliver the
    email to either address. In the case where a user wants email that is
    addressed to one email address to go to other email addresses as well (e.g., if
    a user has multiple accounts), you would need to create a group for that user
    and add the other email addresses to the group.
    <P>
    <B>Additional Notes:</B>
    <P>
    <UL>
    <LI>Administration Server 3.x and 4.x have various mechanisms for
    reducing the likelihood of user error when creating email accounts.
    <P>
    <LI>Administrators of Directory Server 4.x servers should also be aware that
    the mail and
    mailalternativeaddress
    attributes must be unique to prevent collisions between those two attributes.
    <P>
    The uid uniqueness plugin maintains uniqueness within attributes, but not across attributes.
    Using this feature for both attributes cannot fully prevent address collisions.
    <BR><P>
    For example, a user could theoretically enter duplicate values for the
    mail and
    mailalternativeaddress attributes:
    <BR>
    <P>
    mail: [email protected]
    <BR>
    <P>
    mailalternativeaddress: [email protected]
    <P>
    Although the server would initially accept this value for both attributes, it
    will post an error message later when it processes an email addressed to this
    address.
    </UL>

    What does “I overwrote the information in Accounts” mean? What exactly did you do? More info, please.
    Deleting a mail account (which i not the same as overwritting the account information) causes all your mail stored in that account’s mailboxes to be removed from the computer as well, and you you were warned that this would happen by an alert similar to this for Mail 2.x (I don’t know what the exact wording is in Mac OS X 10.3):
    Remove Account
    Are you sure you want to remove the <AccountType> account "<AccountName>"?
    This will permanently delete the account setup information, mailboxes, and messages from your computer. Messages stored on the mail server will not be affected.For IMAP-type accounts, this is not a problem because mail is stored on the server. If you deleted a POP account, however, your mail has certainly been wiped out from the computer, not just moved somewhere.
    To prevent that from happening, you should have moved your mail to custom “On My Mac” mailboxes instead of leaving it in the account’s mailboxes. Actually, using the account’s Inbox and Sent mailboxes for archiving purposes is a bad idea regardless — see Overstuffed mailbox is unexpectedly empty.
    If the POP account was configured to leave the messages on the server for some time, setting up the account again would cause any messages still on the server to be downloaded again, just like for IMAP accounts, but this would only work for received mail that has not yet been removed from the server.
    If the messages are not on the server and you don’t have a backup (which you should have made before doing something like that), you may try to salvage as many deleted mbox files as possible with a data recovery tool such as Data Rescue II or FileSalvage (the files to be recovered would be different in the case of Mail 2.x). Stop using your computer right now if you want to try that, as anything you do with the computer may cause the deleted files to be overwritten.

  • Help With Fail Over

    I have been playing around with Directory Server fail over with IMS 5.2 however its not working too well, so far I have:
    configured local.ugldaphost to ldap-a ldap-b
    No problem there, on ldap server a (Master) I have setup replication of the following:
    dc=domain,dc=blah,dc=blah
    o=internet
    Using this method I get "Can't connect to LDAP server" once I have logged in to IMS 5.2 web mail, trying to access my folders (which work) and personal address book (which doesnt), looking at the logs for HTTP it states:
    [04/Sep/2003:10:33:49 +0100] ice httpd[2724]: General Debug: ldappool::new_conn failed: Can't connect to the LDAP server Connection refused
    [04/Sep/2003:10:33:49 +0100] ice httpd[2724]: General Debug: ldappool::access_pool_get 0/0 valid connections
    [04/Sep/2003:10:33:49 +0100] ice httpd[2724]: General Debug: PAB_Search() error: Can't connect to the LDAP server
    [04/Sep/2003:10:33:49 +0100] ice httpd[2724]: General Error: Cannot search address book at ou=user, ou=people, o=internet,dc=domain,dc=BLAH,dc=BLAH,o=pab: Can't connect to the LDAP server
    Do I also need to replicate:
    o=NetscapeRoot
    o=pab
    I have tried replicating simply o=NetscapeRoot and I could no longer login as admin into the directory server console on the REPLICA (ldap-b).
    Can anybody help me out?

    Hi,
    To successfully have a 'low cost' failover iDS5/iMS5 scenerio, you need to do
    a number of things. Or if you have a wad of cash use Vertias cluster
    (HA iplanet agents), etc. Directory server proxies (iDAR) :(
    Currently I'm using a 'low cost' failover technique.
    None of what I'm about to describe is in the SunONE doco. for iMS.
    I have tested this in the Lab, all works, it's now in production.
    Before you do anything, test in the lab first, so you feel comfortable with
    the setups.
    OK my scenerio.
    Primary LDAP = ldap-a
    Secondary LDAP = ldap-b
    Mailserver = mta1
    iDS5 = iDS5.1p1
    iMS5 = iMS5.2p1
    1. Install iDS5 on ldap-a. Acts a User dir. and Config dir. server.
    2. Prep. ldap-a for iMS5 install (run ims_dssetup.pl).
         - YES to schema files/indices
    3. Install iMS5 on mta1, using ldap-a as User and Config dir. server.
         - I have iMS5 configured in Direct LDAP mode.
    4. Install iDS5 on ldap-b, use ldap-b as User and ldap-a as Config dir. server.
         - No need populate the User tree on ldap-b (ie. example users from install)
         - MUST USE ldap-a as config server, as you will be replicating this tree.
    if not you will not be able to access the admin server, as you stated.
    5. Also run ims_dssetup.pl on ldap-b.
         - YES to schema files/indices
    6. Setup multi-master replication between ldap-a and ldap-b.
         - See Admin Guide, have a good read, needs correct setup !
         - This allows read/write, thus seamless to email user for password
         changing, PAB writes...if LDAP has failed over.
         - Replicate all suffices
              o=isp           (User dir.)
              o=internet      (DC tree)
              o=pab          (PAB tree)
              o=NetscapeRoot     (Config. dir)
         - Init consumer(ldap-b) from ldap-a for all suffices.
    Note: Only problem with multi-master is uniqueness plugins, (if using)
    it's no problem aslong as you use ldap-a as master. See iDS Admin guide.
    7. Now ldap-b requires a change to allow iMS5 to allow writes to o=NetscapeRoot
    in the event of failover. Otherwise the error message "ldap server unavailable,
    no configuration server, using locally cached values...whatever blah blah !
    Managing Console Fail Over
    If you have a multi-master installation with o=NetscapeRoot replicated
    between your two masters, ldap-a and ldap-b, you can modify the console
    on the second server (ldap-b) so that it uses ldap-b's instance instead
    of ldap-a's. (By default, writes with ldap-b's console would be made to
    ldap-a then replicated over.)
    To accomplish this, you must:
    Shut down the Administration Server and Directory Server.
    Change these files to reflect ldap-b's values:
    'serverRoot'/userdb/dbswitch.conf:
    directory default ldap://ldap-b:389/o%3DNetscapeRoot
    'serverRoot'/admin-serv/config/adm.conf:
    ldapHost: ldap-b
    ldapPort: 389
    'serverRoot'/shared/config/dbswitch.conf:
    directory default ldap://ldap-b:389/o%3DNetscapeRoot
    'serverRoot'/slapd-serverID/config/dse.ldif:
    nsslapd-pluginarg0: ldap://ldap-b:389/o%3DnetscapeRoot
    Note: assuming your LDAP TCP port is 389
    Turn off the pass through authentication (PTA) plug-in on ldap-b by editing
    its dse.ldif file.
    In a text editor, open the 'serverRoot'/slapd-serverID/config/dse.ldif file.
    Locate the entry for the the PTA plug-in:
    dn: cn=Pass Through Authentication,cn=plugins,cn=config
    Change nsslapd-pluginEnabled: on to nsslapd-pluginEnabled: off.
    Restart the Directory Server and Administration Server.
    8. Now on mta1, using configutil, set options to these values
    **a. local.ldaphost = "ldap-a ldap-b"
              - Required to use both servers as Config dir. servers,
    in the event of failover, config. is taken from ldap-b.
         b. local.ugldaphost = "ldap-a ldap-b"
              - Required to use both servers for User dir. lookups in event of
    failover.
    c. local.service.pab = "ldap-a ldap-b"
    - Required to use both servers for PAB lookup/additions in the event
    of failover.
         ** To make config dir. failover, shutdown Admin server. and change,
    'serverroot'/shared/config/dbswith.conf:
    directory default ldap://ldap-a ldap-b:389/o%3DNetscapeRoot
         Restart Admin server.     
    OK that's all there is too it.
    Now test everything, failover LDAP, test logins for email POP/Webmail, IMAP if used.
    Test email connections (ie. inbound/outbound email conns)
    Note:
    Whatever LDAP server fails, iMS5 will continue to use other LDAP server, even when
    failed LDAP server comes online. Either stop/start iDS5 on current LDAP server or
    stop/start iMS5.
    .....Well it worked for me !
    Good luck ;)

  • Messaging Server 5.2

    Hi again,
    Is there a way to do failover for messaging server 5.2 to another ldap?
    mail1 --> ldap1 (default)
    when ldap1 down
    mail1 --> ldap2
    Both ldap1 and ldap2 are on different servers. And running MMR for o=Internet, o=pab, o=user suffixes.
    Any help would greatly be appreciated. Thanks.

    I posted this a while ago, but can't locate it anymore since Sun have 'tweaked' these forums, maybe it's archived !
    It discusses how I set up failover for both user and config. trees in ldap. I used mult-master replic. The config. tree failover I found from reading about Netscape Directory Server V6.0 (now owned by Redhat) - See http://www.redhat.com/docs/manuals/dir-server/install/upgrade.htm#17635
    There is also mentions to this PTA plugin in relevant directory docs on http://docs.sun.com. So you can have a good read.
    Also point 7. in info below describes this.
    Hi,
    To successfully have a 'low cost' failover iDS5/iMS5 scenerio, you need to do a number of things. Or if you have a wad of cash use Vertias cluster (HA iplanet agents), etc. Directory server proxies (iDAR) :(
    Currently I'm using a 'low cost' failover technique.
    None of what I'm about to describe is in the SunONE doco. for iMS.
    I have tested this in the Lab, all works, it's now in production. Before you do anything, test in the lab first, so you feel comfortable with the setups.
    OK my scenerio.
    Primary LDAP = ldap-a
    Secondary LDAP = ldap-b
    Mailserver = mta1
    iDS5 = iDS5.1p1
    iMS5 = iMS5.2p1
    1. Install iDS5 on ldap-a. Acts a User dir. and Config dir. server.
    2. Prep. ldap-a for iMS5 install (run ims_dssetup.pl).
         - YES to schema files/indices
    3. Install iMS5 on mta1, using ldap-a as User and Config dir. server.
         - I have iMS5 configured in Direct LDAP mode.
    4. Install iDS5 on ldap-b, use ldap-b as User and ldap-a as Config dir. server.
         - No need populate the User tree on ldap-b (ie. example users from install)
         - MUST USE ldap-a as config server, as you will be replicating this tree.
    if not you will not be able to access the admin server, as you stated.
    5. Also run ims_dssetup.pl on ldap-b.
         - YES to schema files/indices
    6. Setup multi-master replication between ldap-a and ldap-b.
         - See Admin Guide, have a good read, needs correct setup !
         - This allows read/write, thus seamless to email user for password
         changing, PAB writes...if LDAP has failed over.
         - Replicate all suffices
              o=isp           (User dir.)
              o=internet (DC tree)
              o=pab     (PAB tree)
              o=NetscapeRoot     (Config. dir)
         - Init consumer(ldap-b) from ldap-a for all suffices.
    Note: Only problem with multi-master is uniqueness plugins, (if using) it's no problem aslong as you use ldap-a as master. See iDS Admin guide.
    7. Now ldap-b requires a change to allow iMS5 to allow writes to o=NetscapeRoot in the event of failover. Otherwise the error message "ldap server unavailable, no configuration server, using locally cached values...whatever blah blah !
    Managing Console Fail Over
    If you have a multi-master installation with o=NetscapeRoot replicated between your two masters, ldap-a and ldap-b, you can modify the console on the second server (ldap-b) so that it uses ldap-b's instance instead of ldap-a's. (By default, writes with ldap-b's console would be made to ldap-a then replicated over.)
    To accomplish this, you must:
    Shut down the Administration Server and Directory Server.
    Change these files to reflect ldap-b's values:
    'serverRoot'/userdb/dbswitch.conf:
    directory default ldap://ldap-b:389/o%3DNetscapeRoot
    'serverRoot'/admin-serv/config/adm.conf:
    ldapHost: ldap-b
    ldapPort: 389
    'serverRoot'/shared/config/dbswitch.conf:
    directory default ldap://ldap-b:389/o%3DNetscapeRoot
    'serverRoot'/slapd-serverID/config/dse.ldif:
    nsslapd-pluginarg0: ldap://ldap-b:389/o%3DnetscapeRoot
    Note: assuming your LDAP TCP port is 389
    Turn off the pass through authentication (PTA) plug-in on ldap-b by editing its dse.ldif file.
    In a text editor, open the 'serverRoot'/slapd-serverID/config/dse.ldif file.
    Locate the entry for the the PTA plug-in: dn: cn=Pass Through Authentication,cn=plugins,cn=config
    Change nsslapd-pluginEnabled: on to nsslapd-pluginEnabled: off.
    Restart the Directory Server and Administration Server.
    8. Now on mta1, using configutil, set options to these values
    **a. local.ldaphost = "ldap-a ldap-b"
              - Required to use both servers as Config dir. servers,
    in the event of failover, config. is taken from ldap-b.
         b. local.ugldaphost = "ldap-a ldap-b"
              - Required to use both servers for User dir. lookups in event of failover.
    c. local.service.pab = "ldap-a ldap-b"
    - Required to use both servers for PAB lookup/additions in the event of failover.
         ** To make config dir. failover, shutdown Admin server. and change,
    'serverroot'/shared/config/dbswith.conf:
    directory default ldap://ldap-a ldap-b:389/o%3DNetscapeRoot
         Restart Admin server.     
    OK that's all there is too it.
    Now test everything, failover LDAP, test logins for email POP/Webmail, IMAP if used.
    Test email connections (ie. inbound/outbound email conns)
    Note:
    Whatever LDAP server fails, iMS5 will continue to use other LDAP server, even when failed LDAP server comes online.
    Either stop/start iDS5 on current LDAP server or stop/start iMS5, but not really necessary, depending on your environment, your call !
    .....Well it worked for me !
    Good luck ;)

  • Can't login to kde after upgrade

    Hi guys, today I upgrade my arch, after reboot , login into kde by slim
    after the kde login process, the screen became black
    I press Ctrl+Alt+F1 ,it's still a black screen, but I still login as root and type 'reboot' command
    it can succeed reboot the system.
    there is not any message,but black screen.
    after reboot,I can login my musca destop by slim, then I googled some info about this problem
    I don't use slim to login , I login in kde by 'startx' cmd with .xinitrc:
    exec ck-launch-session dbus-launch startkde
    It can succeed login into the desktop ???
    I use slim to login again, it is failed, still black screen without any message
    I find some message in /var/log/slim.log
    slim: waiting for X server to begin accepting connections
    X.Org X Server 1.12.0
    Release Date: 2012-03-04
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.2.9-1-ARCH x86_64
    Current Operating System: Linux king 3.2.13-1-ARCH #1 SMP PREEMPT Sat Mar 24 09:10:39 CET 2012 x86_64
    Kernel command line: root=/dev/sda3 ro
    Build Date: 05 March 2012 05:59:48AM
    Current version of pixman: 0.24.4
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Sun Apr 1 11:31:18 2012
    (==) Using config directory: "/etc/X11/xorg.conf.d"
    /usr/bin/xauth: file /home/ink/.Xauthority does not exist
    fcitx: no process found
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-xim.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-table.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-punc.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-x11.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-remote-module.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-fullwidth-char.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-qw.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-classic-ui.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-pinyin.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-chttrans.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-vk.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-kimpanel-ui.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-ipc.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-autoeng.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-quickphrase.conf
    [INFO] /build/src/fcitx-4.2.1/src/lib/fcitx/addon.c:99-Load Addon Config File:fcitx-dbus.conf
    [INFO] /build/src/fcitx-4.2.1/src/im/table/table.c:152-Load Table Config File:wanfeng.conf
    [INFO] /build/src/fcitx-4.2.1/src/im/table/table.c:152-Load Table Config File:wbx.conf
    [INFO] /build/src/fcitx-4.2.1/src/im/table/table.c:152-Load Table Config File:wbpy.conf
    [INFO] /build/src/fcitx-4.2.1/src/im/table/table.c:152-Load Table Config File:erbi.conf
    [INFO] /build/src/fcitx-4.2.1/src/im/table/table.c:152-Load Table Config File:db.conf
    [INFO] /build/src/fcitx-4.2.1/src/im/table/table.c:152-Load Table Config File:qxm.conf
    [INFO] /build/src/fcitx-4.2.1/src/im/table/table.c:152-Load Table Config File:cangjie.conf
    [INFO] /build/src/fcitx-4.2.1/src/im/table/table.c:152-Load Table Config File:zrm.conf
    startkde: Starting up...
    Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    kbuildsycoca4 running...
    kbuildsycoca4(705) KBuildSycoca::checkTimestamps: checking file timestamps
    kbuildsycoca4(705) KBuildSycoca::checkTimestamps: timestamps check ok
    kbuildsycoca4(705) kdemain: Emitting notifyDatabaseChanged ()
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    kded(704)/kdecore (KConfigSkeleton) KCoreConfigSkeleton::writeConfig:
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    Object::connect: No such signal QDBusAbstractInterface::Changed()
    OpenGL vendor string: Tungsten Graphics, Inc
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    OpenGL renderer string: Mesa DRI Mobile Intel® GM45 Express Chipset
    OpenGL version string: 2.1 Mesa 8.0.2
    OpenGL shading language version string: 1.20
    Driver: Intel
    GPU class: i965
    OpenGL version: 2.1
    GLSL version: 1.20
    Mesa version: 8.0.2
    X server version: 1.12
    Linux kernel version: 3.2.13
    Direct rendering: yes
    Requires strict binding: yes
    GLSL shaders: yes
    Texture NPOT support: yes
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    kactivitymanagerd(763)/nepomuk (library) Nepomuk::ResourceData::store: "The name org.kde.nepomuk.DataManagement was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    kactivitymanagerd(763)/nepomuk (library) Nepomuk::ResourceData::store: "The name org.kde.nepomuk.DataManagement was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    kactivitymanagerd(763)/nepomuk (library) Nepomuk::ResourceData::store: "The name org.kde.nepomuk.DataManagement was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    kactivitymanagerd(763)/nepomuk (library) Nepomuk::ResourceData::store: "The name org.kde.nepomuk.DataManagement was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    kactivitymanagerd(763)/nepomuk (library) Nepomuk::ResourceData::store: "The name org.kde.nepomuk.DataManagement was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    kactivitymanagerd(763)/nepomuk (library) Nepomuk::ResourceData::store: "The name org.kde.nepomuk.DataManagement was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QDBusConnection: name 'org.kde.kglobalaccel' had owner '' but we thought it was ':1.5'
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusObjectPath: invalid path ""
    plasma-desktop(790)/libplasma Plasma::isPluginVersionCompatible: unversioned plugin detected, may result in instability
    Could not resolve property : linearGradient5334
    Could not resolve property : linearGradient5332
    Could not resolve property : linearGradient5326
    Could not resolve property : linearGradient5328
    Could not resolve property : linearGradient5334
    Could not resolve property : linearGradient5332
    Could not resolve property : linearGradient5326
    Could not resolve property : linearGradient5328
    Could not resolve property : linearGradient5334
    Could not resolve property : linearGradient5332
    Could not resolve property : linearGradient5326
    Could not resolve property : linearGradient5328
    plasma-desktop(790)/libplasma Plasma::isPluginVersionCompatible: unversioned plugin detected, may result in instability
    plasma-desktop(790)/libplasma Plasma::isPluginVersionCompatible: unversioned plugin detected, may result in instability
    Object::connect: No such signal QDBusAbstractInterface::Changed()
    plasma-desktop(790)/kdecore (KConfigSkeleton) KCoreConfigSkeleton::writeConfig:
    link XMLID_34_ hasn't been detected!
    link XMLID_34_ hasn't been detected!
    link XMLID_36_ hasn't been detected!
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    file:///usr/share/apps/plasma/plasmoids/notifier/contents/ui/devicenotifier.qml:166:5: QML QDeclarativeListView_QML_20: Possible anchor loop detected on vertical anchor.
    QGraphicsScene::addItem: item has already been added to this scene
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    link XMLID_34_ hasn't been detected!
    link XMLID_34_ hasn't been detected!
    link XMLID_36_ hasn't been detected!
    plasma-desktop(790)/libakonadi Akonadi::AgentManagerPrivate::createDBusInterface: AgentManager failed to get a valid AgentManager DBus interface. Error is: 1 "org.freedesktop.DBus.Error.NameHasNoOwner" "Could not get owner of name 'org.freedesktop.Akonadi.Control': no such name"
    plasma-desktop(790)/libakonadi Akonadi::SessionPrivate::socketError: Socket error occurred: "QLocalSocket::connectToServer: Invalid name"
    plasma-desktop(790)/libakonadi Akonadi::SessionPrivate::socketError: Socket error occurred: "QLocalSocket::connectToServer: Invalid name"
    Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
    search paths: ("/usr/local/bin", "/usr/bin", "/bin", "/usr/local/sbin", "/usr/sbin", "/sbin", "/usr/bin/core_perl", "/usr/sbin", "/usr/local/sbin", "/usr/local/libexec", "/usr/libexec", "/opt/mysql/libexec", "/opt/local/lib/mysql5/bin", "/opt/mysql/sbin")
    Found mysql_install_db: "/usr/bin/mysql_install_db"
    Found mysqlcheck: "/usr/bin/mysqlcheck"
    QGridLayoutEngine::addItem: Cell (0, 1) already taken
    plasma-desktop(790)/kdecore (KConfigSkeleton) KCoreConfigSkeleton::writeConfig:
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    plasma-desktop(790)/kdecore (KConfigSkeleton) KCoreConfigSkeleton::writeConfig:
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    tp-qt4 0.8.0 DEBUG: Client registered - busName: "org.freedesktop.Telepathy.Client.KDE.Approver" objectPath: "/org/freedesktop/Telepathy/Client/KDE/Approver" interfaces: ("org.freedesktop.Telepathy.Client.Approver")
    tp-qt4 0.8.0 DEBUG: Calling Properties::GetAll(AccountManager)
    New PolkitAgentListener 0x75a300
    Adding new listener PolkitQt1::Agent::Listener(0x8be720) for 0x75a300
    tp-qt4 0.8.0 DEBUG: Got reply to Properties.GetAll(AccountManager)
    tp-qt4 0.8.0 DEBUG: Creating new DBusProxy
    tp-qt4 0.8.0 DEBUG: ReadinessHelper: new supportedStatuses = QSet(0)
    tp-qt4 0.8.0 DEBUG: ReadinessHelper: new supportedFeatures = QSet(QPair("Tp::Account",0) , QPair("Tp::Account",1) , QPair("Tp::Account",2) , QPair("Tp::Account",3) )
    tp-qt4 0.8.0 DEBUG: Inserting to factory cache proxy for QPair("org.freedesktop.Telepathy.AccountManager","/org/freedesktop/Telepathy/Account/gabble/jabber/volcanowill_40gmail_2ecom0")
    tp-qt4 0.8.0 DEBUG: Discovering if the Channel Dispatcher supports request hints
    tp-qt4 0.8.0 DEBUG: Got reply to PendingVariant call
    tp-qt4 0.8.0 DEBUG: Discovered channel dispatcher support for request hints: true
    tp-qt4 0.8.0 DEBUG: Calling Properties::GetAll(Account) on "/org/freedesktop/Telepathy/Account/gabble/jabber/volcanowill_40gmail_2ecom0"
    tp-qt4 0.8.0 DEBUG: Got reply to Properties.GetAll(Account) for "/org/freedesktop/Telepathy/Account/gabble/jabber/volcanowill_40gmail_2ecom0"
    tp-qt4 0.8.0 DEBUG: Account::updateProperties: changed:
    tp-qt4 0.8.0 DEBUG: Interfaces: ("org.freedesktop.Telepathy.Account", "org.freedesktop.Telepathy.Account.Interface.Avatar", "com.nokia.Account.Interface.Compat", "com.nokia.Account.Interface.Conditions", "org.freedesktop.Telepathy.Account.Interface.Storage", "org.freedesktop.Telepathy.Account.Interface.Addressing", "org.freedesktop.Telepathy.Account.Interface.Hidden.DRAFT1")
    tp-qt4 0.8.0 DEBUG: Service Name: "google-talk"
    tp-qt4 0.8.0 DEBUG: Display Name: "[email protected]"
    tp-qt4 0.8.0 DEBUG: Nickname: "if_else"
    tp-qt4 0.8.0 DEBUG: Normalized Name: "[email protected]"
    tp-qt4 0.8.0 DEBUG: Valid: true
    tp-qt4 0.8.0 DEBUG: Enabled: true
    tp-qt4 0.8.0 DEBUG: HasBeenOnline changed to true
    tp-qt4 0.8.0 DEBUG: Automatic Presence: 2 - "available"
    tp-qt4 0.8.0 DEBUG: Current Presence: 1 - "offline"
    tp-qt4 0.8.0 DEBUG: Requested Presence: 1 - "offline"
    tp-qt4 0.8.0 DEBUG: Connection Object Path: "/"
    tp-qt4 0.8.0 DEBUG: Connection StatusReason: 1
    tp-qt4 0.8.0 DEBUG: Account basic functionality is ready
    tp-qt4 0.8.0 DEBUG: ReadinessHelper::setIntrospectCompleted: feature: QPair("Tp::Account",0) - success: true
    tp-qt4 0.8.0 DEBUG: ReadinessHelper::setIntrospectCompleted: feature: QPair("Tp::AccountManager",0) - success: true
    Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
    akonadi.collectionattributetable OK
    akonadi.collectionmimetyperelation OK
    akonadi.collectionpimitemrelation OK
    akonadi.collectiontable OK
    akonadi.flagtable OK
    akonadi.mimetypetable OK
    akonadi.parttable OK
    akonadi.pimitemflagrelation OK
    akonadi.pimitemtable OK
    akonadi.resourcetable OK
    akonadi.schemaversiontable OK
    Database "akonadi" opened using driver "QMYSQL"
    DbInitializer::run()
    checking table "SchemaVersionTable"
    checking table "ResourceTable"
    checking table "CollectionTable"
    checking table "MimeTypeTable"
    checking table "PimItemTable"
    checking table "FlagTable"
    checking table "PartTable"
    checking table "CollectionAttributeTable"
    checking relation "PimItemFlagRelation"
    checking relation "CollectionMimeTypeRelation"
    checking relation "CollectionPimItemRelation"
    DbInitializer::run() done
    skipping update 2
    skipping update 3
    skipping update 4
    skipping update 8
    skipping update 10
    skipping update 12
    skipping update 13
    skipping update 14
    skipping update 15
    skipping update 16
    skipping update 17
    skipping update 18
    skipping update 19
    skipping update 20
    Nepomuk Query Server not available
    DataStore::unhideAllPimItems()
    Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
    Database "akonadi" opened using driver "QMYSQL"
    Database "akonadi" opened using driver "QMYSQL"
    Database "akonadi" opened using driver "QMYSQL"
    PLUGINS: "/usr/share/akonadi/agents"
    PLUGINS: ("akonadinepomukfeederagent.desktop", "akonotesresource.desktop", "birthdaysresource.desktop", "calendarsearchagent.desktop", "contactsresource.desktop", "davgroupwareresource.desktop", "icalresource.desktop", "imapresource.desktop", "invitationsagent.desktop", "kabcresource.desktop", "kalarmdirresource.desktop", "kalarmresource.desktop", "kcalresource.desktop", "kdeaccountsresource.desktop", "knutresource.desktop", "kolabproxyresource.desktop", "localbookmarksresource.desktop", "maildirresource.desktop", "maildispatcheragent.desktop", "mboxresource.desktop", "microblog.desktop", "mixedmaildirresource.desktop", "mtdummyresource.desktop", "nepomuktagresource.desktop", "nntpresource.desktop", "notesresource.desktop", "openxchangeresource.desktop", "pop3resource.desktop", "vcarddirresource.desktop", "vcardresource.desktop")
    search paths: ("/usr/local/bin", "/usr/bin", "/bin", "/usr/local/sbin", "/usr/sbin", "/sbin", "/usr/bin/core_perl")
    PLUGINS inserting: "akonadi_nepomuk_feeder" 0 ("Unique", "Autostart", "NoConfig")
    PLUGINS inserting: "akonadi_akonotes_resource" 1 ("Resource", "Notes")
    PLUGINS inserting: "akonadi_birthdays_resource" 0 ("Resource", "Unique")
    PLUGINS inserting: "akonadi_calendarsearch_agent" 0 ("Unique", "NoConfig")
    PLUGINS inserting: "akonadi_contacts_resource" 5 ("Resource")
    PLUGINS inserting: "akonadi_davgroupware_resource" 0 ("Resource", "FreeBusyProvider")
    PLUGINS inserting: "akonadi_ical_resource" 1 ("Resource")
    PLUGINS inserting: "akonadi_imap_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_invitations_agent" 0 ("NoConfig")
    PLUGINS inserting: "akonadi_kabc_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_kalarm_dir_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_kalarm_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_kcal_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_kdeaccounts_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_knut_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_kolabproxy_resource" 0 ("Resource", "Unique")
    PLUGINS inserting: "akonadi_localbookmarks_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_maildir_resource" 1 ("Resource")
    PLUGINS inserting: "akonadi_maildispatcher_agent" 0 ("Unique", "Autostart")
    PLUGINS inserting: "akonadi_mbox_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_microblog_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_mixedmaildir_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_mailtransport_dummy_resource" 0 ("Resource", "MailTransport")
    PLUGINS inserting: "akonadi_nepomuktag_resource" 0 ("Resource", "Virtual", "Unique", "NoConfig")
    PLUGINS inserting: "akonadi_nntp_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_notes_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_openxchange_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_pop3_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_vcarddir_resource" 0 ("Resource")
    PLUGINS inserting: "akonadi_vcard_resource" 0 ("Resource")
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    Akonadi server is now operational.
    QLayout: Attempting to add QLayout "" to ViewSliders "", which already has a layout
    QObject::connect: Incompatible sender/receiver arguments
    KMenu::aboutToShow() --> KMixDockWidget::activateMenuOrWindow(bool,QPoint)
    search paths: ("/home/ink/.kde4/lib/kde4/plugins/", "/usr/lib/kde4/plugins/", "/usr/lib/qt/plugins", "/usr/bin", "/usr/lib/kde4/plugins", "/home/ink/.kde4/lib/kde4/", "/usr/lib/kde4/")
    search paths: ("/home/ink/.kde4/lib/kde4/plugins/", "/usr/lib/kde4/plugins/", "/usr/lib/qt/plugins", "/usr/bin", "/usr/lib/kde4/plugins", "/home/ink/.kde4/lib/kde4/", "/usr/lib/kde4/")
    search paths: ("/home/ink/.kde4/lib/kde4/plugins/", "/usr/lib/kde4/plugins/", "/usr/lib/qt/plugins", "/usr/bin", "/usr/lib/kde4/plugins", "/home/ink/.kde4/lib/kde4/", "/usr/lib/kde4/")
    search paths: ("/home/ink/.kde4/lib/kde4/plugins/", "/usr/lib/kde4/plugins/", "/usr/lib/qt/plugins", "/usr/bin", "/usr/lib/kde4/plugins", "/home/ink/.kde4/lib/kde4/", "/usr/lib/kde4/")
    search paths: ("/home/ink/.kde4/lib/kde4/plugins/", "/usr/lib/kde4/plugins/", "/usr/lib/qt/plugins", "/usr/bin", "/usr/lib/kde4/plugins", "/home/ink/.kde4/lib/kde4/", "/usr/lib/kde4/")
    search paths: ("/home/ink/.kde4/lib/kde4/plugins/", "/usr/lib/kde4/plugins/", "/usr/lib/qt/plugins", "/usr/bin", "/usr/lib/kde4/plugins", "/home/ink/.kde4/lib/kde4/", "/usr/lib/kde4/")
    search paths: ("/home/ink/.kde4/lib/kde4/plugins/", "/usr/lib/kde4/plugins/", "/usr/lib/qt/plugins", "/usr/bin", "/usr/lib/kde4/plugins", "/home/ink/.kde4/lib/kde4/", "/usr/lib/kde4/")
    search paths: ("/home/ink/.kde4/lib/kde4/plugins/", "/usr/lib/kde4/plugins/", "/usr/lib/qt/plugins", "/usr/bin", "/usr/lib/kde4/plugins", "/home/ink/.kde4/lib/kde4/", "/usr/lib/kde4/")
    Database "akonadi" opened using driver "QMYSQL"
    Database "akonadi" opened using driver "QMYSQL"
    Known subscriber "AkonadiAgentServer" subscribes again
    void Akonadi::NotificationSource::addClientServiceName(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.41")
    Known subscriber "AkonadiAgentServer" subscribes again
    void Akonadi::NotificationSource::addClientServiceName(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.41", ":1.37")
    Known subscriber "AkonadiAgentServer" subscribes again
    void Akonadi::NotificationSource::addClientServiceName(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.41", ":1.37", ":1.35")
    Known subscriber "AkonadiAgentServer" subscribes again
    void Akonadi::NotificationSource::addClientServiceName(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.41", ":1.37", ":1.35", ":1.40")
    Known subscriber "AkonadiAgentServer" subscribes again
    void Akonadi::NotificationSource::addClientServiceName(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.41", ":1.37", ":1.35", ":1.40", ":1.36")
    Known subscriber "AkonadiAgentServer" subscribes again
    void Akonadi::NotificationSource::addClientServiceName(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.41", ":1.37", ":1.35", ":1.40", ":1.36", ":1.34")
    Known subscriber "AkonadiAgentServer" subscribes again
    void Akonadi::NotificationSource::addClientServiceName(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.41", ":1.37", ":1.35", ":1.40", ":1.36", ":1.34", ":1.38")
    Agent instance created in separate process.
    Known subscriber "AkonadiAgentServer" subscribes again
    Database "akonadi" opened using driver "QMYSQL"
    Known subscriber "akonadi_maildispatcher_agent" subscribes again
    Known subscriber "akonadi_maildispatcher_agent" subscribes again
    Agent instance created in separate process.
    Known subscriber "AkonadiAgentServer" subscribes again
    Known subscriber "akonadi_maildispatcher_agent" subscribes again
    Database "akonadi" opened using driver "QMYSQL"
    "/usr/bin/akonadi_nepomuk_feeder(868)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/akonadi_nepomuk_feeder(868)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/akonadi_nepomuk_feeder(868)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/akonadi_nepomuk_feeder(868)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/akonadi_nepomuk_feeder(868)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/akonadi_nepomuk_feeder(868)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    Known subscriber "akonadi_nepomuk_feeder" subscribes again
    Database "akonadi" opened using driver "QMYSQL"
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    Agent instance created in separate process.
    Known subscriber "AkonadiAgentServer" subscribes again
    Database "akonadi" opened using driver "QMYSQL"
    Database "akonadi" opened using driver "QMYSQL"
    Agent instance created in separate process.
    Known subscriber "AkonadiAgentServer" subscribes again
    Agent instance created in separate process.
    Known subscriber "AkonadiAgentServer" subscribes again
    Agent instance created in separate process.
    Known subscriber "AkonadiAgentServer" subscribes again
    Agent instance created in separate process.
    Known subscriber "AkonadiAgentServer" subscribes again
    Agent instance created in separate process.
    Known subscriber "AkonadiAgentServer" subscribes again
    Database "akonadi" opened using driver "QMYSQL"
    Database "akonadi" opened using driver "QMYSQL"
    Database "akonadi" opened using driver "QMYSQL"
    Database "akonadi" opened using driver "QMYSQL"
    Database "akonadi" opened using driver "QMYSQL"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is Soprano::Client::LocalSocketClient(0x111d898), parent's thread is QThread(0xf70330), current thread is RankingsUpdateThread(0x1162660)
    "/usr/bin/kactivitymanagerd(763)" Soprano: "QLocalSocket::connectToServer: Invalid name"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "org.freedesktop.DBus.Error.ServiceUnknown - The name org.kde.nepomuk.services.nepomukstorage was not provided by any .service files"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Unsupported operation (2)": "Invalid model"
    "/usr/bin/kactivitymanagerd(763)" Soprano: "Invalid iterator."
    QPixmap: Cannot create a QPixmap when no GUI is being used
    QGraphicsLinearLayout::removeAt: invalid index 1
    akonadi_agent_launcher: Fatal IO error: client killed
    akonadi_agent_launcher: Fatal IO error: client killed
    void Akonadi::NotificationSource::serviceUnregistered(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.41", ":1.37", ":1.35", ":1.40", ":1.36", ":1.38")
    Lost connection to resource "org.freedesktop.Akonadi.Resource.akonadi_contacts_resource_4" , discarding cached interface
    akonadi_agent_launcher: Fatal IO error: client killed
    akonadi_agent_launcher: Fatal IO error: client killed
    QProcess: Destroyed while process is still running.
    krunner: Fatal IO error: client killed
    void Akonadi::NotificationSource::serviceUnregistered(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.41", ":1.37", ":1.40", ":1.36", ":1.38")
    void Akonadi::NotificationSource::serviceUnregistered(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.41", ":1.37", ":1.36", ":1.38")
    kmix: Fatal IO error: client killed
    Lost connection to resource "org.freedesktop.Akonadi.Resource.akonadi_contacts_resource_0" , discarding cached interface
    Lost connection to resource "org.freedesktop.Akonadi.Resource.akonadi_contacts_resource_3" , discarding cached interface
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    kdeinit4: Fatal IO error: client killed
    kdeinit4: sending SIGHUP to children.
    kded4: Fatal IO error: client killed
    akonadi_agent_launcher: Fatal IO error: client killed
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_maildispatcher_agent: Fatal IO error: client killed
    Server terminated successfully (0). Closing log file.
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    void Akonadi::NotificationSource::serviceUnregistered(const QString&) Notification source "akonadi_maildispatcher_agent" now serving: ()
    void Akonadi::NotificationSource::unsubscribe() "akonadi_maildispatcher_agent"
    akonadi_nepomuk_feeder: Fatal IO error: client killed
    akonadi_agent_launcher: Fatal IO error: client killed
    kglobalaccel: Fatal IO error: client killed
    klauncher: Exiting on signal 1
    kdeinit4: Fatal IO error: client killed
    kdeinit4: sending SIGHUP to children.
    Lost connection to resource "org.freedesktop.Akonadi.Resource.akonadi_maildir_resource_0" , discarding cached interface
    void Akonadi::NotificationSource::serviceUnregistered(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.37", ":1.36", ":1.38")
    akonadi_agent_launcher: Fatal IO error: client killed
    kdeinit4: sending SIGTERM to children.
    kdeinit4: Exit.
    Lost connection to resource "org.freedesktop.Akonadi.Resource.akonadi_contacts_resource_1" , discarding cached interface
    void Akonadi::NotificationSource::serviceUnregistered(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.37", ":1.36")
    Lost connection to resource "org.freedesktop.Akonadi.Resource.akonadi_akonotes_resource_0" , discarding cached interface
    void Akonadi::NotificationSource::serviceUnregistered(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39", ":1.36")
    void Akonadi::NotificationSource::serviceUnregistered(const QString&) Notification source "akonadi_nepomuk_feeder" now serving: ()
    void Akonadi::NotificationSource::unsubscribe() "akonadi_nepomuk_feeder"
    akonadi_agent_launcher: Fatal IO error: client killed
    Lost connection to resource "org.freedesktop.Akonadi.Resource.akonadi_contacts_resource_2" , discarding cached interface
    void Akonadi::NotificationSource::serviceUnregistered(const QString&) Notification source "AkonadiAgentServer" now serving: (":1.39")
    ProcessControl: Application '/usr/bin/akonadi_maildispatcher_agent' returned with exit code 1 (Unknown error)
    void Akonadi::NotificationSource::serviceUnregistered(const QString&) Notification source "plasma-desktop" now serving: ()
    void Akonadi::NotificationSource::unsubscribe() "plasma-desktop"
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    ProcessControl: Application '/usr/bin/akonadi_nepomuk_feeder' returned with exit code 1 (Unknown error)
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    akonadi_maildispatcher_agent: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_nepomuk_feeder: cannot connect to X server :0.0
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_maildispatcher_agent' returned with exit code 1 (Unknown error)
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    Lost connection to resource "org.freedesktop.Akonadi.Resource.akonadi_ical_resource_0" , discarding cached interface
    void Akonadi::NotificationSource::serviceUnregistered(const QString&) Notification source "AkonadiAgentServer" now serving: ()
    void Akonadi::NotificationSource::unsubscribe() "AkonadiAgentServer"
    akonadi_agent_launcher: cannot connect to X server :0.0
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    "/usr/bin/akonadi_agent_launcher" crashed too often and will not be restarted!
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_maildispatcher_agent: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    "/usr/bin/akonadi_agent_launcher" crashed too often and will not be restarted!
    ProcessControl: Application '/usr/bin/akonadi_maildispatcher_agent' returned with exit code 1 (Unknown error)
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    "/usr/bin/akonadi_agent_launcher" crashed too often and will not be restarted!
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    "/usr/bin/akonadi_agent_launcher" crashed too often and will not be restarted!
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_nepomuk_feeder' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    "/usr/bin/akonadi_agent_launcher" crashed too often and will not be restarted!
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_maildispatcher_agent: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_maildispatcher_agent' returned with exit code 1 (Unknown error)
    "/usr/bin/akonadi_maildispatcher_agent" crashed too often and will not be restarted!
    akonadi_agent_launcher: cannot connect to X server :0.0
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    akonadi_nepomuk_feeder: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    "/usr/bin/akonadi_agent_launcher" crashed too often and will not be restarted!
    ProcessControl: Application '/usr/bin/akonadi_nepomuk_feeder' returned with exit code 1 (Unknown error)
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    "/usr/bin/akonadi_agent_launcher" crashed too often and will not be restarted!
    akonadi_agent_launcher: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_agent_launcher' returned with exit code 1 (Unknown error)
    "/usr/bin/akonadi_agent_launcher" crashed too often and will not be restarted!
    akonadi_nepomuk_feeder: cannot connect to X server :0.0
    ProcessControl: Application '/usr/bin/akonadi_nepomuk_feeder' returned with exit code 1 (Unknown error)
    "/usr/bin/akonadi_nepomuk_feeder" crashed too often and will not be restarted!
    kdeinit4: sending SIGTERM to children.
    kdeinit4: Exit.
    Shutting down AkonadiServer...
    terminating service threads
    NepomukServer(905)/kdecore (KConfigSkeleton) KCoreConfigSkeleton::writeConfig:
    Control process died, committing suicide!
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    Database error: Cannot open database.
    Last driver error: "QMYSQL: Unable to connect"
    Last database error: "Can't connect to local MySQL server through socket '/home/ink/.local/share/akonadi/socket-king/mysql.socket' (2)"
    QSqlQuery::exec: database not open
    QSqlQuery::prepare: database not open
    Error during executing query "SELECT CollectionTable.id, CollectionTable.remoteId, CollectionTable.remoteRevision, CollectionTable.name, CollectionTable.parentId, CollectionTable.resourceId, CollectionTable.subscribed, CollectionTable.cachePolicyInherit, CollectionTable.cachePolicyCheckInterval, CollectionTable.cachePolicyCacheTimeout, CollectionTable.cachePolicySyncOnDemand, CollectionTable.cachePolicyLocalParts, CollectionTable.queryString, CollectionTable.queryLanguage FROM CollectionTable WHERE ( CollectionTable.queryLanguage = ( :0 ) )" : " "
    Nepomuk QueryServer: Unable to execute query!
    terminating connection threads
    0: akonadiserver(_Z11akBacktracev+0x35) [0x44d505]
    1: akonadiserver() [0x44d742]
    2: /lib/libc.so.6(+0x349f0) [0x7f62149c89f0]
    3: /usr/lib/libQtDBus.so.4(+0x43f3b) [0x7f62157f9f3b]
    4: /usr/lib/libQtDBus.so.4(+0x442d5) [0x7f62157fa2d5]
    5: /usr/lib/libQtCore.so.4(_ZN11QMetaObject8activateEP7QObjectPKS_iPPv+0x4b9) [0x7f62165a4a99]
    6: /usr/lib/libQtCore.so.4(_ZN7QObject9destroyedEPS_+0x2f) [0x7f62165a51ef]
    7: /usr/lib/libQtCore.so.4(_ZN7QObjectD2Ev+0xde) [0x7f62165a8c9e]
    8: akonadiserver(_ZN26PreprocessorManagerAdaptorD0Ev+0x10) [0x53f850]
    9: /usr/lib/libQtCore.so.4(_ZN14QObjectPrivate14deleteChildrenEv+0x85) [0x7f62165a2f45]
    10: /usr/lib/libQtCore.so.4(_ZN7QObjectD2Ev+0x5ec) [0x7f62165a91ac]
    11: akonadiserver(_ZN7Akonadi19PreprocessorManagerD0Ev+0x9) [0x526d09]
    12: akonadiserver(_ZN7Akonadi19PreprocessorManager4doneEv+0x16) [0x526396]
    13: akonadiserver(_ZN7Akonadi13AkonadiServer4quitEv+0x3e8) [0x455c38]
    14: akonadiserver(_Z15shutdownHandleri+0x1d) [0x4462dd]
    15: akonadiserver() [0x44d720]
    16: /lib/libc.so.6(+0x349f0) [0x7f62149c89f0]
    17: /lib/libc.so.6(__poll+0x53) [0x7f6214a70183]
    18: /usr/lib/libglib-2.0.so.0(+0x44dc8) [0x7f6213ca0dc8]
    19: /usr/lib/libglib-2.0.so.0(g_main_context_iteration+0x69) [0x7f6213ca1289]
    20: /usr/lib/libQtCore.so.4(_ZN20QEventDispatcherGlib13processEventsE6QFlagsIN10QEventLoop17ProcessEventsFlagEE+0x6f) [0x7f62165bfa3f]
    21: /usr/lib/libQtCore.so.4(_ZN10QEventLoop13processEventsE6QFlagsINS_17ProcessEventsFlagEE+0x32) [0x7f621658f7d2]
    22: /usr/lib/libQtCore.so.4(_ZN10QEventLoop4execE6QFlagsINS_17ProcessEventsFlagEE+0xf7) [0x7f621658fa27]
    23: /usr/lib/libQtCore.so.4(_ZN7QThread4execEv+0x127) [0x7f621648fd27]
    24: akonadiserver(_ZN7Akonadi19ItemRetrievalThread3runEv+0x30) [0x504b90]
    25: /usr/lib/libQtCore.so.4(+0x7bd4b) [0x7f6216492d4b]
    26: /lib/libpthread.so.0(+0x7daa) [0x7f621477fdaa]
    27: /lib/libc.so.6(clone+0x6d) [0x7f6214a7809d]
    /usr/bin/xauth: file /var/run/slim.auth does not exist
    thx

    Have you solved your problem? I think I have the same issue.

Maybe you are looking for

  • How to determine the target system during runtime of a Generic DS?

    Hi Experts, good afternoon. I am coding a Generic Extractor using Function Module. I have to select the field TIMESTAMP on table ROOSPRMSC. To do so, I need the value of RLOGSYS that is the BW system that is calling the Extractor. Do anybody knows ho

  • How to change the text in default selection screen

    Hi,   I have created the default selection screen(using PNP Logical database) ,In that I wants to display 'Data Selection Period' instead of 'Period'. Please send me the related code. Thanks in advace mohan

  • Can I set the time ruler in the main window to minutes/seconds/milliseconds?

    Is there a way to set the time ruler in the MAIN window to minutes/seconds/milliseconds? It seems that the only ruler time display option is minutes/seconds/frames/subframes. Or, failing that, is there a way to suppress the display of frames/subframe

  • Detect uncommitted yet posted data in my forms session?

    In our application it is common practice to use the Forms POST built-in. Since we have our own exit-function with the application-wide look and feel we would like to catch the alert-box asking whether to save any changes. Is there a way to either ada

  • PDF file being blocked by Firewall

    I have 3 PDF files our of thousands that are being blocked by my companies firewall. None of the others are being blocked.We have re-created these files on different machines, with different names and still noluck. Outside our firewall they can be do