https://github.com/gingerbeardman/proxyconnect
Links the Vanilla forum signin process to the WolfCMS login process.
https://github.com/gingerbeardman/proxyconnect
Last synced: 8 months ago
JSON representation
Links the Vanilla forum signin process to the WolfCMS login process.
- Host: GitHub
- URL: https://github.com/gingerbeardman/proxyconnect
- Owner: gingerbeardman
- Created: 2011-06-09T16:43:40.000Z (about 15 years ago)
- Default Branch: master
- Last Pushed: 2011-09-19T13:25:08.000Z (over 14 years ago)
- Last Synced: 2025-06-19T10:08:21.943Z (12 months ago)
- Language: PHP
- Homepage: http://www.gingerbeardman.com/wolfcms/
- Size: 93.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
#ProxyConnect 0.1.0
By Matt Sephton
Links the Vanilla forum signin process to the WolfCMS login process.
This way users have a Single Sign On and the experience of using Vanilla alongside WolfCMS is more streamlined.
## NOTES
Contains plugin and helper file.
Requires the Registered Users plugin to be installed.
Requires the cookie domain/path in wolf/app/models/AuthUser.php on lines 219, 294 to include both your forum and wolf paths.
The domains used for cookies must be dotted domains, as shown in the example code, as localhost will not work. You may also wish to use `'.'.$_SERVER["HTTP_HOST"]` rather than `null` in these bits of code.
## INSTALLATION
1. Setup the Registered Users plugin and confirm it is working.
2. Go to "Pages" tab and create child page of "Home Page" (green "+" on the right).
3. Put the name your new page (e.g. "ProxyConnect" or similar) in the "Page Title" box.
4. Put the following code in the "body" area:
UserInfo();
?>
This calls the helper function when the page is requested.
5. Below the text-editing area, set the dropdown menus to read:
- Layout: None
- Page Type: None
- Filter: None
- Status: Hidden
6. Click the "Save and Close" button.
7. Setup Vanilla's ProxyConnect plugin on your forum and confirm it is working.
## CHANGLOG
2011-02-08 initial version