> it seems like you're using the publicrenderserver. The above is the
> command which the server tried to run. --confighttp://localhost/wiki
> is wrong. check your $wgServer and $wgScriptPath variables or do not use
> the publicrenderserver (these are used to construct that url passed
> after --config).
Here's some of my configuration files. I thought I was using the
mwlib.cgi locally.
Thanks for looking at my issue :)
-----------------
LocalSettings.php
# Extension: Collection
require_once("$IP/extensions/Collection/Collection.php");
$wgCollectionMWServeURL = 'http://localhost/cgi-bin/mwlib.cgi';
$wgHTTPTimeout = 30;
$wgEnableAPI=true;
-----------------
mwlib.cgi
#! "D:\xampplite\python\python.exe"
"""This is the "CGI equivalent" of mw-serve. Adjust the configuration
variables
below and install this script as CGI script for your web server.
"""
# Configuration:
# Name of logfile or None if log output should go to stderr.
LOGFILE = None
#LOGFILE = 'D:/xampplite/python/log/mwlib.cgi.log'
# Cache directory. Must be writable.
CACHE_DIR = 'D:/xampplite/python/cache/mwlib/'
# (Path to) mw-render executable.
MWRENDER = 'D:/xampplite/python/Scripts/mw-render.exe'
# Logfile for mw-render.
MWRENDER_LOGFILE = 'D:/xampplite/python/log/mw-render.log'
# (Path to) mw-zip executable.
MWZIP = 'D:/xampplite/python/Scripts/mw-zip.exe'
# Logfile for mw-zip.
MWZIP_LOGFILE = 'D:/xampplite/python/log/mw-zip.log'
# (Path to) mw-post executable.
MWPOST = 'D:/xampplite/python/Scripts/mw-post.exe'
# Logfile for mw-post.
MWPOST_LOGFILE = 'D:/xampplite/python/log/mw-post.log'
# Queue directory for mw-watch or None if no queue should be used
QUEUE_DIR = None
#QUEUE_DIR = 'D:/xampplite/python/cache/mw-watch/q'
-------------------------
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"mwlib" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [email protected]
For more options, visit this group at http://groups.google.com/group/mwlib?hl=en
-~----------~----~----~----~------~----~------~--~---