Hi,
We have 1.20.6 of MediaWiki up and running. All working fine except email.
I tried installing PEAR2 (pyrus.phar) and I couldn't. I then did so on a computer not behind a firewall and it installed fine. So I copied the installation over to the computer behind the firewall. It reports that the packages are installed (the ones I installed on the other computer). But I cannot install new ones or channels.
I have tried setting up an http_proxy. It seems to run OK (the setting of the proxy), but I still cannot install channels or packages.
Media Wiki gives an error every time it tries to send an email too.
Is it possible to get working behind a corporate firewall? If so how?
Regards,
David Mills | iMed Senior Technical Analyst | Medibank Private Level 16, 700 Collins Street, Docklands, VIC, 3008 | Tel: 03 8622 5346 | Mob: 0411 513 404
********************************************************************************** The information contained in or attached to this message is intended only for the people it is addressed to. If you are not the intended recipient, please notify the sender and delete the email. Any use, disclosure or copying of this information is unauthorised and prohibited. This information may be confidential or subject to legal privilege. It is not the expressed view of Medibank Private Limited (ABN 47 080 890 259) or any of its subsidiaries (together 'Medibank') unless it is authorised by a person with actual authority. To the fullest extent allowed by law, Medibank does not accept liability for any damage caused by this message, including any virus damage. **********************************************************************************
On 06/17/2013 12:32 AM, David Mills wrote:
Media Wiki gives an error every time it tries to send an email too.
Is it possible to get working behind a corporate firewall? If so how?
What is the SMTP server? Can you access it from the server hosting MediaWiki without MediaWiki?
On Linux this would be something like:
$ nc SMTP-SERVER 25 or $ telnet SMTP-SERVER 25
You should be sure that is working first.
Hi Mark,
Thanks for the reply. It definitely work. Running the attached php sends me a message. This proves that I do have pear installed and the Mail.pgp package correctly installed.
I'm pretty sure that MediaWiki isn't finding the PEAR php files. I set up logging and get the following:
Start request POST /wiki/Special:ConfirmEmail
HTTP HEADERS:
HOST: imed-wiki
USER-AGENT: Mozilla/5.0 (Windows NT 5.1; rv:19.0) Gecko/20100101 Firefox/19.0
…
UserMailer::send: sending mail to david.mills@medibank.com.au
[5e95aa11] /wiki/Special:ConfirmEmail Exception from line 239 of D:\Program Files (x86)\Apache2.2\htdocs\w\includes\UserMailer.php: PEAR mail package is not installed
#0 D:\Program Files (x86)\Apache2.2\htdocs\w\includes\User.php(3391): UserMailer::send(Object(MailAddress), Object(MailAddress), 'iMedWiki email ...', 'Someone, probab...', NULL)
#1 D:\Program Files (x86)\Apache2.2\htdocs\w\includes\User.php(3369): User->sendMail('iMedWiki email ...', 'Someone, probab...')
#2 D:\Program Files (x86)\Apache2.2\htdocs\w\includes\specials\SpecialConfirmemail.php(79): User->sendConfirmationMail()
#3 D:\Program Files (x86)\Apache2.2\htdocs\w\includes\specials\SpecialConfirmemail.php(54): EmailConfirmation->showRequestForm()
#4 D:\Program Files (x86)\Apache2.2\htdocs\w\includes\SpecialPage.php(611): EmailConfirmation->execute(NULL)
#5 D:\Program Files (x86)\Apache2.2\htdocs\w\includes\SpecialPageFactory.php(494): SpecialPage->run(NULL)
#6 D:\Program Files (x86)\Apache2.2\htdocs\w\includes\Wiki.php(290): SpecialPageFactory::executePath(Object(Title), Object(RequestContext))
#7 D:\Program Files (x86)\Apache2.2\htdocs\w\includes\Wiki.php(536): MediaWiki->performRequest()
#8 D:\Program Files (x86)\Apache2.2\htdocs\w\includes\Wiki.php(446): MediaWiki->main()
#9 D:\Program Files (x86)\Apache2.2\htdocs\w\index.php(59): MediaWiki->run()
#10 {main}
Class PEAR_Error not found; skipped loading
OutputPage::sendCacheControl: no caching **
None of the documentation I have found tells me any steps for adding anything to LocalSettings.php to get it to load PEAR.
Regards,
David Mills | iMed Senior Technical Analyst | Medibank Private
Level 16, 700 Collins Street, Docklands, VIC, 3008 | Tel: 03 8622 5346 | Mob: 0411 513 404
-----Original Message----- …
On 06/17/2013 12:32 AM, David Mills wrote:
Media Wiki gives an error every time it tries to send an email too.
Is it possible to get working behind a corporate firewall? If so how?
What is the SMTP server? Can you access it from the server hosting MediaWiki without MediaWiki?
On Linux this would be something like:
$ nc SMTP-SERVER 25
or
$ telnet SMTP-SERVER 25
You should be sure that is working first.
********************************************************************************** The information contained in or attached to this message is intended only for the people it is addressed to. If you are not the intended recipient, please notify the sender and delete the email. Any use, disclosure or copying of this information is unauthorised and prohibited. This information may be confidential or subject to legal privilege. It is not the expressed view of Medibank Private Limited (ABN 47 080 890 259) or any of its subsidiaries (together 'Medibank') unless it is authorised by a person with actual authority. To the fullest extent allowed by law, Medibank does not accept liability for any damage caused by this message, including any virus damage. **********************************************************************************
Le 18/06/13 02:29, David Mills a écrit :
[5e95aa11] /wiki/Special:ConfirmEmail Exception from line 239 of
D:\Program Files (x86)\Apache2.2\htdocs\w\includes\UserMailer.php: PEAR mail package is not installed
Hello,
This is because PHP can not find the Mail.php that comes with PEAR mail package. Most of the time it is because the php.ini include_path is missing the path to pear.
Inside MediaWiki:
$ php maintenance/eval.php
> return ini_get( 'include_path' ); .:/opt/local/share/pear // My local pear copy is registered
> return stream_resolve_include_path( 'Mail.php' ); /opt/local/share/pear/Mail.php // PHP finds it :)
In my php.ini I have:
[PHP] include_path=".:/opt/local/share/pear"
So you probably want to edit your php.ini file and append your local PEAR directory to that include_path.
I upgrade from mediawiki-1.21.0rc1 to MediaWiki-1.21.1, but MediaWiki-1.21.1 does not work (even with new database); it says Fatal exception of type MWException I found this case at http://www.mediawiki.org/wiki/Thread:Extension_talk:ParserFunctions/Fatal_ex... but the recipe suggested there does not seem to affect anything How to know, is this fault of mediawiki or of MySQL or any misinterpretation of the installation instruction?
Look in your error log (probably something like /var/log/apache2/error.log) to find out exactly what the error is. This 'Fatal exception of type MWException' is useless.
Alex Monk
On Tue, Jun 18, 2013 at 8:15 PM, Dmitrii Kouznetsov dima@ils.uec.ac.jpwrote:
I upgrade from mediawiki-1.21.0rc1 to MediaWiki-1.21.1, but MediaWiki-1.21.1 does not work (even with new database); it says Fatal exception of type MWException I found this case at http://www.mediawiki.org/wiki/**Thread:Extension_talk:** ParserFunctions/Fatal_**exception_of_type_MWException_**Errorhttp://www.mediawiki.org/wiki/Thread:Extension_talk:ParserFunctions/Fatal_exception_of_type_MWException_Error but the recipe suggested there does not seem to affect anything How to know, is this fault of mediawiki or of MySQL or any misinterpretation of the installation instruction?
______________________________**_________________ MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.**org MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/**mailman/listinfo/mediawiki-lhttps://lists.wikimedia.org/mailman/listinfo/mediawiki-l
On Tue, 18 Jun 2013, Alex Monk wrote:
Look in your error log (probably something like /var/log/apache2/error.log) to find out exactly what the error is. This 'Fatal exception of type MWException' is useless.
Alex Monk
Dear Alex. This happened before the crash: ... [Mon Jun 17 02:12:46 2013] [error] [client 36.248.42.142] PHP Notice: Use of undefined constant flse - assumed 'flse' in /Users/d/Sites/h/LocalSettings.php on line 46, referer: http://mizugadro.mydns.jp/h/ [Mon Jun 17 02:12:47 2013] [error] [client 36.248.42.142] PHP Notice: Use of undefined constant flse - assumed 'flse' in /Users/d/Sites/h/LocalSettings.php on line 46, referer: http://mizugadro.mydns.jp/h/ [Mon Jun 17 02:42:49 2013] [error] [client 46.47.25.22] File does not exist: /Users/d/Sites/favicon.ico, referer: http://mizugadro.mydns.jp/t/index.php/File:TereshkovaPozor.jpg [Mon Jun 17 03:11:30 2013] [error] [client 78.106.101.106] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 03:11:30 2013] [error] [client 78.106.101.106] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 03:11:31 2013] [error] [client 78.106.101.106] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 03:13:01 2013] [error] [client 93.81.34.20] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 03:18:34 2013] [error] [client 93.81.34.20] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 03:21:03 2013] [error] [client 46.237.25.88] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 03:21:34 2013] [error] [client 46.237.25.88] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 03:23:04 2013] [error] [client 46.237.25.88] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 03:23:08 2013] [error] [client 46.237.25.88] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 03:23:53 2013] [error] [client 46.237.25.88] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 03:23:59 2013] [error] [client 46.237.25.88] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 03:24:05 2013] [error] [client 46.237.25.88] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 03:24:06 2013] [error] [client 46.237.25.88] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 03:24:07 2013] [error] [client 46.237.25.88] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 03:24:54 2013] [error] [client 46.237.25.88] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 03:26:04 2013] [error] [client 46.237.25.88] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 03:50:26 2013] [error] [client 62.89.238.206] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 03:59:00 2013] [error] [client 62.89.238.206] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 04:00:16 2013] [error] [client 46.229.181.190] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 04:05:01 2013] [error] [client 95.106.163.119] File does not exist: /Users/d/Sites/favicon.ico, referer: http://mizugadro.mydns.jp/t/index.php/File:TereshkovaPozor.jpg [Mon Jun 17 04:12:47 2013] [error] [client 62.89.238.206] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 04:37:31 2013] [error] [client 93.81.34.20] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 04:40:07 2013] [error] [client 89.19.10.210] File does not exist: /Users/d/Sites/wp-content [Mon Jun 17 05:06:41 2013] [error] [client 46.237.25.88] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 05:14:30 2013] [error] [client 5.166.19.94] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 05:15:57 2013] [error] [client 5.166.19.94] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 05:17:58 2013] [error] [client 5.166.19.94] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 05:18:28 2013] [error] [client 5.166.19.94] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 05:18:58 2013] [error] [client 5.166.19.94] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 05:19:29 2013] [error] [client 5.166.19.94] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 05:19:59 2013] [error] [client 5.166.19.94] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 05:20:31 2013] [error] [client 5.166.19.94] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 05:26:15 2013] [error] [client 46.237.25.88] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 05:27:24 2013] [error] [client 95.86.201.211] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 05:28:56 2013] [error] [client 95.86.201.211] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 05:29:03 2013] [error] [client 95.86.201.211] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 05:50:55 2013] [error] [client 46.237.25.88] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 06:07:42 2013] [error] [client 5.166.19.94] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 06:08:34 2013] [error] [client 5.166.19.94] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 06:25:17 2013] [error] [client 95.86.201.211] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 06:25:23 2013] [error] [client 95.86.201.211] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 06:32:19 2013] [error] [client 46.237.25.88] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 06:39:17 2013] [error] [client 46.237.25.88] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 06:45:21 2013] [error] [client 46.237.25.88] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 06:49:44 2013] [error] [client 198.20.69.74] File does not exist: /Users/d/Sites/robots.txt [Mon Jun 17 06:58:33 2013] [error] [client 46.237.25.88] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 07:41:09 2013] [error] [client 66.249.74.7] PHP Warning: require_once(/Users/d/Sites/TORI/LocalSettings.php): failed to open stream: Permission denied in /Users/d/Sites/TORI/includes/WebStart.php on line 116 [Mon Jun 17 07:41:09 2013] [error] [client 66.249.74.7] PHP Fatal error: require_once(): Failed opening required '/Users/d/Sites/TORI/LocalSettings.php' (include_path='.:') in /Users/d/Sites/TORI/includes/WebStart.php on line 116 [Mon Jun 17 07:47:30 2013] [error] [client 5.166.19.94] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 07:49:59 2013] [error] [client 5.166.19.94] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 09:56:29 2013] [error] [client 91.147.10.100] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 11:41:23 2013] [error] [client 178.49.137.174] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 11:41:24 2013] [error] [client 178.49.137.174] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 11:41:26 2013] [error] [client 178.49.137.174] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 12:18:58 2013] [error] [client 114.198.209.41] File does not exist: /Users/d/Sites/favicon.ico, referer: http://mizugadro.mydns.jp/t/index.php/Special:RecentChanges [Mon Jun 17 12:21:06 2013] [error] [client 87.253.25.104] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 13:00:08 2013] [error] [client 66.249.74.7] File does not exist: /Users/d/Sites/robots.txt [Mon Jun 17 13:33:16 2013] [error] [client 2.94.193.228] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 13:37:04 2013] [error] [client 46.47.49.228] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 13:48:47 2013] [error] [client 5.165.216.14] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 13:48:48 2013] [error] [client 5.165.216.14] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 13:48:48 2013] [error] [client 5.165.216.14] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 13:49:34 2013] [error] [client 66.249.74.7] PHP Warning: require_once(/Users/d/Sites/TORI/LocalSettings.php): failed to open stream: Permission denied in /Users/d/Sites/TORI/includes/WebStart.php on line 116 [Mon Jun 17 13:49:34 2013] [error] [client 66.249.74.7] PHP Fatal error: require_once(): Failed opening required '/Users/d/Sites/TORI/LocalSettings.php' (include_path='.:') in /Users/d/Sites/TORI/includes/WebStart.php on line 116 [Mon Jun 17 13:52:33 2013] [error] [client 157.56.93.52] File does not exist: /Users/d/Sites/robots.txt [Mon Jun 17 13:56:34 2013] [error] [client 196.3.96.21] File does not exist: /Users/d/Sites/wp-content [Mon Jun 17 14:00:21 2013] [error] [client 88.208.206.74] File does not exist: /Users/d/Sites/phppath [Mon Jun 17 14:32:54 2013] [error] [client 80.255.187.114] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 14:49:22 2013] [error] [client 95.106.171.72] File does not exist: /Users/d/Sites/favicon.ico, referer: http://mizugadro.mydns.jp/t/index.php/File:TereshkovaPozor.jpg [Mon Jun 17 15:09:49 2013] [error] [client 109.161.113.254] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 15:41:33 2013] [error] [client 95.86.251.184] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 15:48:31 2013] [error] [client 95.86.251.184] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 15:50:51 2013] [error] [client 37.140.141.1] File does not exist: /Users/d/Sites/robots.txt [Mon Jun 17 15:51:23 2013] [error] [client 91.201.208.7] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 16:13:15 2013] [error] [client 60.32.79.206] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 16:18:15 2013] [error] [client 199.30.20.58] File does not exist: /Users/d/Sites/robots.txt [Mon Jun 17 16:27:27 2013] [error] [client 93.178.107.49] File does not exist: /Users/d/Sites/images, referer: http://samlib.ru/k/kuznecow_d_j/krizis.shtml [Mon Jun 17 16:36:25 2013] [error] [client 109.161.84.10] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 16:36:29 2013] [error] [client 109.161.84.10] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 16:36:43 2013] [error] [client 109.161.84.10] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 16:36:49 2013] [error] [client 109.161.84.10] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 16:36:49 2013] [error] [client 109.161.84.10] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 16:40:53 2013] [error] [client 109.161.84.10] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 16:40:54 2013] [error] [client 109.161.84.10] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 16:42:27 2013] [error] [client 109.161.84.10] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 16:46:26 2013] [error] [client 62.89.238.206] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 16:49:04 2013] [error] [client 62.89.238.206] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 16:50:07 2013] [error] [client 109.161.84.10] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 16:57:17 2013] [error] [client 109.161.84.10] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 17:18:22 2013] [error] [client 60.55.8.137] PHP Notice: Use of undefined constant flse - assumed 'flse' in /Users/d/Sites/h/LocalSettings.php on line 46 [Mon Jun 17 17:18:23 2013] [error] [client 60.55.8.137] PHP Notice: Use of undefined constant flse - assumed 'flse' in /Users/d/Sites/h/LocalSettings.php on line 46, referer: http://mizugadro.mydns.jp/h/ [Mon Jun 17 17:18:24 2013] [error] [client 60.55.8.137] PHP Notice: Use of undefined constant flse - assumed 'flse' in /Users/d/Sites/h/LocalSettings.php on line 46 [Mon Jun 17 17:18:28 2013] [error] [client 60.55.8.137] PHP Notice: Use of undefined constant flse - assumed 'flse' in /Users/d/Sites/h/LocalSettings.php on line 46, referer: http://mizugadro.mydns.jp/h/index.php?title=Special:UserLogin&returnto=M... [Mon Jun 17 17:18:28 2013] [error] [client 60.55.8.137] PHP Notice: Use of undefined constant flse - assumed 'flse' in /Users/d/Sites/h/LocalSettings.php on line 46 [Mon Jun 17 17:18:29 2013] [error] [client 60.55.8.137] PHP Notice: Use of undefined constant flse - assumed 'flse' in /Users/d/Sites/h/LocalSettings.php on line 46 [Mon Jun 17 17:18:30 2013] [error] [client 60.55.8.137] PHP Notice: Use of undefined constant flse - assumed 'flse' in /Users/d/Sites/h/LocalSettings.php on line 46, referer: http://mizugadro.mydns.jp/h/ [Mon Jun 17 17:18:59 2013] [error] [client 60.55.8.137] PHP Notice: Use of undefined constant flse - assumed 'flse' in /Users/d/Sites/h/LocalSettings.php on line 46, referer: http://mizugadro.mydns.jp/h/index.php?title=User:Kunul2531&action=edit [Mon Jun 17 17:19:12 2013] [error] [client 60.55.8.137] PHP Notice: Use of undefined constant flse - assumed 'flse' in /Users/d/Sites/h/LocalSettings.php on line 46, referer: http://mizugadro.mydns.jp/h/ [Mon Jun 17 17:19:38 2013] [error] [client 60.55.8.137] PHP Notice: Use of undefined constant flse - assumed 'flse' in /Users/d/Sites/h/LocalSettings.php on line 46, referer: http://mizugadro.mydns.jp/h/index.php?title=User:Kunul2531&action=edit [Mon Jun 17 17:19:51 2013] [error] [client 60.55.8.137] PHP Notice: Use of undefined constant flse - assumed 'flse' in /Users/d/Sites/h/LocalSettings.php on line 46, referer: http://mizugadro.mydns.jp/h/ [Mon Jun 17 17:20:37 2013] [error] [client 62.89.238.206] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 17:20:47 2013] [error] [client 60.55.8.137] PHP Notice: Use of undefined constant flse - assumed 'flse' in /Users/d/Sites/h/LocalSettings.php on line 46, referer: http://mizugadro.mydns.jp/h/index.php?title=User:Kunul2531&action=edit [Mon Jun 17 17:20:51 2013] [error] [client 60.55.8.137] PHP Notice: Use of undefined constant flse - assumed 'flse' in /Users/d/Sites/h/LocalSettings.php on line 46, referer: http://mizugadro.mydns.jp/h/ [Mon Jun 17 17:21:37 2013] [error] [client 60.55.8.137] PHP Notice: Use of undefined constant flse - assumed 'flse' in /Users/d/Sites/h/LocalSettings.php on line 46, referer: http://mizugadro.mydns.jp/h/index.php?title=User:Kunul2531&action=edit [Mon Jun 17 17:21:55 2013] [error] [client 60.55.8.137] PHP Notice: Use of undefined constant flse - assumed 'flse' in /Users/d/Sites/h/LocalSettings.php on line 46, referer: http://mizugadro.mydns.jp/h/ [Mon Jun 17 17:22:18 2013] [error] [client 60.55.8.137] PHP Notice: Use of undefined constant flse - assumed 'flse' in /Users/d/Sites/h/LocalSettings.php on line 46, referer: http://mizugadro.mydns.jp/h/index.php?title=User:Kunul2531&action=edit [Mon Jun 17 17:43:44 2013] [error] [client 128.73.98.117] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 17:51:13 2013] [error] [client 62.89.238.206] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 18:05:41 2013] [error] [client 95.106.163.44] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 18:05:41 2013] [error] [client 95.106.163.44] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 18:06:17 2013] [error] [client 5.166.19.94] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 18:20:27 2013] [error] [client 36.248.42.142] PHP Notice: Use of undefined constant flse - assumed 'flse' in /Users/d/Sites/h/LocalSettings.php on line 46 [Mon Jun 17 18:20:28 2013] [error] [client 36.248.42.142] PHP Notice: Use of undefined constant flse - assumed 'flse' in /Users/d/Sites/h/LocalSettings.php on line 46, referer: http://mizugadro.mydns.jp/h/ [Mon Jun 17 18:20:30 2013] [error] [client 36.248.42.142] PHP Notice: Use of undefined constant flse - assumed 'flse' in /Users/d/Sites/h/LocalSettings.php on line 46, referer: http://mizugadro.mydns.jp/h/ [Mon Jun 17 18:24:22 2013] [error] [client 114.198.209.41] File does not exist: /Users/d/Sites/favicon.ico, referer: http://mizugadro.mydns.jp/c/index.php/Special:CheckUser [Mon Jun 17 18:29:49 2013] [error] [client 114.198.209.41] File does not exist: /Users/d/Sites/favicon.ico, referer: http://mizugadro.mydns.jp/c/index.php/Special:CheckUser [Mon Jun 17 18:29:51 2013] [error] [client 114.198.209.41] File does not exist: /Users/d/Sites/favicon.ico, referer: http://mizugadro.mydns.jp/c/index.php/Special:CheckUser [Mon Jun 17 18:31:04 2013] [error] [client 80.92.16.200] File does not exist: /Users/d/Sites/favicon.ico [Mon Jun 17 18:58:39 2013] [error] [client 89.250.30.34] File does not exist: /Users/d/Sites/favicon.ic ...
Then it continued in the similar way, but with my attempts to handle it. First, the special "recent changes" stopped to show the recent changes. I suspect, that the core of mediawiki had been somehow corrupted. I had locked the writing and tried to install the new version of wiki, but it does not work.. The old version works, if I do not apply it to the newest database. So, I have recovered the version backed up a month ago, and think about loading there the pages by the maintanance scripts (with loss of the history of edition).
On Tue, Jun 18, 2013 at 8:15 PM, Dmitrii Kouznetsov dima@ils.uec.ac.jpwrote:
I upgrade from mediawiki-1.21.0rc1 to MediaWiki-1.21.1, but MediaWiki-1.21.1 does not work (even with new database); it says Fatal exception of type MWException I found this case at http://www.mediawiki.org/wiki/**Thread:Extension_talk:** ParserFunctions/Fatal_**exception_of_type_MWException_**Errorhttp://www.mediawiki.org/wiki/Thread:Extension_talk:ParserFunctions/Fatal_exception_of_type_MWException_Error but the recipe suggested there does not seem to affect anything How to know, is this fault of mediawiki or of MySQL or any misinterpretation of the installation instruction?
______________________________**_________________ MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.**org MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/**mailman/listinfo/mediawiki-lhttps://lists.wikimedia.org/mailman/listinfo/mediawiki-l
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
[Replies inline with quoted message(s)]
On 6/18/2013 6:13 PM, Dmitrii Kouznetsov wrote:
[Mon Jun 17 02:12:46 2013] [error] [client 36.248.42.142] PHP Notice: Use of undefined constant flse - assumed 'flse' in /Users/d/Sites/h/LocalSettings.php on line 46, referer: http://mizugadro.mydns.jp/h/
I don't know if this is the source of your problem or not, but you misspelled "false" as "flse" in your configuration file. See the error message for the location of the misspelling. - -- Sincerely, Andrew "FastLizard4" Adams FastLizard4@gmail.com https://en.wikipedia.org/wiki/User:FastLizard4 GPG Key ID: 0x221A627DD76E2616
Dear Andrew, thank you for the indication of the misprint. It could explain the failure of http://mizugadro.mydns.jp/h I still try to understand, why http://mizugadro.mydns.jp/a http://mizugadro.mydns.jp/o http://mizugadro.mydns.jp/t http://mizugadro.mydns.jp/t04 and others also failed in the similar way. They use independent databases, but the same MySQL. Perhaps, I committed also some other misprints. I dig the case and I shall inform you after to find any result.
On Tue, 18 Jun 2013, FastLizard4 wrote:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 6/18/2013 6:13 PM, Dmitrii Kouznetsov wrote:
[Mon Jun 17 02:12:46 2013] [error] [client 36.248.42.142] PHP Notice: Use of undefined constant flse - assumed 'flse' in /Users/d/Sites/h/LocalSettings.php on line 46, referer: http://mizugadro.mydns.jp/h/
I don't know if this is the source of your problem or not, but you misspelled "false" as "flse" in your configuration file. See the error message for the location of the misspelling.
Sincerely, Andrew "FastLizard4" Adams FastLizard4@gmail.com https://en.wikipedia.org/wiki/User:FastLizard4 GPG Key ID: 0x221A627DD76E2616 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.17 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
iQIcBAEBAgAGBQJRwQpPAAoJECIaYn3XbiYWDu8QAIMn3QfRcQKDpp6kPFx73BCu C4bRIxE5ULl2oQpkAYh+WJLEw2phOnsRfNzsMraIOjf2e9FG3ildIcNQAJF57DIv xAfR/XwyiiGKsgiV352ClWvlXLJBUpllk60joPMjCNVjyhdV0xXOmIezxbE6W1gl LiPeYzag7+8Zrd+DYhVKFxjky3qutC/vVKYBCbxtmryS2W9k7YTmMJpbdk90lpB1 4xh21n6wNOh+2zw79p8MJR1HLHZYRjxo3JhhfOoAo/0H0gIzA5ncAa5VstO6tp7c DcibGoFGIqJqBaM79P7bBGKBM3NdJGOWATLtb3j84tSTE1L6uYId2n5yGyGn4251 czgzqlKgSuObhcnyCSzSKDYztdNNadyrcPFohtPldJBYk7h4SKu7vJ5xtbQgzCpk 5CQDJ9xyEfLvDJXPB4+InQgqByYb6A9ZCU2VwgcHH4IfrrCt1daMmzYWGWizV3j+ fZj7KFsxcP5AzIBveMnDGW2LYl6ztcxgW9o0+KU5edrYECVGs1/2y+doRqGZdsVU kmw/0jNpE2q5bNDSfH4Rim0HPL5ZROmQjGSgRzKRU8JT1vvOTHRLjEDkanWzkGLy PariTcA803P7JYZi73e/AGB3BXHq6AFt4Q4EnyrstcJ5tmAVx7TqJ4E3z1G5TMXv Vh51HNn8XNAZ6eozY6Xc =tKPv -----END PGP SIGNATURE-----
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
mediawiki-l@lists.wikimedia.org