vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Calendar Enhancements - Farcaster's Event Attendance (https://vborg.vbsupport.ru/showthread.php?t=129088)

Elenna 01-18-2008 04:55 PM

Quick question about RSVP times. If someone RSVPs "Maybe" and then updates it to "Yes", it changes their time to when they updated their RSVP. Would it be possible to keep the time as the original time they RSVPd "Maybe"?

dismas 01-25-2008 02:25 PM

Can anyone tell me what the following means when someone gets a reminder email:

Quote:

Scheduled Start Date: January 26th, 2008 (13905 Days)
I know that the first part is the date of the event but what is the "13905 Days" part?

Batouchu 01-26-2008 03:12 AM

I have this weird bug and I quite don't know how to explain it:

When I click on the event be it with a test account or my admin account, it shows just fine.

But when some specific users click on the same event, it shows as being closed with a whole different list of attendees.

I peeked in the DB and there's no trace of those users being registered to this event, so i'm quite puzzled.

EDIT:
Apparemtly it's linked to timezones. I live in australia and thus set up the event accordingly to my timezone for sunday. But for US people, the event is on a saturday evening and for some reason they can't register, as if the event wouldn't know the difference between 0 and 1 day.

Also the server is based in Australia, so tht might be the source of this issue?

Batouchu 01-26-2008 04:21 AM

Ok, that's completely irrational, and I've no idea what's going on with my install of this mod.

If I set up an expiration date through the admin options, half of the attendees can't see the other half, depending on their timezone.
Also expiration date is off by one day (before)/ one week (after) still depending on your timezone.

If I create an event without an expiration date, but activate it afterwards, it works just fine.

AndyA 01-31-2008 07:54 PM

Can someone help with a problem please ? I've just installed this on 3.6.8 and it works fine other than my users are having a 'Style' issue when they view the events.

Quote:

Yup, that works!

Except its in a different 'skin' colour scheme, to which all pages change to when I navigate away, so then have to change back!
Any ideas ?

http://www.throttlejockey.co.uk/foru...0569#post70569

The link to the calendar event opens up in a new window in the style that others aren't using.

bugzy 01-31-2008 09:48 PM

Quick Reply is not working for Events Thread. I get the below error

Quote:

The message you have entered is too short. Please lengthen your message to at least 1 characters.

Elenna 02-01-2008 02:19 PM

Quote:

Originally Posted by bugzy (Post 1433464)
Quick Reply is not working for Events Thread. I get the below error

I have the same problem. But I'm not sure if it is this mod, or the Event Forums mod.

I edited the template to remove the Quick Reply box in our calendar forum.

bugzy 02-01-2008 08:20 PM

Quote:

Originally Posted by Elenna (Post 1433970)
I have the same problem. But I'm not sure if it is this mod, or the Event Forums mod.

I edited the template to remove the Quick Reply box in our calendar forum.

yeah, im not sure where the problem comes from either :(

xcesiv 02-08-2008 09:33 PM

how hard is it to adjust this mod to change it from having options yes no and maybe, to Entrant, Spectator, no

Ronin Storm 02-13-2008 09:46 PM

I've been having no end of headaches trying to figure out the following problem but I've finally found a resolution.

Problem:

I have Event Attendance, Event Forums and the bridge installed on my vB3.6.8pl2 board.

When I post using quick reply from a threaded-mode view to an event whose RSVPs have closed, I get the following message:

Quote:

Invalid Event specified. If you followed a valid link, please notify the administrator
This does not happen when replying from linear mode, via quick reply or not.

Solution:

After lots of investigation, false starts, long pauses and just ignoring it, I've discovered the following in version 1.2.1, in the calendar_rsvp_form template.

Code:

        <input type="submit" class="button" value="$vbphrase[submit]" />

        </td></tr>
        </table>
        </form>
</if>
<if condition="$expires[0]<0">
        <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
        <tr><td class="alt2" align="center" valign="center" height="75"><font size="2"><b>$vbphrase[calendar_rsvp_closed]</b></font></td></tr>
        </table>
</if>

Notice the </form> tag? That's the closing tag for a form opened at the top of this template, except the form was opened outside of the if block. When RSVPs close, the closing form tag is lost.

The easy resolution is to change the block above to the following:

Code:

        <input type="submit" class="button" value="$vbphrase[submit]" />

        </td></tr>
        </table>
</if>
<if condition="$expires[0]<0">
        <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
        <tr><td class="alt2" align="center" valign="center" height="75"><font size="2"><b>$vbphrase[calendar_rsvp_closed]</b></font></td></tr>
        </table>
</if>
</form>


Notes:

The reason this does not affect linear mode posters is because the posting is done via AJAX. However, for threaded-mode users the posts are actually POSTed. Normally, they'd be posted off to the newreply.php script correctly but because a form block further up isn't close, the submit information for the quick reply block now believes its supposed to be posting to calendar.php. That'd be fine, except that the action "newpost" is not recognised by calendar.php so it eventually falls back to its default action of posting an error. Also, because none of the rest of the body in calendar.php is called, none of the calendar hooks fire (fortunately, otherwise this would have been impossible to debug) so the hook that forcibly forwards the user to the thread for that event (Event Forums functionality) doesn't fire.

But all this is ultimately caused by a misplaced </form> tag inside the Event Attendance code. Hence the bug report/solution here.

Hope that helps. :)


All times are GMT. The time now is 08:07 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02159 seconds
  • Memory Usage 1,751KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete