Tags don't autocomplete in Wiki Server

Since the upgrade from 10.7 Server, previously-used tags don't autocomplete when added to a wiki page. There's nothing informative in the logs. Otherwise the server seems to be working. Before filing a bug report, I'd like to know whether anyone can confirm.

There is completion, but it only seems to work when you click the "Allow user to administer this server" checkbox in the Users section of the Server app. Must be a permissions issue.

Similar Messages

  • How to delete old unused blog tags from Wiki Server 3 in Lion Server

    My Tags index in my Wiki Server 3 wiki (Lion Server) still shows old tags that are no longer in use.
    But, how in the world does one remove them?
    Any help?   Thanks.

    I figured it out, but had one hoop to jump through.   I hadn't noticed a tiny little edit button in the far upper right corner of the tags window.   Clicking it reveals red minus signs next to each tag.  That's how to delete a tag.
    BUT, since my tags were no longer in use (I'd deleted the original blog(s) they were attached to, when I tried deleting them I got an error message.   So, I created a dummy blog entry, tagged it with the same tags that I want to delete, saved the blog, then went back to the all-tags view and deleted them (they existed this time).  After done, I deleted the temporary blog.   All done.
    It seems clear that the WIki 3 Server is very primative in many ways.  I hope Mountain Lion reveals a host of improvements.

  • Manage Tags in Wiki Server?

    Hi
    Is there any way to 'manage' Tags in the Wiki Server.  We have some students posting swear words etc as Tags as unauthenticated users.  Is there a way I can force them to authenticate before they can add tags?  Failing this, is there any other way I can manage this?
    Regards
    Chris

    Apparently you can. Upload any image using the Add image (not the attachment) button in edit mode.
    Once uploaded. While still in edit mode. Click on the same line right "before" the image, not on the image itself... in the white space.
    A new button will appear in the edit toolbar at the top it will say Link (down arrow).
    Click that... it works just like normal links, and you can link that photo anywhere.
    Click Save... now when you click the image... instead of getting another window with the preview... you get redirected to the URL you provided.

  • Redundant Wiki Server- Can It Be Done?

    Hello All -
    I am wondering if I have an existing wiki server if I can have it replicate to another mac server for load balancing and redundancy.  Has anyone performed this, and if so do you have documentation?  Both servers would be a member of the golden triangle so the permissions from users would need to follow to both servers.
    Any help is greatly appreciated.

    Hello All -
    I am wondering if I have an existing wiki server if I can have it replicate to another mac server for load balancing and redundancy.  Has anyone performed this, and if so do you have documentation?  Both servers would be a member of the golden triangle so the permissions from users would need to follow to both servers.
    Any help is greatly appreciated.

  • How do I changing the default WIKI Server name on OS x Lion Server?

    How do I changing the default WIKI Server name on OS x Lion Server? Enterprise solutions suggested I post this question here to get a direct answer. I have searched everywhere... This would be the META TAG On the top of browsers...

    I went looking for this answer, to no avail.
    Solution I used:
    step 1 - Navigate to the folder /usr/share/collabd/coreclient/locales/en.lproj/ and open the only file there called default.strings.
    step 2 - somewhere around lines 74 & 164 you will see the default title "OS X Lion Server". I'm sure only one of the is required to be changed to adjust the title on the window, but I changed both to my desired title. Save and close. If asked for authentication, enter you administrator details.
    step 3 - restart the server (or wiki service may work too)
    step 4 - done and your Wiki welcome page should show the new title
    Finally I have a bookmark that means something by default.
    Hope this helps

  • Wiki Server - People - suppress for unauthenticated users

    With Wiki Server 4 (Server 10.8.1), unauthenticated users hitting the web server's default home page are presented with Wiki Server's default landing page listing:
    "My Documents"
    "All Activity"
    "Wikis"
    "People"
    If an unauthenticated user tries any of the first three items they get no content, which is great (althouh only the "My Documnets" page prompts for credentials — I think they all should).
    However, if they hit the "People" item, it lists (exposes) all of the people on your system.
    We don't want a list of our users exposed — we think if you are unauthenticated, you shouldn't see anything when clicking on "People".
    Suggestions?

    ******** PLEASE BEFORE DOING ANYTHING COPY THE CONTENT FOLDER OF THE SERVER.APP AND BACK IT UP SOMEWHERE SAFE**************
    I have been working on this for weeks.....  I understand some people want to be able to share there blogs and people pages but you have to understand some people don't
    "People pages" should be set up is the same way as wikis...  The owner(s) have the ability to give access to whom they choose.  If it is a public "people page" it shows up in search and activity, if it is private it doesn't show up (or only shows up in search results with people that have access).  I also feel you should have the ability to choose whether a person has a "people page" or not. 
    But it is what it is. So I'll step through what I did to make it work for me.  You do lose some services but this was my goal....
    1.  All activity does not work
    2.  Search does not work
    3.  tags do not work (I hope to fix this because I want tags....)
    4.  iPad now brings up the PC version of the wiki server, which eliminates the ability to upload files.  Some one with some java script experience maybe able to help us out but at this time I just chose to remove it....
    **The other thing to note is the iPad version is completely independent of the PC version (I address this also) so even if you make all these fixes someone with an iPad will still be able to search and gain access to people unauthenticated***
    Now all services (including the home page and people) need authentication to gain access.
    ************** Once complete you need to stop/restart wikis**************
    **************I recommend making a copy of the content file of your server app (just incase)**************
    Step 1.  Set up authentication: (SAVE A COPY ON THE DESKTOP BEFORE EDITING)
    1.Edit the controller for the wiki
    /Applications/Server.app/Contents/ServerRoot/usr/share/collabd/coreclient/app/co ntrollers/application_controller.rb
    2. find the block
       helper_method :service_client, :current_user, :current_version, :page_context, :use_inline_webauth, :javascript_includes_for_locale
       helper_method :webcal_enabled?, :webmail_enabled?, :entityURL, :iphone, :ipod, :ipad
       before_filter :master_before_filter, :block_older_internet_explorer
       after_filter :master_after_filter
    3. Change to
       helper_method :service_client, :current_user, :current_version, :page_context, :use_inline_webauth, :javascript_includes_for_locale
       helper_method :webcal_enabled?, :webmail_enabled?, :entityURL, :iphone, :ipod, :ipad
       before_filter :master_before_filter, :block_older_internet_explorer
       before_filter :ensure_user_is_authenticated
       after_filter :master_after_filter
    2.  Remove search/all activity/tag access (SAVE A COPY TO DESKTOP BEFORE EDITING)
    Go to:
    /Applications/Server.app/Contents/ServerRoot/usr/share/collabd/coreclient/config /routes.rb
    I removed the following lines of code:
        match "/updates" => redirect("/wiki/activity")
        match "/updates/:path", :to => redirect {|params| "/wiki/activity/#{params[:path]}"}
        match "/activity", :to => 'activity#index'
        match "/search", :to => 'find#index'
        match "/search/:id", :to => 'find#index'
        match "/find", :to => 'find#index'
        match "/find/:id", :to => 'find#index'
    3.  Remove activity from menu bars (SAVE A COPY TO DESKTOP BEFORE EDITING)
    Go to:
    /Applications/Server.app/Contents/ServerRoot/usr/share/collabd/coreclient/config /initializers/register_apple_plugins.rb
    I removed these lines of code:
        BannerLinks::Project::Activity,
        BannerLinks::Project::Documents,
        BannerLinks::Project::Tags,
        BannerLinks::Person::Activity,
        Sources::Activity,
       Sources::MyFavorites
    4. Redirect iPad to the PC version of the wiki server. (SAVE A COPY TO DESKTOP BEFORE EDITING)
    Go to:
    Applications/Server.app/Contents/ServerRoot/usr/share/collabd/coreclient/app/con trollers/application_controller.rb
    Change:
          if ipad and ios5plus
          redirect_url = "/wiki/ipad/#route=#{request.fullpath}"
          logger.info("Redirecting to #{redirect_url} because we detected an iPad running iOS5+")
          redirect_to redirect_url
          end
    To:(You could probably just remove these lines but I was still troubleshooting at the time)
          # if ipad and ios5plus
          # redirect_url = "/wiki/ipad/#route=#{request.fullpath}"
          # logger.info("Redirecting to #{redirect_url} because we detected an iPad running iOS5+")
          # redirect_to redirect_url
          # end

  • How to update "list of trusted sources" in Lion Wiki Server 3

    Hi,
    I would like to integrate content of external webites in my Lion Server Wiki with the iframe-tag. When I save the code, nothing is shown and the src-fragment is deleted.
    When I search the Wiki-Help, there is written something about a "list of trusted sources" in the wiki server.
    In the client OS forum I found the same problem without an answer. Did anyone slove this problem?

    I haven't used the previous OSX server versions before 10.7, but it seem to be a new technology than before, i.e.. ruby instead of python? Anyway, I've tried to create a whitelist.plist in all the directories mentioned but in 10.7 the major ones seems to be /etc/collabd and /usr/share/collabd, put whitelist.plist there don't work.
    I also noted that when I added the iframe in the editor - it works, even more interesting, it works in the document history. From a security viewpoint - this is a bug as I see it.
    Good thing is that I probably have a (unsecure) workaround, I edited the /etc/collabd/collabd.plist and change true to false regarding FilterEnabled and restarted Wiki
    Like this:
    <key>FiltersEnabled</key>
    <false/>
    But I reallly want some kind of whitelist from a security viewpoint, where is it?

  • How do I increase attachment file size in Wiki Server 3?

    I have just setup Wiki Server 3 on Lion - Got it working.  I am using it for a community Video Library and manu of the files are between 1 to 3 gb.  I was able to attach video files as large at 500MB, but no larger.  I found a few poists discussing updates to the wikid.conf file for MaxAttachment.  That file exists on my machine - but it looks like it is leftover from Snow LEopard Server. 
    Is there a way to increase the maximum allowable attachment - or do I need to revert back to Snow Leopard Server... I am a novice in the Networking and Server world and had trouble setting up Snow Leopard Server in the past.
    Thanks

    It might be something in the Apache config, but I don't know what. The first thing I'd try is to transfer a test file onto the wiki server host by some other means (AFP, SFTP), then open a web browser on the wiki host and connect to the wiki (i.e. connect to itself). Then try to upload the file. This will eliminate all external sources of interference. If you still cannot upload 1GB+ files, try a different browser. If it still doesn't work, the limitation must be in Apache or the Wiki code somewhere else.

  • Can't Host a Wiki Server's calendar using Server 10.8

    I have setup server and attempted to have one of my calendars on iCal sync with the Wiki calendar
    I have a user called bernard
    I have a calendar in ical called bernardtraining
    In the Wiki the user bernard has a calendar but I cant get ical to sync with the Wiki.
    In iCal Accounts
    I set up an account in ical lets call it server.myserver.private (hiding actual name)
    user name = bernard
    password is set to user password
    Refresh 5 minutes
    In Server Settings iCal Accounts
    Server address server.myserver.private
    server path aut populates to /principals/__uids__/7A7D303D-8265-47D5-BAD1-01E3DDD4CC37/  (maybe this is the problem)
    Port = auto
    SSL = No (for now)
    No delgates
    I then went through this process.....
    When you set up iCal Server to provide the calendar service for a wiki, Wiki Server provides access to the calendars, so users who do not have wiki privileges do not have calendar service.
    Use serveradmin via the Terminal app to change the setting.sudo serveradmin set calendar:Authentication:Wiki:Enabled = "<setting>" The default value for <setting> is “no”.
    The other possible value is “yes.”
    Command example:
    sudo serveradmin set calendar:Authentication:Wiki:Enabled = "yes"
    Use serveradmin via the Terminal app to designate the Wiki server.sudo serveradmin set calendar:Authentication:Wiki:Hostname = "<DNSWikiServer>" The default value for <DNSWikiServer> is the Wiki server’s fully qualified domain name.
    Command example:
    sudo serveradmin set calendar:Authentication:Wiki:Hostname = "wikiweb.example.com"
    Use serveradmin via the Terminal app to encrypt the connection.sudo serveradmin set set calendar:Authentication:Wiki:UseSSL = "(yes|no)" The default value is “no”.
    Command example:
    sudo serveradmin set set calendar:Authentication:Wiki:UseSSL = "yes"
    Still no success.
    Can anyone help?

    I did, and had it working last night. It won't now, though.
    I don't understand port triggering, and when I attempted to look up the help files on the linksys site, they told me to register first - then they wouldn't let me fill in the email address section of the registration, so..
    I don't use a firewall, and this computer I'm trying to host the server on is directly connected to the router. The wireless connection is with a laptop upstairs. I just checked, and my IP changed, but fixing that in Port Forwarding still does nothing. I can host the server... It just doesn't show up on gamespy.
    Just about everywhere I read up on this, it mentions having to have a static IP address. I went through the guides that tell how to go about getting one set up, but still doesn't work. I don't have anything even remotely mentioning linksys in Network Connections though - that's on the laptop. Could this be the problem?
    Another problem I ran into when setting up the router, was I'd get an error unpacking languages, or something. Got it every time, but it let me move on after closing the error so didn't think much of it.

  • Custom sidebars in Wiki server

    Apple's Wiki Server and Podcast Producer are one of the best if not the best product for serving podcasts BUT this application fails in certain areas that easily puts customers off considering that companies will always vie for a Pc solution.
    My major issue with the Wiki server is the custom sidebar addition. Now this should so simple to add but if you try and add a custom sidebar following apples help directives below
    Adding a sidebar to the home page
    The home page of your wiki automatically displays items that are tagged "hot" in a sidebar, so that users will be more apt to notice them. If you're the site owner, you can add another sidebar that spotlights items tagged with another tag of your choosing.
    *To add a custom sidebar:*
    *Open your site's homepage and then click the Edit (pencil) button.*
    *Click the Groups Settings button.*
    *Click Sidebar and enter the tag that will be used to identify items to appear in the sidebar, such as "projectX."*
    *Enter a title for sidebar, such as "Project X News," then click OK.*
    *Click "save" in the toolbar to save your changes.*
    *The five most recent Items tagged with the tag you specified will automatically appear in the sidebar.*
    First the edit pencil in the home page does not provide one the capability to edit the custom sidebar settings but the actual appearance of the page such as the text and placement of media etc.
    The custom sidebar settings can only be accessed via the Admin Functions/ settings/ even then you can add a single custom side bar and when you try to add another you will find that the details of the last custom sidebar is still in place. If you delete that information and add new information this will delete the previous custom sidebar creating a new one. Now this is such an annoying issue that Apple needs to resolve ASAP as some of us are trying to sell this product for it's other benefits.
    Another area that it fails at is the display of items. Currently the maximum number of items displayable is 5. To increase this requires messing about with theme files and plist files! Now this should also be a simple feature that should exist in the Admin Functions settings area. Unless I am missing something then someone should enlighten me as to the mystery of these settings. I hope Snow leopard will have all these basic issues ironed out.

    by "custom fields" i mean some additional fields. e.g i want a clerk to mail a minute sheet along with remarks of clerk, to an officer. now i have put some fields e.g clerk's name, type of mail (minute sheet etc), officer's name etc on the email form (i have designed that form in java and using javamail api to send/receive mails). while sending this email, clerk fills those fields and mail it to the officer. now depending upon the type of mail (if its a minute sheet or whatever), that mail should be opened in the appropriate form designed for that type of mail, showing all those additional fields, e.g clerk's name in clerk's name label, officer's name in officer's name label etc. is it possible that i can tel exchange server to store the information about those custom fields while storing the mail so that i can retrieve those fields later. hope u got my point.thanks

  • How to fix wiki server if my domain name is reallocated to a new static IP?

    Our wiki server in Xserve Intel was running smooth in 10.5.7 with a static IP in an intranet environment.
    Until Our office is reallocated and the server is migrated to a MacMini G4.
    We cloned the Mini server by Time Machine.
    We changed a new domain name and a new static IP.
    Problem:
    1 Some of wiki pages points to new domain name and some don't.
    2 All wiki jpg points to old domain name but the blog jpg is correct.
    3 Group Calender can't connect to the iCal server
    Please tell me the correct procedure to amend the parameter.
    (PS I am a newbie in Server Mx and has no knowledge in UNIX/Terminal)

    Snow Leopard did the same if you used the GUI. I responded to you in your other thread. You can also simply use a different Apache. Use Macports to install your own apache, which can be managed via command line or webmin. Thus, the apple one deals with Apple stuff, and, yours deals with everything else.

  • Wiki Server Custom templates

    Hi All
    We are currently looking to move more of our internal processes across the the Wiki. I was wondering is there a way to create custom wiki page templates? I don't mean to customise the apple supplied ones (they are fine) but to create templates for Meeting minutes, Customer call logs (In a a customer blog) that all have the same format? Or ultimately an entire project pre-build that we could deploy when a new project kicked off.
    Any help or guidance would be greatly appreciated.
    Alex

    For Snow Leopard 10.6 the Extending Your Wiki Server content was merged into the Wiki Server Admin manual (http://images.apple.com/server/macosx/docs/WikiServer_Adminv10.6.pdf)
    To create custom templates, you need to create custom XSL (which could break the wiki if the Apple defaults get updated), and Javascript (though I don't see why we should create custom nodes directly in the DOM just to make a series of pages.
    CSS only affects the styling of the blocks.
    -Tony

  • Wiki server templates

    does anyone know a company that sells wiki server compatible templates ? I dont mind paying a small fee but I would really like a few more templates without digging into CSS - really not my cup of tea
    best regards

    For Snow Leopard 10.6 the Extending Your Wiki Server content was merged into the Wiki Server Admin manual (http://images.apple.com/server/macosx/docs/WikiServer_Adminv10.6.pdf)
    To create custom templates, you need to create custom XSL (which could break the wiki if the Apple defaults get updated), and Javascript (though I don't see why we should create custom nodes directly in the DOM just to make a series of pages.
    CSS only affects the styling of the blocks.
    -Tony

  • How to POST to wiki server through atompub?

    Hi all,
    I'm trying to use curl to post a new entry to the leopard wiki server
    through the Atom Publishing Protocol, but I'm not sure if I POSt to
    the correct address.
    My server runs Mac OS 10.5 Server.
    Here's the POST command:
    curl "http://server.applelab.org/groups/testcourse/atompub" -X POST -H
    "Content-type: applicaiton/atom+xml" -v -L -k -u user:passwd --data
    @/Users/vestige/work/testpost -o post_response
    the server response HTTP /1.1 200 OK, but nothing happened on the web.
    if I use:
    curl "http://server.applelab.org/groups/testcourse/weblog/index.atom"
    -X POST -H "Content-type: applicaiton/atom+xml" -v -L -k -u
    user:passwd --data @/Users/vestige/work/testpost -o post_response
    the server response: HTTP /1.1 400 Bad Request.
    So I'm wondering where should I post my entry to?
    Thanks in advance!

    Hi Linc,
    sorry, I haven't saved the System-Logfile before restoring my parallels VM.
    But it looks like issues of linking data.
    For testing the Server services I have done a reset for a user password and I have deleted the profiles and configuration from Client-Side. One with Mac OS X 10.9.1, one iPad with iOS 6.1.3. But it was not possible to reconfigure/reinstall the Server Profile. Also a manually configuration was odd, because for some services the new password was necessary and for other services the old password. Very strange.
    To bring back the services I have rolled back the last snapshot of my parallels VM. Afterwards there was no probleme to reconfigure/reinstall the Profile on Client-Side (OS X 10.9.1 and iOS 6.1.3). Also the manually configuration shows the password for all services are matching with the current configuration.
    I'm going to install a further parallels VM with Mac OS X 10.9.1 and Server App 3 from scratch to move the services.
    Greetings

  • How to reset the wiki server (MAC OS X 10.9 with OS X Server App Version 3) with all wiki datas only

    Hi,
    I need to reset my Wiki on MAC OS X 10.9 with OS X Server App Version 3, but without reinstalling the whole server app to configure all services.
    Does anybody knows how to reset the wiki server (MAC OS X 10.9 with OS X Server App Version 3) with all wiki datas only.
    Thanks a lot for your hints

    Hi Linc,
    sorry, I haven't saved the System-Logfile before restoring my parallels VM.
    But it looks like issues of linking data.
    For testing the Server services I have done a reset for a user password and I have deleted the profiles and configuration from Client-Side. One with Mac OS X 10.9.1, one iPad with iOS 6.1.3. But it was not possible to reconfigure/reinstall the Server Profile. Also a manually configuration was odd, because for some services the new password was necessary and for other services the old password. Very strange.
    To bring back the services I have rolled back the last snapshot of my parallels VM. Afterwards there was no probleme to reconfigure/reinstall the Profile on Client-Side (OS X 10.9.1 and iOS 6.1.3). Also the manually configuration shows the password for all services are matching with the current configuration.
    I'm going to install a further parallels VM with Mac OS X 10.9.1 and Server App 3 from scratch to move the services.
    Greetings

Maybe you are looking for

  • Current Mac Mini and HD decoding

    Hi there, I am considering buying a Mac Mini as an HTPC to connect via DVI->HDMI to an LCD TV. I was wondering if any of you has experience in playing HD content on a current generation Mac Mini and how does the Mini cope with it. Please note that I

  • CSV output of a sql query

    Hello All, I have a table named as 'product' having two columns prod_name and prod_status. Table Name: product prod_name prod_status bag A Pen A Pencil B Eraser C Paper A Now if I will write a query select prod_name from product where prod_status='A'

  • Dynamic Logon Screen and Dashboards

    Is there a way to dynamically display a different style on the logon screen and dashboards based on a condition in the warehouse? For example, if our load is running long, can we change the logon screen to display a graphic and text that states the l

  • Meta tag /search engine issue

    I am looking for a useful code on how to block a search engine from scanning and indexing a site. We have several small sites that when up and running will be indexed through all the search engines. 2 of the sites need to be customized for a regional

  • How can I burn songs in a certain order onto a cd?

    I want to burn a group of songs in a certain order onto a cd. ITunes seems to pick it's own order.