Index: trunk/extensions/OpenID/README.OpenID-mediawiki-extension |
— | — | @@ -1,6 +1,6 @@ |
2 | 2 | MediaWiki OpenID extension README.OpenID-mediawiki-extension file |
3 | | -version 0.921-beta |
4 | | -19 May 2011 |
| 3 | +version 0.933-beta |
| 4 | +12 July 2011 |
5 | 5 | |
6 | 6 | Homepage and manual http://www.mediawiki.org/wiki/Extension:OpenID |
7 | 7 | |
— | — | @@ -124,12 +124,6 @@ |
125 | 125 | and applies a patch to avoid PHP errors because Call-time pass-by-reference is deprecated |
126 | 126 | since PHP 5.3.x see https://github.com/openid/php-openid/issues#issue/8 and |
127 | 127 | the patch and fork of user kost https://github.com/openid/php-openid/pull/44/files |
128 | | - |
129 | | -Run update.php script in in your MediaWiki maintenance folder to create |
130 | | -necessary tables in MediaWiki database: |
131 | | - |
132 | | - cd $IP/maintenance |
133 | | - php update.php |
134 | 128 | |
135 | 129 | Version 0.3 and below of this extension used a different database structure |
136 | 130 | that was pretty inefficient. If you installed this extension before, you should |
— | — | @@ -142,6 +136,12 @@ |
143 | 137 | |
144 | 138 | require_once( "$IP/extensions/OpenID/OpenID.setup.php" ); |
145 | 139 | |
| 140 | +Run update.php script in in your MediaWiki maintenance folder to conditionally create |
| 141 | +a new table in MediaWiki database as required by the OpenID extension: |
| 142 | + |
| 143 | + cd $IP/maintenance |
| 144 | + php update.php |
| 145 | + |
146 | 146 | Theoretically it should work out of the box, but you'll almost definitely want |
147 | 147 | to set the trust root and access controls (see Configuration below). |
148 | 148 | |