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)

Taragon 03-23-2009 09:20 PM

Quote:

Originally Posted by Gordita (Post 1773833)
So has the developer (Evercraft) officially abandoned this?

Yes, however: http://vbenhancer.com/evercraft-even...-mitchel/2500/

BBR-APBT 03-29-2009 01:58 AM

When you have sub forums it doesn't post to the correct forum. Any ideas how to fix this?
It only reads the top calendar id and forum id in the list. So it post all events in the very first forum in the list in the settings.

So I have:
1:9
1:34
1:35
1:36
1:37
1:38
1:39

It post the to the correct calendar. I guess thats cause its only one calendar I am using. But it makes all threads in forum id 9.


I know its in this code.


PHP Code:

// find the forum to add a thread to
$lv_vb_eventforums_map preg_split('/[\n:]/'trim($this->registry->options['lv_vb_eventforums_map']));
for(
$lv_vb_eventforums_i 0$lv_vb_eventforums_i<count($lv_vb_eventforums_map); $lv_vb_eventforums_i+=2)
{
    if(
$this->fetch_field('calendarid') == intval($lv_vb_eventforums_map[$lv_vb_eventforums_i]))
    {
        
$lv_vb_eventforums_forumid $lv_vb_eventforums_map[$lv_vb_eventforums_i+1];
        break;
    }
}

if(isset(
$lv_vb_eventforums_forumid))
{
  if(isset(
$this->info['lv_vb_eventforums_linkeventtothread']) && ($this->info['lv_vb_eventforums_linkeventtothread'] > 0))
  {
    
// add eventid to the thread
        
$this->dbobject->query_write("
            UPDATE " 
TABLE_PREFIX "thread
            SET lv_vb_eventforums_eventid = " 
intval($this->fetch_field('eventid')) . "
            WHERE threadid = " 
intval($this->info['lv_vb_eventforums_linkeventtothread']) . "
        "
);
        
        
// add threadid to this event
        
$this->set('lv_vb_eventforums_threadid'$this->info['lv_vb_eventforums_linkeventtothread']);
        
$this->dbobject->query_write("
            UPDATE " 
TABLE_PREFIX "event
            SET lv_vb_eventforums_threadid = " 
intval($this->info['lv_vb_eventforums_linkeventtothread']) . "
            WHERE eventid = " 
intval($this->fetch_field('eventid')) . "
        "
);
  }



VR-Fist 03-29-2009 08:16 PM

Well, anyone solved the blank-page problem in 3.8.1?

BBR-APBT 03-30-2009 07:49 PM

Quote:

Originally Posted by VR-Fist (Post 1779934)
Well, anyone solved the blank-page problem in 3.8.1?

its working on my 3.8.1 just fine.

powerful_rogue 03-31-2009 06:15 PM

Quote:

Originally Posted by Taragon (Post 1775341)

Announcement was made back in Oct 2008 with no further news.

seax19 05-03-2009 09:43 PM

Tried to run this on 373 and find everythings working except theres no reply buttons in the threads first post in event forum, so it works for posting new calendar linked event threads from the forum section, but then no one has any way to reply to them. Anyone seen this issue before?

I also contacted the site linked above to ask who now supports this mod and was told:

Quote:

i actually did not have time to have a look at this addon because the original author continued his development, so i had no need to look at it... sorry.
So hes out - looks like someone needs to go back to the original author and adopt this again...? Or if someone now 'owns' it, who?

BBR-APBT 05-06-2009 10:22 PM

Quote:

Originally Posted by BBR-APBT (Post 1779442)
When you have sub forums it doesn't post to the correct forum. Any ideas how to fix this?
It only reads the top calendar id and forum id in the list. So it post all events in the very first forum in the list in the settings.

So I have:
1:9
1:34
1:35
1:36
1:37
1:38
1:39

It post the to the correct calendar. I guess thats cause its only one calendar I am using. But it makes all threads in forum id 9.


I know its in this code.


PHP Code:

// find the forum to add a thread to
$lv_vb_eventforums_map preg_split('/[\n:]/'trim($this->registry->options['lv_vb_eventforums_map']));
for(
$lv_vb_eventforums_i 0$lv_vb_eventforums_i<count($lv_vb_eventforums_map); $lv_vb_eventforums_i+=2)
{
    if(
$this->fetch_field('calendarid') == intval($lv_vb_eventforums_map[$lv_vb_eventforums_i]))
    {
        
$lv_vb_eventforums_forumid $lv_vb_eventforums_map[$lv_vb_eventforums_i+1];
        break;
    }
}

if(isset(
$lv_vb_eventforums_forumid))
{
  if(isset(
$this->info['lv_vb_eventforums_linkeventtothread']) && ($this->info['lv_vb_eventforums_linkeventtothread'] > 0))
  {
    
// add eventid to the thread
        
$this->dbobject->query_write("
            UPDATE " 
TABLE_PREFIX "thread
            SET lv_vb_eventforums_eventid = " 
intval($this->fetch_field('eventid')) . "
            WHERE threadid = " 
intval($this->info['lv_vb_eventforums_linkeventtothread']) . "
        "
);
        
        
// add threadid to this event
        
$this->set('lv_vb_eventforums_threadid'$this->info['lv_vb_eventforums_linkeventtothread']);
        
$this->dbobject->query_write("
            UPDATE " 
TABLE_PREFIX "event
            SET lv_vb_eventforums_threadid = " 
intval($this->info['lv_vb_eventforums_linkeventtothread']) . "
            WHERE eventid = " 
intval($this->fetch_field('eventid')) . "
        "
);
  }



No one found a fix for this?

benstillman 05-06-2009 11:26 PM

FYI for you 3.8 users.... if you turn on error logging and display errors in php, you'll get this:

Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /path/to/forums.php(67) : eval()'d code on line 194

Disable this plugin, and the error goes away.

djsd 05-11-2009 05:04 PM

I also want to post all events to google calendar and keep them in sync when editing (no editing will be done inside google), so that people get more options in how to subscribe to events and more importantly into how to get the event information into their desktop/mobile calendar clients or into blogs like wordpress.

I am quite new to vbulletin but very experienced in PHP/SQL development in general. I am worried that whatever I need to add could screw up this mod. Would this be a feature worth while adding to this mod itself and would such code contributions be accepted?

RichieBoy67 05-29-2009 06:12 AM

It would be great if someone could get these working with 3.8...these types of mods are few and needed..


All times are GMT. The time now is 07:49 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.02037 seconds
  • Memory Usage 1,792KB
  • 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_php_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)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