Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Jake

Pages: 1 ... 4 5 [6]
101
NIWA Discussion / Re: Wiki Suggestions
« on: October 21, 2010, 07:34:56 PM »
I'm the admin of Animal Crossing Wiki. It appears a few of our MediaWiki files have been corrupted by another developer, but we're working as hard as we can to get the issues resolved. As WaddleDude has said, we need all the help we can get. I believe we need just a little over 100 articles to meet the requirement. :)

102
NIWA Discussion / Re: An independent Animal Crossing wiki has launched
« on: October 21, 2010, 07:30:58 PM »
EDIT: Important announcement for Animal Crossing Wiki staff members. Please read!

To the best of my knowledge we're running 1.15. This is the code in our index.php file:

Code: [Select]
<?php

/**
 * This is the main web entry point for MediaWiki.
 *
 * If you are reading this in your web browser, your server is probably
 * not configured correctly to run PHP applications!
 *
 * See the README, INSTALL, and UPGRADE files for basic setup instructions
 * and pointers to the online documentation.
 *
 * http://www.mediawiki.org/
 *
 * ----------
 *
 * Copyright (C) 2001-2009 Magnus Manske, Brion Vibber, Lee Daniel Crocker,
 * Tim Starling, Erik Möller, Gabriel Wicke, Ævar Arnfjörð Bjarmason,
 * Niklas Laxström, Domas Mituzas, Rob Church, Yuri Astrakhan, Aryeh Gregor,
 * Aaron Schulz and others.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 * http://www.gnu.org/copyleft/gpl.html
 *
 * @file
 */
 
# Initialise common code
$preIP dirname__FILE__ );
require_once( 
"$preIP/includes/WebStart.php" );

# Initialize MediaWiki base class
require_once( "$preIP/includes/Wiki.php" );
$mediaWiki = new MediaWiki();

wfProfileIn'main-misc-setup' );
OutputPage::setEncodings(); # Not really used yet

$maxLag $wgRequest->getVal'maxlag' );
if( !
is_null$maxLag ) && !$mediaWiki->checkMaxLag$maxLag ) ) {
exit;
}

# Query string fields
$action $wgRequest->getVal'action''view' );
$title $wgRequest->getVal'title' );

$wgTitle $mediaWiki->checkInitialQueries$title$action );
if( 
$wgTitle === NULL ) {
unset( $wgTitle );
}

wfProfileOut'main-misc-setup' );

#
# Send Ajax requests to the Ajax dispatcher.
#
if( $wgUseAjax && $action == 'ajax' ) {
require_once( $IP '/includes/AjaxDispatcher.php' );
$dispatcher = new AjaxDispatcher();
$dispatcher->performAction();
$mediaWiki->restInPeace();
exit;
}

if( 
$wgUseFileCache && isset( $wgTitle ) ) {
wfProfileIn'main-try-filecache' );
// Raw pages should handle cache control on their own,
// even when using file cache. This reduces hits from clients.
if( $action != 'raw' && HTMLFileCache::useFileCache() ) {
/* Try low-level file cache hit */
$cache = new HTMLFileCache$wgTitle$action );
if( $cache->isFileCacheGood/* Assume up to date */ ) ) {
/* Check incoming headers to see if client has this cached */
if( !$wgOut->checkLastModified$cache->fileCacheTime() ) ) {
$cache->loadFromFileCache();
}
# Do any stats increment/watchlist stuff
$wgArticle MediaWiki::articleFromTitle$wgTitle );
$wgArticle->viewUpdates();
# Tell $wgOut that output is taken care of
wfProfileOut'main-try-filecache' );
$mediaWiki->restInPeace();
exit;
}
}
wfProfileOut'main-try-filecache' );
}

# Setting global variables in mediaWiki
$mediaWiki->setVal'action'$action );
$mediaWiki->setVal'CommandLineMode'$wgCommandLineMode );
$mediaWiki->setVal'DisabledActions'$wgDisabledActions );
$mediaWiki->setVal'DisableHardRedirects'$wgDisableHardRedirects );
$mediaWiki->setVal'DisableInternalSearch'$wgDisableInternalSearch );
$mediaWiki->setVal'EnableCreativeCommonsRdf'$wgEnableCreativeCommonsRdf );
$mediaWiki->setVal'EnableDublinCoreRdf'$wgEnableDublinCoreRdf );
$mediaWiki->setVal'JobRunRate'$wgJobRunRate );
$mediaWiki->setVal'Server'$wgServer );
$mediaWiki->setVal'SquidMaxage'$wgSquidMaxage );
$mediaWiki->setVal'UseExternalEditor'$wgUseExternalEditor );
$mediaWiki->setVal'UsePathInfo'$wgUsePathInfo );

$mediaWiki->initialize$wgTitle$wgArticle$wgOut$wgUser$wgRequest );
$mediaWiki->finalCleanup$wgDeferredUpdateList$wgOut );

# Not sure when $wgPostCommitUpdateList gets set, so I keep this separate from finalCleanup
$mediaWiki->doUpdates$wgPostCommitUpdateList );

$mediaWiki->restInPeace();

Is it possible to just install the newest 1.16 release and use the existing database?

103
NIWA Discussion / Re: An independent Animal Crossing wiki has launched
« on: October 21, 2010, 01:36:57 AM »
Actually, I think we could use some help since I'm not very familiar with these MediaWiki errors. Below are the errors reported in the error_log that appear to be responsible for the 500 error on the main site. I've looked at both files referenced by the log, but even removing the header() functions does not stop the error. (Not that altering core files like that is ever a good idea. :P)

Any ideas?  :)
Code: [Select]
[19-Sep-2010 10:20:19] PHP Warning:  Cannot modify header information - headers already sent by (output started at /home/karrottc/nintendoverse/wiki/index.php:40) in /home/karrottc/nintendoverse/wiki/includes/WebResponse.php on line 16
[19-Sep-2010 10:20:19] PHP Warning:  Cannot modify header information - headers already sent by (output started at /home/karrottc/nintendoverse/wiki/index.php:40) in /home/karrottc/nintendoverse/wiki/includes/WebResponse.php on line 16
[19-Sep-2010 10:20:19] PHP Warning:  Cannot modify header information - headers already sent by (output started at /home/karrottc/nintendoverse/wiki/index.php:40) in /home/karrottc/nintendoverse/wiki/includes/WebResponse.php on line 16
[19-Sep-2010 10:20:19] PHP Warning:  Cannot modify header information - headers already sent by (output started at /home/karrottc/nintendoverse/wiki/index.php:40) in /home/karrottc/nintendoverse/wiki/includes/WebResponse.php on line 16
[19-Sep-2010 10:20:19] PHP Warning:  Cannot modify header information - headers already sent by (output started at /home/karrottc/nintendoverse/wiki/index.php:40) in /home/karrottc/nintendoverse/wiki/includes/WebResponse.php on line 16
[19-Sep-2010 10:20:19] PHP Warning:  Cannot modify header information - headers already sent by (output started at /home/karrottc/nintendoverse/wiki/index.php:40) in /home/karrottc/nintendoverse/wiki/includes/WebResponse.php on line 16
[19-Sep-2010 10:20:19] PHP Warning:  Cannot modify header information - headers already sent by (output started at /home/karrottc/nintendoverse/wiki/index.php:40) in /home/karrottc/nintendoverse/wiki/includes/WebResponse.php on line 16
[19-Sep-2010 10:20:19] PHP Warning:  Cannot modify header information - headers already sent by (output started at /home/karrottc/nintendoverse/wiki/index.php:40) in /home/karrottc/nintendoverse/wiki/includes/RawPage.php on line 157
[19-Sep-2010 10:20:19] PHP Warning:  Cannot modify header information - headers already sent by (output started at /home/karrottc/nintendoverse/wiki/index.php:40) in /home/karrottc/nintendoverse/wiki/includes/RawPage.php on line 160
[19-Sep-2010 10:20:19] PHP Warning:  Cannot modify header information - headers already sent by (output started at /home/karrottc/nintendoverse/wiki/index.php:40) in /home/karrottc/nintendoverse/wiki/includes/RawPage.php on line 157
[19-Sep-2010 10:20:19] PHP Warning:  Cannot modify header information - headers already sent by (output started at /home/karrottc/nintendoverse/wiki/index.php:40) in /home/karrottc/nintendoverse/wiki/includes/RawPage.php on line 160

104
NIWA Discussion / Re: An independent Animal Crossing wiki has launched
« on: October 20, 2010, 03:04:24 PM »
I just discovered the downtime today. It seems to be a 500 error. I'm checking the server logs and will correct the problem as soon as possible. :)

(The server is usually very reliable. This seems to be a software issue more than anything else. The main forum is working perfectly.)

105
NIWA Discussion / Re: Wars Wiki's newest Awesome feature
« on: October 09, 2010, 01:37:51 AM »
You never cease to amaze us Moydow!

106
NIWA Discussion / Re: Main Pages (Pimp 'em!)
« on: October 02, 2010, 08:59:29 PM »
It may be a good idea to wait for Steve to upload the skin, so we can work to blend the templates in with that.
Sounds like a plan! ;D

107
NIWA Discussion / Re: Main Pages (Pimp 'em!)
« on: October 01, 2010, 11:32:40 PM »
And no, I've not played any of the games, but hopefully that won't be a major obstacle.
I don't think it would be, since we have other users who haven't played the game but still find ways to contribute. I assume you'll be helping with templates and coding more than content anyway. Feel free to PM me here anytime if you have any questions. I'm always happy to answer them. :)

108
NIWA Discussion / Re: Main Pages (Pimp 'em!)
« on: October 01, 2010, 08:05:13 PM »
Animal Crossing Wiki, possibly needs even less. What they have is basic, yeah, but it flows nicely. I suppose a few apps on the page to give it a wiki feel would be good.
We're definitely looking to improve our home page. What we have up now actually has not changed since the beta before the wiki's release. I mean, who actually uses square corners anymore? :P

I'm not proficient in "wikiCode" just yet. I much prefer HTML and CSS. If there's anyone out there who would like to offer us a helping hand, please send me a quick PM and we'd be more than grateful for your services. We're really working our hardest to prepare ourselves for the day that we will be able to join NIWA, and having a great front page to match the others is a requirement in my mind.

Steve seems very interested in designing a skin for AC Wiki. In skype, he's been getting opinions from us on various AC textures. So I'm certain something awesome is in the works. And that app we discussed in the AC forums is so exciting. I'm not sure if I'll be at work all this weekend or just tonight, but I plan to look further into it and get the ball moving.

Have you guys met the great Moydow? He's a coding master imo. While working with him on the personalization templates at WiKirby, he managed to make it work before I could even finish a preview of tweaks in the sandbox! So if possible, I'd like to share the project with him. He, like me, may have never played an AC game, but might still be able to assist with core features like that.

Yes, I've provided Steve with FTP details so he can upload any style files he needs to. I can't wait to see what he can come up with. :D

I haven't spoken with Moydow directly but I have seen his work. (Which is very impressive.) If he's willing to help, I'd be glad to give him any permissions he needs on the wiki. We're about halfway to the 200 article requirement, so I'm very excited to monitor the wiki's progress over the coming weeks. Any and all help is always appreciated. :)

109
NIWA Discussion / Re: Main Pages (Pimp 'em!)
« on: October 01, 2010, 04:58:23 PM »
Animal Crossing Wiki, possibly needs even less. What they have is basic, yeah, but it flows nicely. I suppose a few apps on the page to give it a wiki feel would be good.
We're definitely looking to improve our home page. What we have up now actually has not changed since the beta before the wiki's release. I mean, who actually uses square corners anymore? :P

I'm not proficient in "wikiCode" just yet. I much prefer HTML and CSS. If there's anyone out there who would like to offer us a helping hand, please send me a quick PM and we'd be more than grateful for your services. We're really working our hardest to prepare ourselves for the day that we will be able to join NIWA, and having a great front page to match the others is a requirement in my mind.

110
NIWA Discussion / Re: An independent Animal Crossing wiki has launched
« on: September 02, 2010, 11:38:15 PM »
Just as a quick status update, we're up to 56 articles as of the time of this post. We've been spreading word across multiple Animal Crossing sites in addition to our own, and we expect to see a rush of visitors when the new game comes out next year. I'd also like to say thanks to any NIWA members who are participating over at the wiki; we couldn't be more thrilled!

I'd also like to say that we're looking for some experienced wiki admins to help us out. We've set up a special wiki staff forum on our site for internal discussions, so if you're interested in helping out just register and then send us a message. (You don't actually need to participate on the forums, but registering is the only way to gain access to the private wiki forum.)

Thanks again everyone! :)

111
NIWA Discussion / Re: An independent Animal Crossing wiki has launched
« on: August 19, 2010, 03:53:32 PM »
Hello. I'm the admin of Animal Crossing Forums and now Animal Crossing Wiki. We look forward to working with the NIWA community to build our wiki, and we appreciate any help from those familiar with the series. We've got several site members who are eager to participate as well, and our logos are a result of a contest that many participated in. We have a goal of 200 articles, which is helping to push our members to contribute.

If there's anything you notice that we're doing incorrectly or if you have any general suggestions, please let me know right away. :)

112
Mario / Re: Paper Mario 3DS!!!
« on: August 19, 2010, 03:50:44 PM »
I've been waiting for this forever, so I can't wait!

Pages: 1 ... 4 5 [6]