Generating Blog Content with Leopard Wiki Server Broken

Hi, I am trying to follow this apple developer article
http://developer.apple.com/library/mac/#featuredarticles/BlogWikiServer/
For the most part the article is correct until I try to post using the provided ruby script.
putting the script in debug -w
I get this tell tale sign something has changed.
`http_request': Your authorization was rejected (Atom::Unauthorized)
I tested the wiki by setting no authentication and the post worked fine, soon as I turn it back to auth users only it stalls.
Any Ruby Gurus know why this isn't working ??
Thanks for any help.
here's the script to save you following the link.
#!/usr/bin/ruby
require 'rubygems'
require 'atom/entry'
require 'atom/collection'
wikiuri = "http://www.example.com/groups/samplewiki/wiki"
wikibase = "http://www.example.com/groups/samplewiki/wiki/index.atom"
entry = Atom::Entry.new
entry.title = "Another remote entry"
entry.updated = Time.now.httpdate
entry.updated!
author = Atom::Author.new
author.name = "Example User"
author.uri = wikiuri
entry.authors << author
entry.content = "Some sort of content"
h = Atom::HTTP.new
h.user = "example"
h.pass = "example"
c = Atom::Collection.new(wikibase,h)
res = c.post! entry

the answer is here.
http://discussions.apple.com/thread.jspa?threadID=2672991

Similar Messages

  • Wiki Server content with spaces in URL broken after 10.6.5 update

    Any content posted to Wiki Server prior to the upgrade that included a space in the title (escaped in the URL as %20) will not play. It gives the "broken Quicktime movie" icon. New video uploaded via the exact same workflow will work. However, the new URL no longer escapes with "%20" but rather with a "+". I recommend not upgrading to 10.6.5 at the moment.

    It looks like you can restore function by changing %20 to a space, per:
    http://discussions.apple.com/thread.jspa?messageID=12572029
    This will not be fun. There needs to be a fix for this!
    Charles

  • Can't delete a blog comment from Lion Wiki Server 3

    Started the Wiki Server on my Lion Server today and as a test I added a test comment to a blog.  After I saved it I wanted to see if I could edit, change the content or just delete the comment outright.  The answer to all three is that I can't.  I am logged in as the owner the wiki and the administrator for the server.  I looked at the documentation and it appears that I should be able to do all three, but no luck.  Any help would be apprciated.
    M

    You'll get a lot more help if you go to the Lion Server forum. The folks here mainly know about the client OS.

  • Can't get the INNODB storage engine to start with Leopard MySQL server...

    As shipped by apple. In the /etc/my.cnf file it says to just uncomment the stuff related to innodb and all will be well. I did that, restarted the Mysql server and when I take a look at the available storage engines using phpmyadmin, innodb is turned off...
    The following SQL runs:
    CREATE TABLE `Puzzles` (
    `id` int(10) unsigned NOT NULL auto_increment,
    `initialState` char(81) NOT NULL default '',
    `solution` char(81) NOT NULL default '',
    `levelOfDifficulty` int(11) NOT NULL default '5',
    `numberOfClues` smallint(5) unsigned NOT NULL default '0',
    PRIMARY KEY (`id`),
    UNIQUE KEY `initialState` (`initialState`),
    KEY `levelOfDifficulty` (`levelOfDifficulty`),
    KEY `numberOfClues` (`numberOfClues`)
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=780 ;
    But when I look at the table, it's a MyIsam table.
    Heres the innodb part of the /etc/my.cnf file:
    # Uncomment the following if you are using InnoDB tables
    innodbdata_homedir = /var/mysql/
    innodbdata_filepath = ibdata1:2000M;ibdata2:10M:autoextend
    innodblog_group_homedir = /var/mysql/
    innodblog_archdir = /var/mysql/
    # You can set ..buffer_poolsize up to 50 - 80 %
    # of RAM but beware of setting memory usage too high
    innodbbuffer_poolsize = 384M
    innodbadditional_mem_poolsize = 20M
    # Set ..log_filesize to 25 % of buffer pool size
    innodblog_filesize = 100M
    innodblog_buffersize = 8M
    innodbflush_log_at_trxcommit = 1
    innodblock_waittimeout = 50
    No errors in the logs visible through Server Admin. Did Apple put the MySQL configuration files somewhere non-standard and leave the /etc/my.cnf file around to fool us?
    Any pointers will be helpful or should I just build the fink package and give up on the shipped Leopard package (so far I'm not too impressed with Leopard).
    Best,
    Dick Munroe

    The problem turned out to be the sizes of the INNODB log and data files. Apparently, the initial startup of MySQL causes these files to be built. The numbers that you uncomment in the my.cnf file aren't related in any way to these sizes and the innodb storage engine won't start unless they match. Stop the server, delete the files, and restart the server and you're off and running. The logs on Leopard Server have NO indication that this has occurred. I found the problem by installing the Mac OS kit from mysql.com and looking in those logs. Interesting question is why that information is missing from the log for Leopard Server when the information is clearly available (as show by running the mysql server).
    Best,
    Dick Munroe

  • Safari 3.0.4 (Leopard) & Proxy server = Broken.

    I have noticed that Safari no longer works properly with our Proxy server.
    We have a server that stores a Proxy configuration file. The PAC file is used by all our PCs and Macs. They refer to it for Web browsing proxy info. With 10.4 and earlier, the PAC/Proxy server worked fine. Users would authenticate 1 time per web session. Now, Mac users have to constantly re-authenticate all the time in order to surf the Web. Adding the Proxy password to the user's Keychain doesn't help either. Users are still prompted to authenticate again regardless if the Keychain has the users password saved or not.
    Firefox works fine once it is setup with the required Proxy information (Firefox doesn't use Apple's global system-wide Proxy server settings and must be setup manually one time)

    well, the developer seems to have updated this for 10.5 and my SIMBL folder is in the right place, etc.
    Just as a test, I tried uninstalling SIMBL and SafariStand and reinstalling.
    Still having the same problem of crashing when loading a page with embedded flash.
    Strange thing is, when I check "Load Plug-in Manually" in the Stand preferences, it seems to work somewhat.
    I can navigate to pages with embedded flash and a gray box appears that says "Plugin - click to load".
    If I click it, the flash loads and plays, no problems or crashing.
    It is just kind of annoying to have to do it this way.
    As it's all I use Stand for, is there any other way to get a "new tab" button in Safari under Leopard?
    I had it using the Beta, but can't remember how I got it.
    Thanks.

  • Generating XML content with SAX including schema reference

    Hi all, XML newbie question here.
    I'm trying to generate an XML document from a certain file format using SAX, but I can't figure out how to get the generated XML document to include a schema reference.
    Here's the code, it's taken from posts on this forum, so it should be familiar:
    StreamResult streamResult = new StreamResult(out);
            SAXTransformerFactory tf = (SAXTransformerFactory) SAXTransformerFactory.newInstance();
            try {
                TransformerHandler hd = tf.newTransformerHandler();
                Transformer serializer = hd.getTransformer();
                serializer.setOutputProperty(OutputKeys.ENCODING, "ISO-8859-1");
                serializer.setOutputProperty(OutputKeys.INDENT, "yes");
                hd.setResult(streamResult);
                hd.startDocument();
                AttributesImpl atts = new AttributesImpl();
                hd.startElement("http://maul.ddm.apm.bpm.eds.com", "DTR_XML", "DTR_XML", atts);
                hd.endElement("http://maul.ddm.apm.bpm.eds.com", "DTR_XML", "DTR_XML");
                hd.endDocument();
            } catch (SAXException e) {
                e.printStackTrace();
            } catch (TransformerConfigurationException e) {
                e.printStackTrace();
            }Here's the output I get:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <DTR_XML/>
    And I'm looking for output like this (I think - basically I have this dtr_xml.xsd located at the root web directory on http://maul.ddm.apm.bpm.eds.com and I want the generated XML file to reference that schema for validation when parsing):
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <DTR_XML xmlns="http://maul.ddm.apm.bpm.eds.com"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maul.ddm.apm.bpm.eds.com dtr_xml.xsd"/>

    Yes, you've led me along the right track with the attributes stuff. Here's what I've got right now...
    StreamResult streamResult = new StreamResult(out);
            SAXTransformerFactory tf = (SAXTransformerFactory) SAXTransformerFactory.newInstance();
            try {
                TransformerHandler hd = tf.newTransformerHandler();
                Transformer serializer = hd.getTransformer();
                serializer.setOutputProperty(OutputKeys.ENCODING, "ISO-8859-1");
                serializer.setOutputProperty(OutputKeys.INDENT, "yes");
                hd.setResult(streamResult);
                hd.startDocument();
                AttributesImpl atts = new AttributesImpl();
                atts.addAttribute("", "xmlns", "xmlns", "CDATA", "http://maul.ddm.apm.bpm.eds.com");
                atts.addAttribute("", "xsi", "xmlns:xsi", "CDATA", "http://www.w3.org/2001/XMLSchema-instance");
                atts.addAttribute("", "schemaLocation", "xsi:schemaLocation", "CDATA", "http://maul.ddm.apm.bpm.eds.com dtr_xml.xsd");
                hd.startElement("", "DTR_XML", "DTR_XML", atts);
                hd.endElement("", "DTR_XML", "DTR_XML");
                hd.endDocument();
            } catch (SAXException e) {
                e.printStackTrace();
            } catch (TransformerConfigurationException e) {
                e.printStackTrace();
            }This produces the output I wanted earlier...
    As for the org.xml.sax.helpers.NamespaceSupport, I can't seem to find any documentation on using it anywhere, and the javadoc is cryptic to me. Maybe it's used internally in SAX for tracking namespaces or something like that.
    Another interesting thing to me is that if I use the code you gave:
    atts.addAttribute("http://www.w3.org/2001/XMLSchema-instance", "schemaLocation",
         "xsi:schemaLocation", "CDATA", "http://maul.ddm.apm.bpm.eds.com dtr_xml.xsd");I don't see "http://www.w3.org/2001/XMLSchema-instance" anywhere in the output. Is SAX ignoring the namespace uri argument? It appears so. The javadoc states that the uri argument is "The Namespace URI, or the empty string if none is available or Namespace processing is not being performed." It would appear that Namespace processing is not being done... but I don't know how to turn it on.

  • Error starting wiki server in Mac Mini server with Mountain Lion 10.8.3

    Hi, i've got a problem with my wiki server.
    The service doesn't start!
    It does an error while i try to start the wiki!
    The service can't read the service impostation!
    How can i solve it??
    Anyone with the same problem??
    Thanks!

    here the /var/log/apache2/error_log
    [Fri Jun 28 10:35:46 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:35:46 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8090 (localhost) failed
    [Fri Jun 28 10:35:46 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:35:51 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8090 (localhost) failed
    [Fri Jun 28 10:35:51 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:35:51 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8091 (localhost) failed
    [Fri Jun 28 10:35:51 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:35:51 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8092 (localhost) failed
    [Fri Jun 28 10:35:51 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:35:51 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8093 (localhost) failed
    [Fri Jun 28 10:35:51 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:35:56 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8093 (localhost) failed
    [Fri Jun 28 10:35:56 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:35:56 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8092 (localhost) failed
    [Fri Jun 28 10:35:56 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:35:56 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8091 (localhost) failed
    [Fri Jun 28 10:35:56 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:35:56 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8090 (localhost) failed
    [Fri Jun 28 10:35:56 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:01 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8090 (localhost) failed
    [Fri Jun 28 10:36:01 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:01 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8091 (localhost) failed
    [Fri Jun 28 10:36:01 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:01 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8092 (localhost) failed
    [Fri Jun 28 10:36:01 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:01 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8093 (localhost) failed
    [Fri Jun 28 10:36:01 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:06 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8093 (localhost) failed
    [Fri Jun 28 10:36:06 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:06 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8092 (localhost) failed
    [Fri Jun 28 10:36:06 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:06 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8091 (localhost) failed
    [Fri Jun 28 10:36:06 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:06 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8090 (localhost) failed
    [Fri Jun 28 10:36:06 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:11 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8090 (localhost) failed
    [Fri Jun 28 10:36:11 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:11 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8091 (localhost) failed
    [Fri Jun 28 10:36:11 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:11 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8092 (localhost) failed
    [Fri Jun 28 10:36:11 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:11 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8093 (localhost) failed
    [Fri Jun 28 10:36:11 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:16 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8093 (localhost) failed
    [Fri Jun 28 10:36:16 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:16 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8092 (localhost) failed
    [Fri Jun 28 10:36:16 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:16 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8091 (localhost) failed
    [Fri Jun 28 10:36:16 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:16 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8090 (localhost) failed
    [Fri Jun 28 10:36:16 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:21 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8090 (localhost) failed
    [Fri Jun 28 10:36:21 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:21 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8091 (localhost) failed
    [Fri Jun 28 10:36:21 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:21 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8092 (localhost) failed
    [Fri Jun 28 10:36:21 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:21 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8093 (localhost) failed
    [Fri Jun 28 10:36:21 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:26 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8093 (localhost) failed
    [Fri Jun 28 10:36:26 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:26 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8092 (localhost) failed
    [Fri Jun 28 10:36:26 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:26 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8091 (localhost) failed
    [Fri Jun 28 10:36:26 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:26 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8090 (localhost) failed
    [Fri Jun 28 10:36:26 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:28 2013] [notice] caught SIGTERM, shutting down
    httpd: Could not reliably determine the server's fully qualified domain name, using server.local for ServerName
    [Fri Jun 28 10:36:31 2013] [notice] FastCGI: process manager initialized (pid 145)
    [Fri Jun 28 10:36:31 2013] [notice] Apache/2.2.22 (Unix) DAV/2 mod_fastcgi/2.4.6 mod_ssl/2.2.22 OpenSSL/0.9.8r configured -- resuming normal operations
    [Fri Jun 28 10:36:32 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8090 (localhost) failed
    [Fri Jun 28 10:36:32 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:32 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8091 (localhost) failed
    [Fri Jun 28 10:36:32 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:32 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8092 (localhost) failed
    [Fri Jun 28 10:36:32 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:32 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8093 (localhost) failed
    [Fri Jun 28 10:36:32 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:32 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8093 (localhost) failed
    [Fri Jun 28 10:36:32 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:32 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8092 (localhost) failed
    [Fri Jun 28 10:36:32 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:32 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8091 (localhost) failed
    [Fri Jun 28 10:36:32 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:32 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8090 (localhost) failed
    [Fri Jun 28 10:36:32 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:33 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8090 (localhost) failed
    [Fri Jun 28 10:36:33 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:33 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8091 (localhost) failed
    [Fri Jun 28 10:36:33 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:33 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8092 (localhost) failed
    [Fri Jun 28 10:36:33 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:33 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8093 (localhost) failed
    [Fri Jun 28 10:36:33 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 10:36:36 2013] [notice] caught SIGTERM, shutting down
    httpd: Could not reliably determine the server's fully qualified domain name, using server.local for ServerName
    [Fri Jun 28 10:36:39 2013] [notice] FastCGI: process manager initialized (pid 196)
    [Fri Jun 28 10:36:39 2013] [notice] Apache/2.2.22 (Unix) DAV/2 mod_fastcgi/2.4.6 mod_ssl/2.2.22 OpenSSL/0.9.8r configured -- resuming normal operations
    [Fri Jun 28 10:37:25 2013] [notice] caught SIGTERM, shutting down
    [Fri Jun 28 10:37:38 2013] [crit] (17)File exists: mod_rewrite: Parent could not create RewriteLock file /var/log/apache2/rewrite.lock
    Configuration Failed
    httpd: Could not reliably determine the server's fully qualified domain name, using server.local for ServerName
    [Fri Jun 28 10:37:48 2013] [notice] FastCGI: process manager initialized (pid 432)
    [Fri Jun 28 10:37:48 2013] [notice] Apache/2.2.22 (Unix) DAV/2 mod_fastcgi/2.4.6 mod_ssl/2.2.22 OpenSSL/0.9.8r configured -- resuming normal operations
    [Fri Jun 28 16:28:22 2013] [notice] caught SIGTERM, shutting down
    httpd: Could not reliably determine the server's fully qualified domain name, using server.local for ServerName
    [Fri Jun 28 16:28:26 2013] [notice] FastCGI: process manager initialized (pid 31415)
    [Fri Jun 28 16:28:26 2013] [notice] Apache/2.2.22 (Unix) DAV/2 mod_fastcgi/2.4.6 mod_ssl/2.2.22 OpenSSL/0.9.8r configured -- resuming normal operations
    [Fri Jun 28 16:28:26 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8090 (localhost) failed
    [Fri Jun 28 16:28:26 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 16:28:26 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8091 (localhost) failed
    [Fri Jun 28 16:28:26 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 16:28:26 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8092 (localhost) failed
    [Fri Jun 28 16:28:26 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 16:28:26 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8093 (localhost) failed
    [Fri Jun 28 16:28:26 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 16:28:26 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8093 (localhost) failed
    [Fri Jun 28 16:28:26 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 16:28:26 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8092 (localhost) failed
    [Fri Jun 28 16:28:26 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 16:28:26 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8091 (localhost) failed
    [Fri Jun 28 16:28:26 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 16:28:26 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8090 (localhost) failed
    [Fri Jun 28 16:28:26 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 16:28:27 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8090 (localhost) failed
    [Fri Jun 28 16:28:27 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 16:28:27 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8091 (localhost) failed
    [Fri Jun 28 16:28:27 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 16:28:27 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8092 (localhost) failed
    [Fri Jun 28 16:28:27 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 16:28:27 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8093 (localhost) failed
    [Fri Jun 28 16:28:27 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 16:28:30 2013] [notice] caught SIGTERM, shutting down
    httpd: Could not reliably determine the server's fully qualified domain name, using server.local for ServerName
    [Fri Jun 28 16:28:33 2013] [notice] FastCGI: process manager initialized (pid 31466)
    [Fri Jun 28 16:28:33 2013] [notice] Apache/2.2.22 (Unix) DAV/2 mod_fastcgi/2.4.6 mod_ssl/2.2.22 OpenSSL/0.9.8r configured -- resuming normal operations
    [Fri Jun 28 16:43:46 2013] [notice] caught SIGTERM, shutting down
    httpd: Could not reliably determine the server's fully qualified domain name, using server.local for ServerName
    [Fri Jun 28 16:43:49 2013] [notice] FastCGI: process manager initialized (pid 33283)
    [Fri Jun 28 16:43:49 2013] [notice] Apache/2.2.22 (Unix) DAV/2 mod_fastcgi/2.4.6 mod_ssl/2.2.22 OpenSSL/0.9.8r configured -- resuming normal operations
    [Fri Jun 28 16:43:51 2013] [notice] caught SIGTERM, shutting down
    httpd: Could not reliably determine the server's fully qualified domain name, using server.local for ServerName
    [Fri Jun 28 16:43:55 2013] [notice] FastCGI: process manager initialized (pid 33322)
    [Fri Jun 28 16:43:55 2013] [notice] Apache/2.2.22 (Unix) DAV/2 mod_fastcgi/2.4.6 mod_ssl/2.2.22 OpenSSL/0.9.8r configured -- resuming normal operations
    [Fri Jun 28 16:44:41 2013] [notice] caught SIGTERM, shutting down
    httpd: Could not reliably determine the server's fully qualified domain name, using server.local for ServerName
    [Fri Jun 28 16:44:44 2013] [notice] FastCGI: process manager initialized (pid 33499)
    [Fri Jun 28 16:44:44 2013] [notice] Apache/2.2.22 (Unix) DAV/2 mod_fastcgi/2.4.6 mod_ssl/2.2.22 OpenSSL/0.9.8r configured -- resuming normal operations
    [Fri Jun 28 16:44:45 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8090 (localhost) failed
    [Fri Jun 28 16:44:45 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 16:44:45 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8091 (localhost) failed
    [Fri Jun 28 16:44:45 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 16:44:45 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8092 (localhost) failed
    [Fri Jun 28 16:44:45 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 16:44:45 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8093 (localhost) failed
    [Fri Jun 28 16:44:45 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 16:44:45 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8093 (localhost) failed
    [Fri Jun 28 16:44:45 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 16:44:45 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8092 (localhost) failed
    [Fri Jun 28 16:44:45 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 16:44:45 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8091 (localhost) failed
    [Fri Jun 28 16:44:45 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 16:44:45 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8090 (localhost) failed
    [Fri Jun 28 16:44:45 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 16:44:46 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8090 (localhost) failed
    [Fri Jun 28 16:44:46 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 16:44:46 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8091 (localhost) failed
    [Fri Jun 28 16:44:46 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 16:44:46 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8092 (localhost) failed
    [Fri Jun 28 16:44:46 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 16:44:46 2013] [error] (61)Connection refused: proxy: HTTP: attempt to connect to [fe80::1]:8093 (localhost) failed
    [Fri Jun 28 16:44:46 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri Jun 28 16:44:49 2013] [notice] caught SIGTERM, shutting down
    httpd: Could not reliably determine the server's fully qualified domain name, using server.local for ServerName
    [Fri Jun 28 16:44:52 2013] [notice] FastCGI: process manager initialized (pid 33579)
    [Fri Jun 28 16:44:52 2013] [notice] Apache/2.2.22 (Unix) DAV/2 mod_fastcgi/2.4.6 mod_ssl/2.2.22 OpenSSL/0.9.8r configured -- resuming normal operations

  • How to create a sitemap for Apple Wiki server?

    Since the content of a Wiki server is very dynamic, can the server generate a site map automatically?
    If I manually created a sitemap, where should I put it so that it will show up in the root of my site?

    I have created a DSN in a web server (a Public IP machine) that is mapped to a Oracle DB.
    In my Excel using VBA coding, with the help of RDO object I will call the DSN in the Web server using the connection string like "DSN=ORS;UID=SDATA;PWD=SDATA;"
    This is working fine and in this case the client machine doesn't need Oracle client to be installed or any TNS entry.
    The user can run the Excel report by clicking a button and the click event connects the DSN in the web server (through its URL) and routes to the mapped DB and fetches the quried data.
    Please note that the above DSN is created based on Microsoft ODBC for Oracle driver.
    But the issue is using the Microsoft ODBC for Oracle driver I couldnt call the SP with Ref Cursor.
    When I searched in Internet I came to know using the provider oraoledb.oracle we can call SP that uses REF CURSOR.
    Now my question is what is the driver name that I can use to create a DSN to make use of the provider oraoledb.oracle for calling the SP with REF CURSOR from Excel VBA coding ?
    Appreciate your prompt reply.
    Thanks & Regards,
    Sathish

  • 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

  • Can't log in to wiki server

    Everything was working fine with my wiki web site a couple of days ago.  This morning when I tried to log in, I couldn't.
    I can get to the main wiki page: https://tewiki.trilleng.com but when I click on "My Pages" or "Wikis" or "Blogs" and try to log in, it just shakes it's little square head "no."
    I tried to log in at 02:35:32. Here are some log entries at that time:
    tail -f /var/log/apache2/error_log.132390*
    [Sat Dec 17 01:42:19 2011] [warn] RSA server certificate CommonName (CN) `trilleng' does NOT match server name!?
    [Sat Dec 17 01:42:19 2011] [warn] RSA server certificate CommonName (CN) `trilleng' does NOT match server name!?
    [Sat Dec 17 02:27:49 2011] [error] [client 66.249.66.46] File does not exist: /Library/WebServer/Documents/robots.txt
    [Sat Dec 17 02:35:32 2011] [error] (61)Connection refused: proxy: HTTP: attempt to connect to 127.0.0.1:8171 (*) failed
    tail -f /var/log/system.log
    Dec 17 02:32:10 tewiki /System/Library/CoreServices/CCacheServer.app/Contents/MacOS/CCacheServer[7965] : No valid tickets, timing out
    Dec 17 02:33:48 tewiki login[8362]: USER_PROCESS: 8362 ttys003
    Dec 17 02:37:06 tewiki org.clamav.clamd[58]: SelfCheck: Database status OK.
    This isn't much information to go on. Where else can I look to get this sorted?
    Thanks!
    Luis

    Found and fixed the problem.
    In the file /Library/Logs/wikid/error.log was this:
    exceptions.IOError: [Errno 13] Permission denied: '/Library/Application Support/Apple/WikiServer/entityList.plist'
    I checked the WikiServer directory and the files there were owned by user:group root:admin.  They're supposed to be owned by _teamsserver:_teamsserver so I did a chown on that whole directory:
    sudo chown -R _teamsserver:_teamsserver WikiServer
    After that I was able to authenticate with my wiki server.
    I wonder if I can give myself 10 points for providing the correct answer.  :-)

  • 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

  • Mysql plugin for wiki-server.

    I am just learning about the wiki-server. I would like to create a "plugin" that reads and then displays data from a mysql table. Is this possible with the wiki-server software?
    thanks
    Richard Piper

    Anthony,
    If there is a better way than iframe, I would be interested to find it. In the meantime I'm doing something as simple as putting the following plist in
    /Library/Application Support/Apple/WikiServer/
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN"
    "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>protocols</key>
    <array>
    <string>help</string>
    <string>file</string>
    </array>
    <key>styles</key>
    <array>
    <string>background-color</string>
    </array>
    <key>tags</key>
    <dict>
    <key>all</key>
    <array>
    <string>style</string>
    </array>
    <key>iframe</key>
    <array>
    <string>src</string>
    <string>width</string>
    <string>height</string>
    <string>margin</string>
    <string>frameborder</string>
    <string>scrolling</string>
    </array>
    </dict>
    </dict>
    </plist>
    and restarting Apache2 with SA.
    I note that in 10.5.3 permissions are root -rw _teamsserver -r world -r. The reference I followed was at the end of
    http://discussions.apple.com/thread.jspa?messageID=5904721&#5904721.
    This allows you to enter an html item in a wiki page similar to and gives scrolling on the page if its content is larger than the window:
    <iframe src="http://example.com/webapp" width="500" height="300"></iframe>
    Let me know if you find a better solution.
    Regards,
    Harry

  • Login require for entire wiki server

    Is it possible to secure the entire wiki server, require user authentication to access any content on the wiki server (home, people,documents...)?

    Does anyone not have this problem? I'm wondering if it's a Kerberos thing.

  • Wiki Server support on Mac Mini with Snow Leopard?

    Hi
    I am considering buying Mac Mini with Snow Leopard server. Before that, I want to know about wiki server 2 capabilities. Wiki Server 2 page says following:
    "Mac OS X Server makes it easy for groups to collaborate and communicate through their own wiki-powered intranet website complete with group calendar, blog, and mailing list"
    I am planning to setup wiki server for a small group of users over Internet (and not intranet) to exchange information and so it should look something like wiki.mydomain.com with login capabilities for user(and again, this is over internet).
    My Question: Can wiki server 2 work with web server to support above (or similar) setup?
    If not, what can be done to support above setup?
    Response appreciated.
    Thanks in Advance.

    Michael Maslen wrote:
    Jason, what is your source of information that this is a supported configuration?
    I work at Apple. Thats why I have the !http://discussions.apple.com/images/status/apple_employee-16x16.gif! logo below my username.
    The new Mac mini comes in three different configurations, two of those have the standard version of Snow Leopard.
    There is an article that addresses issues similar to this here: http://support.apple.com/kb/HT2186, but switching from Snow Leopard Server to Snow Leopard is not like trying to install Tiger when the Mac mini came with Snow Leopard.
    You can also verify this by contacting an Apple specialist at: 1-800-MY-APPLE or call U.S. iPod and Mac technical support at: 1-800-APL-CARE (1-800-275-2273).
    -Jason

  • Export/Import Process in the UI for Variations Content Translation is Generating CMP Files with No XML

    We have a SharePoint 2010 Publishing Website that uses variations to deliver contain to multiple languages. We are using a third-party translation company to translate publishing pages. The pages are
    exported using the  export/import using the UI process described here: "http://blogs.technet.com/b/stefan_gossner/archive/2011/12/02/sharepoint-variations-the-complete-guide-part-16-translation-support.aspx".
    Certain sub-sites are extremely content-intensive. They may contain many items in the Pages library as well as lists and other sub-sites. 
    For some sub-sites (not all), the exported CMP file contains no XML files. There should be a Manifest.XML, Requirements.XML, ExportSettings.XML, etc., but there are none. After renaming the CMP file
    to CAB and extracting it, the only files it contains are DAT files.
    The only difference I can see between the sub-sites that generate CMP files with no XML files is size. For example, there is one site that is 114 MB that produces a CMP file with no XML files. Small
    sites do not have this problem. If size is the problem, then I would think the process would generate an error instead of creating a single CMP file that contains only DAT files. However, I do not know exactly what the Export/Import Process in the UI is doing.
    This leads to two questions:
    1.
    Does anyone know why some CMP files, when renamed to *.CAB and extracted, would not contain the necessary XML files?
    2. Second, if exporting using the UI will not work, can I use PowerShell? I have tried the Export-SPWeb, but the Manifest.XML does not contain translatable
    content. I have not found any parameters that I can use with Export-SPWeb to cause the exported CMP to be in the same format as the one produced by the Export/Import process in the UI.
    As a next step, we could try developing custom code using the Publishing Service, but before doing this, I would like to understand why the Export/Import process in the UI generates a CMP that
    contains no XML files.
    If no one can answer this question, I would appreciate just some general help on understanding exactly what is happening with the Export/Import Process -- that is, the one that runs when you select
    the export or import option in the Site Manager drop down. Understanding what it is actually doing will help us troubleshoot why there are no XML files in certain export CMPs and assist with determining an alternate approach.
    Thanks in advance
    Kim Ryan, SharePoint Consultant kim.ryan@[no spam]pa-tech.com

    I wanted to bump this post to see about getting some more responses to your problem. I'm running into the same problem as well. We're running a SharePoint 2010 site and are looking at adding variations now. The two subsites with the most content take a
    while to generate the .cmp file (one to two minutes of the browser loading bar spinning waiting on the file). Both files are generated with a lot of .dat files but no .xml files. I was thinking like you that it must be a size issue. Not sure though. Did you
    ever happen to find a solution to this problem?

Maybe you are looking for

  • OEPE 12.1.3.3.1 Installation Error : Missing requirement

    Hi, I got error while installing OEPE 12.1.3.3.1 on Eclipse Luna SR1 (4.4.1) with WTP 3.6.2. Am I missing something in order to install OEPE? Below are the errors : Cannot complete the install because one or more required items could not be found.  

  • How to share the same Database Connection when using several Task Flows ?

    Hi All, I'm using JDev 11.1.1.3.0. I'm developing ADF Fusion Applications (ABC BC, ADF Faces-) These applications are deployed on a Weblogic server. Each application has only one Application Module. All Application Modules have the same connection ty

  • Query regarding Level Based Measure on Reports

    Hi All, I am facing an issue in OBIEE while using aggregate measures. Scenario My Report has the following columns. There is security applied on the report ie an Employee who logs in gets to see only his/her data. 1) Employee 2) Month 3) Monthly Sale

  • 802.1x EAP-PEAP - Radius Question

    We're going to be deploying a wireless solution to a customer at some point shortly. So far we have a WLC 2500 Series, 1140 LAPs, and a 2960-S switch. We're going to have Windows 7, iPhone, iPAD devices, and I was going to implement 802.1x EAP-PEAP.

  • Itunes causes Microsoft Visual C++ Runtime Error at Vista Startup

    I installed Itunes version 8.1.1 and Quicktime on my Toshiba laptop with Vista. The installation went in correctly and Itunes found my music library. However, when i rebooted the system, i get a Microsoft Visual C++ Runtime Error Library error messag