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 - vB Event Forums (https://vborg.vbsupport.ru/showthread.php?t=123416)

Toorak Times 08-21-2013 01:20 PM

Quote:

Originally Posted by BigAl205 (Post 2430265)
You may not have the Calendar/Forum Map set up correctly.
My default calendar is "calendarid=1" and the Events forum id is "id: 8"...so I simply entered 1:8 in the first box of the Event Forums control panel.
;)


Thanks Al, a learner an d that helps

mollypix 08-22-2013 01:13 PM

Not sure if I'm missing something, but I cannot change the number of days in my summary downwards.

I set it to 7 days, then 14 days and now 30 days, but in seeing there are far too many events for the summary i tried to set it back down to 7 ... and it wont change from 30 ?!?!?!?

Anyone come across this before?

mollypix 08-22-2013 01:15 PM

Quote:

Originally Posted by mollypix (Post 2440330)
Not sure if I'm missing something, but I cannot change the number of days in my summary downwards.

I set it to 7 days, then 14 days and now 30 days, but in seeing there are far too many events for the summary i tried to set it back down to 7 ... and it wont change from 30 ?!?!?!?

Anyone come across this before?

Nevermind ... I'm being an idiot :)

rootsxrocks 10-15-2013 03:04 AM

This is not without a few flaws in 4.2.1 and so far seems to work in 4.2.2
but I am getting this error
Could someone smarter than I please tell me what it means


Warning: Only variables should be passed by reference in ..../vb/legacy/calendar.php on line 54

PHP Code:

<?php if (!defined('VB_ENTRY')) die('Access denied.');

/*======================================================================*\
|| #################################################################### ||
|| # vBulletin 4.2.2 - Licence Number xxxxxxxx
|| # ---------------------------------------------------------------- # ||
|| # Copyright ?2000-2013 vBulletin Solutions Inc. All Rights Reserved. ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
|| # http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||
|| #################################################################### ||
\*======================================================================*/

/**
 * @package vBulletin
 * @subpackage Legacy
 * @author Kevin Sours, vBulletin Development Team
 * @version $Revision: 28678 $
 * @since $Date: 2008-12-03 16:54:12 +0000 (Wed, 03 Dec 2008) $
 * @copyright vBulletin Solutions Inc.
 */

require_once (DIR "/vb/legacy/dataobject.php");

/**
 * Legacy calendar wrapper
 *
 */
class vB_Legacy_Calendar extends vB_Legacy_Dataobject
{

    
/**
     * Create object from and existing record
     *
     * @param int $calendarinfo
     * @return vB_Legacy_Calendar
     */
    
public static function create_from_record($calendarinfo)
    {
        
$calendar = new vB_Legacy_Calendar();
        
$calendar->set_record($calendarinfo);
        return 
$calendar;
    }

    
/**
     * Load object from an id
     *
     * @param int $id
     * @return vB_Legacy_Calendar
     */
    
public static function create_from_id($id)
    {
        global 
$_CALENDAROPTIONS$_CALENDARHOLIDAYS;
        
$calendarinfo verify_id('calendar'intval($id), falsetrue);
        
$getoptions convert_bits_to_array($calendarinfo['options'], $_CALENDAROPTIONS);
        
$calendarinfo array_merge($calendarinfo$getoptions);
        
$geteaster convert_bits_to_array($calendarinfo['holidays'], $_CALENDARHOLIDAYS);
        
$calendarinfo array_merge($calendarinfo$geteaster);

        if (
$calendarinfo)
        {
            return 
self::create_from_record($calendarinfo);
        }
        else
        {
            return 
null;
        }
    }

    public static function 
create_from_id_cached($id)
    {
        if (!isset(
self::$calendar_cache[$id]))
        {
            
self::$calendar_cache[$id] = self::create_from_id($id);
        }

        return 
self::$calendar_cache[$id];
    }

    private static 
$calendar_cache = array();

    
/**
     * constructor -- protectd to force use of factory methods.
     */
    
protected function __construct() {}

    
//*********************************************************************************
    // Derived Getters



    //*********************************************************************************
    //    High level permissions
    /*
    //not used so not implemented.
    public function can_view($user)
    {
        return false;
    }

    public function can_search($user)
    {
        return false; 
    }
    */

    //*********************************************************************************
    //    Data operation functions


}

/*======================================================================*\
|| ####################################################################
|| # Downloaded: 18:42, Wed Oct 9th 2013
|| # SVN: $Revision: 28678 $
|| ####################################################################
\*======================================================================*/


Elenna 11-30-2013 03:41 PM

I am super excited that this has been fixed. :) Any idea if this is working with the Event Attendance bridge? https://vborg.vbsupport.ru/showthread.php?t=133970

Toorak Times 12-02-2013 06:57 AM

This is such a great idea and so much a needed addition, can anyone get interested in making this work in 4.2.2?

rootsxrocks 12-06-2013 11:05 PM

It seems to be working for me in 4.22 Just the thread list is not appearing

rotor 12-12-2013 12:00 AM

Another addition would be to include Google Map of the event location ....

Xenforo have a free addon for events that have a couple of good ideas

1 Google map of event location - awesome!!
2 List of upcoming events in separate page
3 An events archive page
4 RSPV system to allow people to notify they'll be attending!!

Im running 4.2.2 - anyone working on upgrading this??? Would be awesome!!

insidegames 12-18-2013 02:31 PM

have someone an example to show me? i'm looking for 4.2.2 :D

Digital Jedi 12-18-2013 03:39 PM

Quote:

Originally Posted by rotor (Post 2467742)
Another addition would be to include Google Map of the event location

Since I have AME installed, I use the Google Maps definition to include maps and such. Streeth view looks pretty good in the events, though I haven't used it that way in a while.

rotor 12-18-2013 05:47 PM

Ok, I downloaded AME3, installed and updated the Hook and definitions as per thread but I cant get the map to come up when I place the google map code in the post - I guess I need the Definition for Google Maps which I noticed isn't in this list but is in the older version list which wont import into this version?

Also - is there a way to add Co-ordinates? Latitude and Longitude inside the Google Map definition?

Maybe I should be posting this in AME3 I think .......

insidegames 12-20-2013 12:01 AM

does this works with vbulletin 4.2.2? i would like this to use with my new forum on www.psn-senioren.de

i also use farcaster event plugin

Mr_Running 12-31-2013 12:23 AM

Hello insidegames,
I don't think it's farcaster ready! ...but Check out post 825 on page 55. BarracodE did a good job with a few fixes.
I have just started testing it out this week...I hope he has an update :)

I have a few issues...
Edit: Sorted! My issue was a map bbcode which I have now removed! :)

masonox 01-01-2014 03:23 PM

Dang, this was a very powerful mod that I miss, just noticed why it don't work, because it was abandoned :(

Thanks for the great mod, Hopefully one day you will bring it back to life.

rotor 01-01-2014 07:15 PM

working with 4.2.2

just cant find where to add the image code in the 4.2.2 template ...... will have another go to find it today

Mr_Running 01-10-2014 08:48 PM

vB 4.2.2

How to get the calendar event link to go to showthread instead of the
Code:

calendar.php?do=getinfo&day....
It just seems like double content and I would like to encourage replies by going directly to the event thread. :)

Bowlsworld 02-23-2014 10:54 AM

Could some kind developer put ALL the 4.2.2 fixes in one post please. This is such an awesome mod as the calendars are one of the least modified in vB yet so important

JenniferK 03-01-2014 01:52 AM

I used post 825 to install this in my site with 4.2.2. It is working, sort of. I am having a few problems, maybe someone can help?

The event will post to the calendar correctly with all of the custom fields and a thread is created in the forum - but the thread only has the title and event description, non of the custom fields.

Also (and less important), instead of saying Add New Event at the top of the forum, it says Post New Thread (though clicking that does take you to add event).

adwade 03-01-2014 04:03 AM

Did you upload the New Event GIF into your Buttons directory?
Code:

http://www.yourwebsite.com/forums/images/buttons/newevent.gif

JenniferK 03-01-2014 05:20 AM

Quote:

Originally Posted by adwade (Post 2484385)
Did you upload the New Event GIF into your Buttons directory?
Code:

http://www.yourwebsite.com/forums/images/buttons/newevent.gif

Ah, nope - I sure didn't! Thanks! :)

Any ideas on the missing custom fields? That is my real concern! I used the older version of this mod in vb3.8 and the custom fields worked then.

adwade 03-01-2014 06:21 PM

No sorry, as I'm still running vB3.8 myself.

JenniferK 03-01-2014 07:41 PM

Thanks for the reply! Hopefully someone else can help me out.

poita 03-09-2014 08:10 AM

Any step by step guide to get it working on 4.2.2?

This looks like a brilliant mod and would love to implement it on my forum

Toorak Times 04-19-2014 04:17 PM

Tried this again and it seemed to upload but then sent me a message saying templates merged and no product appears...any ideas on this little twist?


Update: I reloaded the xml, nothing, I uploaded again after doing a total Maintenance whip around and voila it appeared and seems to be working fantastically. I have to tell you I am rapt as this also works really well to enhance Calendar posts if you are a serious Publisher

rcull 06-06-2014 03:01 AM

I am having file version problems on my site and have to look at this mod as a suspect, it would be nice to have a proper update version for VB4

MusiquesElectro 07-31-2014 02:41 PM

Does anyone know if there is a version for vb 4.x ?

Thanks.

blind-eddie 07-31-2014 03:27 PM

<a href="https://vborg.vbsupport.ru/showthread.php?t=237116" target="_blank">https://vborg.vbsupport.ru/showthread.php?t=237116</a>

RichieBoy67 07-31-2014 03:29 PM

Quote:

Originally Posted by blind-eddie (Post 2509164)

Not so blind after all. :)

I was just going to post that link!

##Actually I was going to post a different link..will post as soon as I find it.

I could never get this one working correctly in 4.2 even though some claim to have had it working in 4.

The closest I could find is https://vborg.vbsupport.ru/showthread.php?t=234741 and I do not think it is close to what you want. I have a client that was also looking for better event management and forums for Vb4.2..

MusiquesElectro 07-31-2014 04:20 PM

Well, thank you blind-eddie for your link, but how can this help me ? (I am a noob sorry for that)

@ Richieboy : I already download this. But it does not create a new topic when an event is created in a calendar.

blind-eddie 07-31-2014 07:14 PM

Quote:

Originally Posted by MusiquesElectro (Post 2509161)
Does anyone know if there is a version for vb 4.x ?

Thanks.

first post wording...

Quote:

Originally Posted by MusiquesElectro (Post 2509170)
Well, thank you blind-eddie for your link, but how can this help me ? (I am a noob sorry for that)

Notice your first post wording.... So, I linked you to event forums for vb4

@ Richieboy : I already download this. But it does not create a new topic when an event is created in a calendar.

There is this addon that will do this for you.

MusiquesElectro 07-31-2014 08:18 PM

What I am searching is a mod that creates a topic when a user create an event in a calender. My mistake, I wasn't really clear, sorry.

The Farcaster's Event Attendance v3 (for vb4) allows to say if a user will be a part of the event. It doesn't create a topic in a specific forum when a user create a new event.
Thanks for your help.

blind-eddie 08-01-2014 03:52 AM

Quote:

Originally Posted by MusiquesElectro (Post 2509214)
What I am searching is a mod that creates a topic when a user create an event in a calender. My mistake, I wasn't really clear, sorry.

The Farcaster's Event Attendance v3 (for vb4) allows to say if a user will be a part of the event. It doesn't create a topic in a specific forum when a user create a new event.
Thanks for your help.

Yes, it does create new thread in forum regarding event for members to rsvp to.

MusiquesElectro 08-01-2014 06:57 AM

Are you sure for Farcaster's Event attendance https://vborg.vbsupport.ru/showthread.php?t=234741 ?

The modification list does not say that and I can't manage to create new thread in a specific forum when I add a new event. How do you do that ?

May be you are refering to an old combination of Farcaster's Event attendance with a mod in graveyard (https://vborg.vbsupport.ru/showthread.php?t=234794) ?

Thanks for your answer.

blind-eddie 08-01-2014 10:49 AM

No, I am referring to this one.

I have the vb3 version installed on my test site, it is really no different then the vb4 version, you just need to install it on your board and play with it.

I set up both on my test board but, use them separately.
If I used them together, a new thread woud be created without going to the calendar page.
For this demo, I will link you to the calendar to post a new event.

After you post the event, click new post.

Demo on 3.8 board.

Code:

http://blind-eddie.com/forum/calendar.php?do=add&type=single&c=1
Login: Test Account One
Password: 00000000


MusiquesElectro 08-01-2014 04:06 PM

You're right it does create a new topic on your forum.

But not with mine.

Here are the screens after I create an event with just Farcarter's mod :
https://vborg.vbsupport.ru/external/2014/08/53.png
https://vborg.vbsupport.ru/external/2014/08/54.png

And I did look at the options, none of them allow me to select a forum where the events will be created.

MusiquesElectro 08-05-2014 06:34 PM

So any idea ?

blind-eddie 08-05-2014 07:52 PM

I will install this on my localhost later today and see what I can do for you.

MusiquesElectro 08-06-2014 06:59 AM

Thank you very much :)

blind-eddie 08-08-2014 01:17 AM

16 hour days are killing lately, I am sorry. I will install and pm you when I am done.

tbworld 08-08-2014 03:15 AM

Quote:

Originally Posted by blind-eddie (Post 2510298)
16 hour days are killing lately, I am sorry. I will install and pm you when I am done.

You have a perfect 8 hours left, plenty of time. :)


All times are GMT. The time now is 05:06 PM.

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.02227 seconds
  • Memory Usage 1,853KB
  • 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
  • (4)bbcode_code_printable
  • (1)bbcode_php_printable
  • (9)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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