Each wiki group is listed 4 times

Hello All - I finally got the Wiki function working, but for some strange reason each wiki group is listed 4 times on the "Available Group Wikis" page.
EXAMPLE:
Available Group Wikis
Desktop
Desktop
Desktop
Desktop
WebDev
WebDev
WebDev
WebDev
Setup with services running:
MasterOD - Xserve 10.5.4 (AFP, OD, SMB)
ReplicaOD - PowerMac G5 10.5.4 (AFP, MySQL, NetBoot, OD, Software Update, Web)
I only have one website running and it's for the wikis. I left the domain name blank as suggested in another thread.
I checked /Library/Collabration/Groups and each group folder is only listed once. The URL to each of the repeated group wikis points to the same location. All functionality seems to be working, it just lists each wiki 4 times.
Any ideas or suggestions?
Thanks!
- Jason

Same problem here, but I only have my groups listed twice (lucky?). I have no idea why this happend (software update?).

Similar Messages

  • When I send a Group message from my address book, the entire group gets listed in the "To" line. How do I get each member to receive the message individually without listing all members? Its just messy is all.

    When I send a Group message from my address book, the entire group gets listed in the "To" line. How do I get each member to receive the message individually without listing all members? Its just messy is all. Any help is greatly appreciated.

    Hey Grupo Castillo,
    Thanks for the question. You can actually configure this behavior from Mail preferences:
    1. Choose Preferences from the Mail menu.
    2. Click Composing.
    3. Deselect the checkbox for "When sending to a group, show all member addresses".
    When you send an email to the group, only the groups name will be seen.
    Mac OS X: Mail - How to Hide Address Book Group Member Names When Sending an Email
    http://support.apple.com/kb/TA21082
    Thanks,
    Matt M.

  • I have a PC and I am not able to download photos a group at a time.  It deletes the prvious group of photos each time.

    I have a PC and I am not able to download photos a group at a time.  It deletes the previous group of photos each time I download new ones.

    You need to sync all the photos that you want on the iPad in one go - not including photos in a subsequent sync is the way that you delete them from the iPad (as you've found out). To sync multiple photo folders they will need to be directly off the same parent folder so that you can sync them together.
    More info on photo syncing : http://support.apple.com/kb/HT4236

  • Wiki - How to cutomize the default Wiki Groups listing?

    I am looking for any information about the Wiki groups listing.
    url: http://yoursite.local/groups
    I have already modified some of the look via ./usr/share/wikid/lib/appletemplates/grouplistings.xsl but I am still looking for the following:
    1. Is the groups listing page generated or a static index page?
    2. Can it me modified? How? Where?
    Cheers,
    /k

    The strings are found in /Library/Application Support/Apple/WikiServer/en.lproj/default.strings. It's listed twice but I think it's the second one that changes that text on the web pages. That way you can change the strings without editing the .xsl files.
    That being said, I am using the apple them and I've successfully (somewhat) converted my entire site to use this template with my customizations. I have been playing with the the .xsl files quite a bit and I was wondering if anyone knows how to have the server point to a new theme file so that my changes don't get overwritten with an update.
    I can see numerous places where the includes in many of the .xsl files show a path to the /usr/share/wikid/lib/apple_templates/ files but, but where is the root of where it looks for this info and how do I change it so that I am immune to update overwriting issues?
    Thanks,
    Colin

  • Apex 3.2 group select list

    Hi,
    I just want share this if you are still in older version of Apex and you use jQuery.
    I did made "plugin" for grouped select list
    See sample here
    http://actionet.homelinux.net/htmldb/f?p=100:86
    Plugin source
    ;(function(){
    jQuery.fn.htmldbLovOptGrp=function(o){
    var t=jQuery(this);
    o=jQuery.extend({
      sessionValue:t.val(),
      nullShow:false,
      nullValue:'%null%',
      nullDisplay:'%',
      lovProcess:undefined,
      lovGrpLabel:'GRP',
      lovDisValue:'DIS',
      lovRetValue:'RET',
      loadingTxt:'Loading ...',
      loadingCss:{'width':'80px'}
    },o);
    return lCreSelect(t,o);
    jQuery.htmldbAjax=jQuery.fn.htmldbAjax=function(opt){
    jQuery.ajaxSetup({
      url:'wwv_flow.show',
      dataType:'HTML',
      traditional:true,
      cache:false,
      type:'POST',
      data:{
       p_flow_id:jQuery('#pFlowId').val(),
       p_flow_step_id:jQuery('#pFlowStepId').val(),
       p_instance:jQuery('#pInstance').val()
    return jQuery.ajax(opt);
    jQuery.htmldbJSON=jQuery.fn.htmldbJSON=function(opt,callfn){
    return jQuery.htmldbAjax({dataType:'json',data:opt,success:callfn});
    function lCreSelect(t,o,j){
    t.empty().hide().parent().append(jQuery('<div/>').html(o.loadingTxt).addClass('ui-autocomplete-loading').css(o.loadingCss));
    jQuery.htmldbJSON(jQuery.extend(j,{p_request:'APPLICATION_PROCESS='+o.lovProcess}),function(jd){
      if(o.nullShow){lAppendOpt(t,null,o.nullDisplay,o.nullValue);}
      jQuery.each(jd.row,function(i,d){lAppendOpt(t,d[o.lovGrpLabel],d[o.lovDisValue],d[o.lovRetValue]);});
      t.val(o.sessionValue).trigger('change').show().parent().find('div.ui-autocomplete-loading').remove();
      return t;
    function lAppendOpt(t,l,d,r){
    var o=lCreateOpt(d,r);
    if(l){
      var g=lGetOptGrp(t,l);
      if(g){g.append(o);}
      else{t.append(lCreOptGrp(l).append(o));}
    }else{t.append(o);}return true;
    function lExists(p){return(p.length==1);}
    function lCreateOpt(d,r){return jQuery('<option/>').val(r).html(d);}
    function lCreOptGrp(l){return jQuery('<optgroup/>').attr({'label':l});}
    function lGetOptGrp(t,l){var g=t.find('optgroup[label="'+l+'"]');if(lExists(g)){return g;}else{return false;}}
    })();Copy code and save it to file e.g called jquery.htmldbQuery.js and upload it to workspace Static Files.
    Create new page and blank HTML region.
    Create select list with LOV query
    SELECT null d, null r FROM dualCreate On Demand application process called GET_GRP_LOV like
    DECLARE
    l_sql VARCHAR2(32700);
    BEGIN
    l_sql :='
      SELECT mgr AS grp,
       ename AS dis,
       empno AS ret
      FROM emp
    APEX_UTIL.JSON_FROM_SQL(l_sql);
    END;Place to page HTML header
    <script type="text/javascript" src="#WORKSPACE_IMAGES#jquery.htmldbQuery.js"></script>
    <script type="text/javascript">
    $(function(){
    $('#Px_MY_SELECT').htmldbLovOptGrp({lovProcess:'GET_GRP_LOV'});
    </script>Where Px_MY_SELECT is your select list name.
    As I did say this need you also load jQuery. Apex 4 have jQuery , but if you are on later version see e.g. this blog post
    http://www.oracleapplicationexpress.com/tutorials/66
    I hope this helps someone
    Br,Jari
    Edited by: jarola on Aug 17, 2010 8:44 PM
    Same thing seems to be work also with Apex 4.0
    http://apex.oracle.com/pls/otn/f?p=40323:50
    But if I have understand correctly Apex 4.0 have some build in or better thing to get same result
    Edited by: jarola on Aug 17, 2010 10:54 PM
    copy&paste mistake corrected
    Edited by: jarola on Aug 18, 2010 12:57 AM
    I hope editing post all the time is ok =).
    I have not test this on any other browser than Fire Fox, so all comments are welcome.
    Also I have try create similar plugin for cascading lov. Sample here
    http://actionet.homelinux.net/htmldb/f?p=100:85
    Maybe there is this kind plugins already for Apex 3.x, I have not just seen.
    Also I'm beginner with jQuery so all help and comments is needed
    Edited by: jarola on Aug 18, 2010 2:01 AM
    mistake in guide corrected.

    Hi Matt,
    which version of APEX are you currently on?
    With ApexLib Framework you can have cascading select lists in normal forms, but not in a Report or Tabular Form. Also refreshing a Report when changing a select list doesn't work out of the box. You would need to add some javascript. But i think this isn't what you wanted.
    brgds,
    Peter
    Blog: http://www.oracle-and-apex.com
    ApexLib: http://apexlib.oracleapex.info
    BuilderPlugin: http://builderplugin.oracleapex.info
    Work: http://www.click-click.at

  • Whenever I launch a new Google window, Google immediately re-opens all other windows I happen to have open but minimized. I then have to either close or re-minimize each window, one at a time. What a pain!!

    Whenever I launch a new Google window, Google immediately re-opens all other windows I happen to have open but minimized. I then have to either close or re-minimize each window, one at a time. What a pain!!

    Just to address the last point: check your History menu to see whether you have the Restore Previous Session option and use that if you can. If that is grayed out or doesn't restore everything, check the Recently Closed Windows and Recently Closed Tabs lists for other pages.
    The unwanted window may be generated by an add-on. Try disabling ALL nonessential or unrecognized extensions on the Add-ons page. Either:
    * Ctrl+Shift+a
    * "3-bar" menu button (or Tools menu) > Add-ons
    In the left column, click Extensions. Then, if in doubt, disable.
    Usually a link will appear above at least one disabled extension to restart Firefox. You can complete your work on the tab and click one of the links as the last step.
    Any improvement?
    Here are some other things to check:
    (1) user.js file that changes Firefox startup behavior and overrides your preferences. This article describes how to track that down and delete it if you have one: [[How to fix preferences that won't save]].
    (2) Possible hijacked shortcut. Check the "target" of the desktop icon you use to start Firefox to see whether it lists the unwanted page. To do that:
    right-click the icon > Properties > Shortcut tab
    For 64-bit Windows 7, the Target should be no more and no less than this:
    "C:\Program Files (x86)\Mozilla Firefox\firefox.exe"
    (3) Possible undisclosed bundle items. If you have installed any free software recently, check your Windows Control Panel, Uninstall a program for surprises. If you click the "Installed on" column head to group by date, it is easier to spot bundled junk. Remove everything suspicious or unrecognized.
    (4) Supplemental clean up scans. Our support article lists tools other Firefox users have found helpful: [[Troubleshoot Firefox issues caused by malware]].
    Hopefully that cures it.

  • HT2623 How do I set up iCloud group contact lists with 'undisclosed recipients'?

    I have set up some icloud group contact lists (although not very easily as I had to re-input each contact into the group list as I didn't seem able to select it from my existing contact list and transfer it into the group).  Now I want to send e.mails to each group, but I want each contact address in the group to be private, so that the email says 'undisclosed recipients' as I see on other e.mails.  How does that work?  I had a practice bringing up the group name, but every e.mail show in the 'to' box...
    What do I need to do?

    Hi Mike,
    Go to your Applications folder and open Address Book > at the bottom of the left side click on the + sign to add a Group > name the group > click on All Contacts > in the Name column, drag one name at a time into the group you created on the left side > when you have all the names you want in there, close Address Book > when you want to email everyone in that group, simply open a New Message in Mail > in the To field, type in the name of the group you created > type your message > hit Send and the message will be sent to everyone in that group.

  • Is there a way to create a group email list?

    I am trying to set up a group email list so I don't need to restyle addresses every time.  Easy to do in Outlook but how do I do it on my IPad?

    Unfortunately, that isn't possible in the iPad mail app or the contacts app. You cannot create groups or email to groups.
    There are third party apps that will allow you to do that. I believe that MailShot and Group Email with Attachments will both let you create groups and mail to them. You can check them out in the App Store.

  • GROUP EMAILING LIST: Is it possible to create a group list to email

    how would you go about setting up a group contact list to email people instead of having to click on each name.....????   like if you wanted to forward something onto others.......didn't know if it could be done....
    Solved!
    Go to Solution.

    It is my understanding that you can't mix the email and SMS in a group.
    However--you can always add the SMS user to have an SMS email address... like
    [email protected]
    Here's a list:
    http://www.sms411.net/2006/07/how-to-send-email-to-phone.html
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Java 1.5 - Each Element of a List Cannot Be An Array?

    I plan to create a List and each element of this List is a String Array.
    First, I declared a List:
         private static List<String> recursiveTextArray = new ArrayList<String>();And I want to build this List by adding one Array at a time:
    recursiveTextArray.add( title );where
    private String[] title;
    title = new Array(3);I got syntax error saying: "The method add(String) in the type List<String> is not applicable for the arguments (String[]).
    I cannot figure out what the compiler is complaining about. How do I fix the problem? Thanks in advance.

    I think that I have some idea about what is going on. Because Array is an object, I should:
    private static List<Object> recursiveTextArray = new ArrayList<Object>();But the Java statement shown right above has a syntax error: "Syntax error on token ";", , expected"
    I have no clue why there is such a syntax error.

  • Group Email List

    How do I create a group email list on my Blackberry Tablet?  Iggy

    to send a group email in Mail, create a group in AB, and add all the contacts you would like to send a group mail to. If some contacts have more than one email address, then select the group you created and go to AB>edit>edit distribution list.. and then select the email you would like to send with for each contact in that address book.
    Then go to Mail create a new email, and select the name of the group.
    hope this helps

  • Enable group mailing list in Server.app not working

    Hello everyone,
    I have been trying to enable a new (?) feature of Server.app : "Enable group mailing list". Until now, it does not work for me. When I try to send an email to the group [email protected], Mail tells me that the smtp server cannot send my message. Here is what I see on the server's /var/log/mail.log file :
    Sep 10 16:55:54 testserver01.pretendco.net postfix/smtpd[2311]: NOQUEUE: reject: RCPT from testclient01.pretendco.net[10.1.101.10]: 550 5.1.1 <[email protected]>: Recipient address rejected: User unknown in local recipient table; from=<[email protected]> to=<[email protected]> proto=ESMTP helo=<testclient01.pretendco.net>
    Sep 10 16:55:54 testserver01.pretendco.net postfix/smtpd[2311]: disconnect from testclient01.pretendco.net[10.1.101.10]
    It is interesting to note that group mailing list aren't even mentioned in the Mac OS X Server Advanced Administration Guide :
    http://help.apple.com/advancedserveradmin/mac/10.8/#apd9430d30c-5796-4a20-a8f9-1 20638938942
    Does any has any good/bad experience with group mailing lists under Mountain Lion Server ? Any advice ?
    Thanks a lot !

    Hello Mark23 and thanks for your help !
    The log says nothing particular when I (un)set the "Enable Group Mailing List Option". The only difference I see is a line saying mail_groups[127]: sleeping for: 1 hour(s). I have no idea what this means exactly. Googling it did not help me much either.
    I post the /etc/aliases file below. Interesting : every time I (un)set the "Enable Group Mailing List" option, the /etc/aliases last access time changes. But the md5 hash of the file stays the same.
    I guess that the "sudo newaliases" uses /etc/aliases to construct the binary database file /etc/aliases.db ? It seems that this script is run every time I (un)check the option since the access time of *both* /etc/aliases and /etc/aliases.db are changed to the current time.
    Do you have any other option checked ?
    Here is my /etc/aliases (I removed the blocks of comments at the beginning and at the end):
    # Person who should get root's mail. Don't receive mail as root!
    #root:                    you
    # Basic system aliases -- these MUST be present
    MAILER-DAEMON:          postmaster
    postmaster:          root
    # General redirections for pseudo accounts
    bin:                    root
    daemon:                    root
    named:                    root
    nobody:                    root
    uucp:                    root
    www:                    root
    ftp-bugs:          root
    postfix:          root
    # Put your local aliases here.
    # ==== Begin auto-generated section ========================================
    # This section of the aliases file is auto-generated by server admin tools
    # Please do not edit this section or your modifications will be lost
    # === End auto-generated section ===========================================
    # Well-known aliases
    manager:          root
    dumper:                    root
    operator:          root
    abuse:                    postmaster
    # trap decode to catch security attacks
    decode:                    root

  • Group Mailing Lists and Email Addresses

    Howdy All,
    A couple of quick questions:
    1. When a Group mailing list is created does this create an equivalent Mailman mailing list (i.e. that would appear at the Mailman list URL)? I'm not so much concerned as to whether Groups uses Mailman behind the scenes just whether or not one could "further" admin the group mailing list through the admin interface.
    2. What happens when you have a username "x", a group name "x" (which I commonly used on other Unixes) with a mailing list (implictly named "x"), and a Mailman mailing list named "x" (what was created as a Mailman mailing list in Server Admin) and then you email x@serverDNSname? Because I often use the same user and groups names this could be quite common.
    Thanks for any thoughts on these puzzles.
    Cheers,
    Ashley.

    I am beginning to suspect a combination problem- i.e. bad converter and bad Admin Tools.
    The 10.6 Mail Admin manual states that:
    +In Workgroup Manager, enable the Mailing List service for each group you want to have a mailing list address.+
    +The setting is located in the Basic group options in Workgroup Manager.+
    However, I no longer have these options in Admin Tools. I had them in 10.5.8, but not in 10.6 or 10.62 tools. I took a screenshot of the basic tab in WM:
    Image: !http://i157.photobucket.com/albums/t69/dunkelza/Screenshot2010-01-08at81609AM. jpg!
    I checked the About Workgroup Manager menu item and got "Version 10.6.2 (361.2.1)"
    So it appears that the update to 10.6 not only failed to convert the LDAP settings correctly and/or map them to the mail system; but, that the update also removed my ability to see this and fix it through the GUI.

  • How to query the status of disk groups in specific time?

    Dears,
    While trying connect to database , i faced ORA-00257:archiver error. Connect internal only, until freed.
    Also found in alert file ORA-15041: diskgroup space exhausted
    And found in ASM alert file WARNING: allocation failure on disk DG_DATA_0002 for file 357 xnum 2147483648
    I expected from above errors that the problem in ASM Disk groups or in file system space.
    After checking, found every thing is fine and OK as i have much free space.
    And when i tried after some time to connect to database, it connected successfully without errors.
    It means that the problem not in space,may be the status of disk groups became invalid for some time
    Appreciate your advise. And how can i know the status of disk groups in specific time?
    Thanks & Regards,,

    Hi All,
    We got another idea to create new template and use it as "Current Default Workbook".
    Then it is showing latest date as we changed one of the Text element from "Display Status of Data" to "Display status of Data To".
    But the this change is showing to my user id only but not to the other users.
    We are selecting the tick mark for "Global Default Workbook", but this tick mark is going away after each refresh. I think if this tick mark is holds permanently, my problem will solve.
    Please suggest me if you have any ideas to resolve this issue....

  • Can i make a group email list so i can email several people at once

    how can i make a group email list so i can email several people at once instead of one at a time from my iphone 4

    Here is a link to our MailShot Pro app, which leftyapple2 was kind enough to mention (Thanks). MailShot Pro in App Store
    MailShot creates a special contact for your group that enables most of the apps on your device to send group email, including the Mail app itself. Just add the contact to the "To" or "Bcc" line of your email using the blue + button
    Any questions or problems, please get in touch with our support email on "support at solubleapps.com", we are always happy to help.
    Peter
    SolubleApps
    Disclosure: we are the developers of MailShot Pro and may benefit from its sale.

Maybe you are looking for

  • Inbox has taken over my Mozilla Firefox page, as well as the Internet Explorer. How do I get rid of it? It's no longer on my Control Panel to delete/

    Looking for map/info about MARC from Martinsburg, WV to DCA, it appeared I needed to "sign in" to get info. InBox took over the homepage screen. I have gone to Control Panel and deleted Inbox from there. But, it AIN'T gone. I don't want to go into an

  • Line Item Level Coupons

    Hello Everyone, Are line item level coupons available where you tie a promotion to a particular item?  I know you can set it up where if you buy A01 you get A02 free, but is there a way to set that up as a 1-to-1 ratio?  Let me explain a little furth

  • Acrobat 9 Pro  sizing and aligning problem

    Is there a setting for checkbox default size. when I try to select the box handels to reduce the size I can never get the all the same size. Any tips on this ? ALSO I am having dificalty in aligning the left and right edges of the Text boxes I have 7

  • Question regarding ipad 3 replacement via warrentee.

    I have a question, basically my ipad 3 is glitching. It is a 64gb ipad 3, I am fairly positive apple will replace it for me. Considering I purchased the two year warranty. However I am wondering, Will they replace it with a newer ipad model? Or will

  • Can't change primary email

    I login to skype using my microsoft account. I recently changed my email address on my microsoft account and my skype address changed automatically and allows me to login to skype with not problems.  When I go to my account in skype the primary email