Version: 3.1, by Farcaster
Developer Last Online: Jun 2014
Category: Calendar Enhancements -
Version: 4.x.x
Rating:
Released: 01-31-2010
Last Update: 08-08-2011
Installs: 417
DB Changes Uses Plugins Template Edits
No support by the author.
This modification will allow your members to RSVP to events on the vBulletin calendar. By default, members can respond "Yes," "No," or "Maybe," as to whether or not they will be able to attend an event, but you can modify or add to the list of responses members are presented with as you desire.
Features
Specify some or all of your calendars to use the RSVP system.
Set whether an event accepts RSVPs during event creation / edit.
Allow members to specify if they will be bringing a guest.
Event owners can set the maximum number of guests each member may bring.
Events can be set to close RSVPs on the day of the event or before.
RSVP comments (up to 65k character limit, configurable)
Timestamped RSVPs
Moderators and event owners can remove member RSVPs from events.
Attendance list can be set to display member avatars.
Improved handling of differing timezones and daylight saving times.
Configurable Response options. You aren't stuck with Yes, No, Maybe. You can setup whatever responses you want.
Ability to specify a maximum number of attendees for an event. After the maximum is reached, you can configure members to either receive an error or have their response (RSVP) automatically changed to something else. This could be used to create a wait-list bucket, for instance.
Requirements
vBulletin v4.0.0 or higher.
Installation Instructions
- 1 XML upload
- 1 template modification
1. Use the Product Manager to import the included product XML file.
2. Use the Style Manager to find and edit your calendar_showeventsbit:
Find:
HTML Code:
<div class="eventfoot">
Above that add:
HTML Code:
{vb:raw rsvp_form}
Upgrading from v2 (for vb3):
Follow the steps above for installing the new version, and be sure to ALLOW OVERWRITE when installing the new product file.
Revision History:
v3.0.0a (BETA) - Updated to work on vb4. Corrected a number of bugs related to determining correct occurrence date. Corrected event save bug.
I get fatal errors too.....
All else works perfectly on 4.1.10 except when i click on a day with more than 1 event i get this
If i click on any day with more than 1 event with attendance turned on i get that error
Any assistance would be great
EDIT: Disabling the mod stops teh problem ....
Not sure if anyone has answered your question but you can address the Fatal Erro by wrapping the function with a check in your Plugin Manager.
Edit Plugin GETDAY_EVENT: Add RSVPs and Form to Event
FINDat top of plugin)
Code:
function array_prep(&$array) {
foreach ($array as &$item) {
$item = trim(strtolower($item));
}
}
CHANGE IT TO:
Code:
if(!function_exists('array_prep')) {
function array_prep(&$array) {
foreach ($array as &$item) {
$item = trim(strtolower($item));
}
}
}
hello, using the RSVP Mod, if i have multiple events on one day and click the date number i get the following:
Fatal error: Cannot redeclare array_prep() (previously declared in /data/17/2/36/88/2851740/user/3136152/htdocs/forum/calendar.php(1379) : eval()'d code:1) in /data/17/2/36/88/2851740/user/3136152/htdocs/forum/calendar.php(1379) : eval()'d code on line 5
first the mod for me is very useful. i was told the mod is causing the problem from vBulletin support. the calendar produces the error below if i click the day number on a calendar. the mod does not have to be in use on any of the events of the day in question. the error:
Fatal error: Cannot redeclare array_prep() (previously declared in /data/17/2/36/88/2851740/user/3136152/htdocs/forum/calendar.php(1379) : eval()'d code:1) in /data/17/2/36/88/2851740/user/3136152/htdocs/forum/calendar.php(1379) : eval()'d code on line 5
first steps would be to say yea or nea to what is causing the problem.
thanks in advance
charly