Bug 659921
| Summary: | Documentation error in README.1st | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Kurt Seifried <kurt> |
| Component: | mediawiki-openid | Assignee: | Axel Thimm <Axel.Thimm> |
| Status: | CLOSED NOTABUG | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | low | Docs Contact: | |
| Priority: | low | ||
| Version: | 14 | CC: | Axel.Thimm |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2011-03-28 23:37:46 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
Actually the require file should be:
require_once("/extensions/OpenID/OpenID.setup.php")
the extensions/OpenID/OpenID.php file is simply a require_once pointing at this file for backwards compatibility (so the documentation needs to be updated upstream as well).
http://fedoraproject.org/wiki/Policy_for_nonresponsive_package_maintainers This is contact attempt #2 (one month delay). Is the package maintainer still interested in this package? http://fedoraproject.org/wiki/Policy_for_nonresponsive_package_maintainers This is contact attempt #3 (another week has gone by). Is the package maintainer still interested in this package? |
Description of problem: /usr/share/doc/mediawiki-openid-0.8.2/README.1st says to put the following line into LocalSettings.php: require_once("/extensions/OpenID/OpenID.php") This is wrong, no forward slash is needed as the extensions are stored in /usr/share/mediawiki/ and this directory is included in the search path. The documentation assumes a "normal" Mediawiki setup (with everything dumped into the web root). The line should be: require_once("extensions/OpenID/OpenID.php") Which works. Version-Release number of selected component (if applicable): 0.8.2 How reproducible: Always Steps to Reproduce: 1. Install mediawiki-openid 2. Follow install instructions 3. Go to wiki page and get a 500 server error Actual results: 500 server error Expected results: 200 request ok Additional info: simply modify the documentation and remove that first slash