Andrei Nicholson

Results 13 comments of Andrei Nicholson

Because I've been watching this thread like a lot of other people eagerly looking forward to an update: [Announcing Bosun, our new open source monitoring & alerting system](http://blog.stackoverflow.com/2014/11/announcing-bosun-our-new-open-source-monitoring-alerting-system/) http://bosun.org/

I ran into the same issue. The problem is when declaring global constants using the `const` keyword, PHPDoctor treats this as a class constant and expects a class name to...

Sort of discovered in #25 when reviewing the documentation on [$wgDBprefix](https://www.mediawiki.org/wiki/Manual:$wgDBprefix).

Did any of the images convert at all? I don't think anyone's reported issues with images before so I wouldn't be surprised if there's issues.

I think this error is caused by the PHP process not being able to create the session file. Line 151 in `/extra/cbcl0/users/dokuwiki-2012-10-13/inc/init.php` is a call to `session_start()` and looking at...

Start with the session save path first. Change `src/MediaWiki2DokuWiki/index.php` to add a call to [session_save_path()](http://www.php.net/session_save_path) and see if that addresses the session file creation and MySQL issue: ``` php session_save_path('/tmp');...

That's progress anyway. Try changing the way it connects to the database. Change the `dbConnect()` function in `src/MediaWiki2DokuWiki/MediaWiki/Settings.php` to the following: ``` php public function dbConnect() { $dsn = $this->settings['wgDBtype']...

Please try the latest version. I've modified it to be aware of MySQL sockets.

This is certainly late, but, can you provide some examples in MediaWiki syntax for both of these issues?

There's five variables it tries to grab from `LocalSettings.php` that may be where the problem is. The variables are - `$wgDBtype` - `$wgDBserver` - `$wgDBname` - `$wgDBuser` - `$wgDBpassword` Since...