Wiki Issues?

Started by Josietta, December 13, 2011, 10:19:56 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Josietta

I tried to open up the wiki to change my avatar but its giving me some kind of coding instead. It was working fine for me yesterday (or maybe it was the day before). I'm wondering if this is an issue or if it is just me...

Spoiler: Click to Show/Hide
<?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-2010 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, Andrew Garrett, Raimond Spekking, Alexandre Emsenhuber
* Siebrand Mazeland, Chad Horohoe, Roan Kattouw 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
$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' );

# Set title from request parameters
$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( 'DisabledActions', $wgDisabledActions );
$mediaWiki->setVal( 'DisableHardRedirects', $wgDisableHardRedirects );
$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->performRequestForTitle( $wgTitle, $wgArticle, $wgOut, $wgUser, $wgRequest );
$mediaWiki->finalCleanup( $wgOut );

$mediaWiki->restInPeace();

      ❤️🧡💛💚💙💜🖤🤍💖                    ❤️🧡💛💚💙💜🖤🤍💖
                                 O.Os   / A.As / Ideas 
                           Warning:  Finicky Muse Ahead!


jouzinka

It shows for me too, Josi.

However
Quote$mediaWiki->restInPeace();
gave me a good giggle. XD
Story status: Not Available
Life Status: Just keep swimming...
Working on: N/A

olive




It does it for me too. Oh gosh, I hope it is fixed soon.

Josietta

Quote from: jouzinka on December 13, 2011, 10:27:03 AM
It shows for me too, Josi.

Howevergave me a good giggle. XD

Hehe.. yes.. that is worth a good chuckle  :D

Quote from: olive on December 13, 2011, 10:33:09 AM



It does it for me too. Oh gosh, I hope it is fixed soon.

I do too! I suppose I will just upload my avatar until then. :)

      ❤️🧡💛💚💙💜🖤🤍💖                    ❤️🧡💛💚💙💜🖤🤍💖
                                 O.Os   / A.As / Ideas 
                           Warning:  Finicky Muse Ahead!


NileGoddess

Oh great, I can't get to my wiki page either.

Aemirys

Do we know why this is occuring? I'm getting the same as well.
★  O/Os  ★  A/As  ★


Beguile's Mistress

I don't know what is causing the problem but it is being looked into.  We'll get an update as soon as something is known. :-)

Vekseid

Oops : /

What I get for trying to optimize while tired.

Sorry, fixed now.

jouzinka

Story status: Not Available
Life Status: Just keep swimming...
Working on: N/A

Josietta

Quote from: Vekseid on December 13, 2011, 03:46:51 PM
Oops : /

What I get for trying to optimize while tired.

Sorry, fixed now.

*giggles* S'all good darlin'!  :)  Try not to work too hard! We need your epicness!

      ❤️🧡💛💚💙💜🖤🤍💖                    ❤️🧡💛💚💙💜🖤🤍💖
                                 O.Os   / A.As / Ideas 
                           Warning:  Finicky Muse Ahead!



NileGoddess

Hmm, I'm still getting the string of code instead of the wiki page.

Josietta

Quote from: NileGoddess on December 14, 2011, 10:51:08 AM
Hmm, I'm still getting the string of code instead of the wiki page.

+1

Maybe he's still working on it?

      ❤️🧡💛💚💙💜🖤🤍💖                    ❤️🧡💛💚💙💜🖤🤍💖
                                 O.Os   / A.As / Ideas 
                           Warning:  Finicky Muse Ahead!


Vekseid

Quote from: NileGoddess on December 14, 2011, 10:51:08 AM
Hmm, I'm still getting the string of code instead of the wiki page.

On any page, or a specific page?

NileGoddess

I click the wiki link at the top of the page, and it just displays the coding. I use the link in my signature to go to my user profile page and I get the same thing.

olive

It's been working fine for me since it was fixed. I uploaded there today and just checked, again. So far so good.

Autumn Sativus

#16
I had that happen to. Refresh your page after you click the link, it seems to be keen on logging the broken page so that the fixed one doesn't show up.
Us against the world
Just a couple sinners making fun of hell


~~A&A(updated March 2021)~~Tales~~Wants~~O&O~~Wiki~~

Vekseid

Quote from: NileGoddess on December 14, 2011, 04:22:54 PM
I click the wiki link at the top of the page, and it just displays the coding. I use the link in my signature to go to my user profile page and I get the same thing.

shift+reload?

It shouldn't be caching...

NileGoddess

Ah okay, got it back up and running. Thanks!

Josietta

working on my end now..

      ❤️🧡💛💚💙💜🖤🤍💖                    ❤️🧡💛💚💙💜🖤🤍💖
                                 O.Os   / A.As / Ideas 
                           Warning:  Finicky Muse Ahead!


Haibane