View previous topic :: View next topic |
Author |
Message |
-=GGW=- $ol!d $n4>|e Veteran
Joined: 12 Apr 2004 Posts: 1616 Location: USA
|
Posted: Thu Feb 15, 2007 6:33 pm Post subject: custom LocalSettings.php for mediawiki bieng ignored? |
|
|
I have the latest mediawiki, and for some reason, whenever i edit a settings in LocalSettings.php myself, the change gets ignored, I know it is reading it because if i get the syntax wrong i get a big warning, but besides that nothign changes to the logo appears default no-matter what, my user restrictions don't allow any change, and theres an error that says i should set
$wgShowError = true;
I'n order to see what error it was, but it never seems to notice i have it set.
|
|
Back to top |
|
|
Dan Veteran
Joined: 25 Oct 2005 Posts: 1302
|
Posted: Thu Feb 15, 2007 6:43 pm Post subject: |
|
|
have you tried setting
Code: | error_reporting = E_ALL | in php.ini to reveal anything? _________________ - Failure is not an option. It's bundled with your software. |
|
Back to top |
|
|
-=GGW=- $ol!d $n4>|e Veteran
Joined: 12 Apr 2004 Posts: 1616 Location: USA
|
Posted: Tue Feb 20, 2007 3:43 am Post subject: |
|
|
hmm, i moved it down to the end of the file and now it registers, the error is
Quote: |
Utf8Case.ser is missing, please run "make" in the serialized directory
Backtrace:
#0 /var/www/fuag.com/htdocs/mediawiki/languages/Language.php(972): Language::getCaseMaps()
#1 /var/www/fuag.com/htdocs/mediawiki/includes/SearchUpdate.php(51): Language->stripForSearch('This will be an...')
#2 /var/www/fuag.com/htdocs/mediawiki/includes/Wiki.php(295): SearchUpdate->doUpdate()
#3 /var/www/fuag.com/htdocs/mediawiki/includes/Wiki.php(277): MediaWiki->doUpdates(Array)
#4 /var/www/fuag.com/htdocs/mediawiki/index.php(49): MediaWiki->finalCleanup(Array, Object(LoadBalancer), Object(OutputPage))
#5 {main}
|
|
|
Back to top |
|
|
ter_roshak Apprentice
Joined: 31 Jan 2004 Posts: 171 Location: Everett, WA
|
Posted: Mon Mar 05, 2007 12:15 am Post subject: |
|
|
Hi,
I was able to resolve this issue through the following steps:
1. Download new mediawiki from: http://download.wikimedia.org/mediawiki/1.9/mediawiki-1.9.3.tar.gz
Code: | curl -C - -O 'http://download.wikimedia.org/mediawiki/1.9/mediawiki-1.9.3.tar.gz' |
2. Un-tar in /tmp and copy the serialized directory from the downloaded version to my local copy:
Code: | tar xzf mediawiki-1.9.3.tar.gz |
Code: | cp -a serialized/ /usr/share/webapps/mediawiki/1.9.2/htdocs/ |
3. Run make in the new directory
4. Change permissions on the new directory to match the rest of my stuff in htdocs:
Code: | chown -R root:web_devs serialized/ |
5. Restart apache and it should now work! _________________ Josh Miller -- RHCE, VCP
Ditree Consulting
http://ditree.com/
Registered Linux User #318200 |
|
Back to top |
|
|
|