vBadvanced Forums  
Go Back   vBadvanced Forums > vBadvanced Products > vBadvanced CMPS > Add-On Modules & Modifications > vBa CMPS v3.x & 2.x > Add-On Modules (version 3.x & 2.x)

Reply
 
Thread Tools Display Modes
  #21  
Old 04-13-2009, 07:06 PM
Lionel Lionel is offline
Senior Member
 
Join Date: Jan 2004
Location: Miami
Posts: 1,040
Default

I found out the reason. At least in my version. The code below was missing the highlighted '=' operator

if ($cc_events == intval($mod_options['portal_cc_showevents']))
__________________
Real useful and Cool vBulletin addons
Reply With Quote
  #22  
Old 04-13-2009, 07:09 PM
Lionel Lionel is offline
Senior Member
 
Join Date: Jan 2004
Location: Miami
Posts: 1,040
Default

I looked at original code, it was missing

Quote:
if ($cc_events = intval($mod_options['portal_cc_showevents']))
btw thanks! Nicely done!
__________________
Real useful and Cool vBulletin addons
Reply With Quote
  #23  
Old 04-13-2009, 07:21 PM
Lionel Lionel is offline
Senior Member
 
Join Date: Jan 2004
Location: Miami
Posts: 1,040
Default

the first line was also missing it

if ($cc_calid == intval($mod_options['portal_cc_calendarid']))

edit ... actually I think the first line should have been

Quote:
$cc_calid = intval($mod_options['portal_cc_calendarid']);
// ######################### Calendar #########################
if ($cc_calid)
{
__________________
Real useful and Cool vBulletin addons

Last edited by Lionel; 04-13-2009 at 07:55 PM.
Reply With Quote
  #24  
Old 04-13-2009, 11:02 PM
Tom M Tom M is offline
Senior Member
 
Join Date: Jan 2004
Posts: 1,867
Default

Quote:
Originally Posted by Lionel View Post
I found out the reason. At least in my version. The code below was missing the highlighted '=' operator

if ($cc_events == intval($mod_options['portal_cc_showevents']))
Quote:
Originally Posted by Lionel View Post
I looked at original code, it was missing



btw thanks! Nicely done!
Quote:
Originally Posted by Lionel View Post
the first line was also missing it

if ($cc_calid == intval($mod_options['portal_cc_calendarid']))

edit ... actually I think the first line should have been
Actually, all of those should be OK as-is. It's simply doing the test and assigning the value at the same time. While there is no harm in doing the assign and following that with the test there should be no functional difference.

Do you have any other event-related plugins running that might mess with the eventstore?
__________________
Tom Morris
Porsche Boxster discussion forum.
Today's Conservative discussion forum.
Reply With Quote
  #25  
Old 04-13-2009, 11:16 PM
Lionel Lionel is offline
Senior Member
 
Join Date: Jan 2004
Location: Miami
Posts: 1,040
Default

No, no other event code. It was also not displaying events.
In both instances I had to do

Quote:
$cc_calid = intval($mod_options['portal_cc_calendarid']);
// ######################### Calendar #########################
if ($cc_calid)
{
and
Quote:
$cc_events = intval($mod_options['portal_cc_showevents']);
if ($cc_events)
{
I am running 3.82, not that would make a difference.
__________________
Real useful and Cool vBulletin addons
Reply With Quote
  #26  
Old 05-11-2009, 07:49 AM
haggles haggles is offline
Junior Member
 
Join Date: Dec 2007
Location: Australia
Posts: 4
Default

Thanks for your work on this Tom, looks like a great module.

Last edited by haggles; 05-11-2009 at 08:47 AM. Reason: worked it out!
Reply With Quote
  #27  
Old 05-22-2009, 11:58 AM
xTerMn8R xTerMn8R is offline
Member
 
Join Date: Jan 2006
Posts: 35
Default

Hi Tom,
I had this working in the past but have to admit I've had my share of issues with it. Couldn't ever get the birthdays to work (show) with the Combo Calander. So I decided to upgrade to this version and Now I get Nothing even though my Home Page shows the Module as being in the right column. I also had the Birthdays Module(default) added since they didnt show with the combo and Now even though I removed it from the Page it still showed up. I actually had to go to the BD's Module and de-activate it to get it to dissapear. I'm Running vb3.82 with CMPS 3.2 Any help would be deepy appreciated as I REALLY like the concept just can never get it to display correctly...and at this point at ALL???

Thank you,
xT
Reply With Quote
  #28  
Old 05-22-2009, 02:13 PM
Tom M Tom M is offline
Senior Member
 
Join Date: Jan 2004
Posts: 1,867
Default

Do you have a link?
__________________
Tom Morris
Porsche Boxster discussion forum.
Today's Conservative discussion forum.
Reply With Quote
  #29  
Old 05-22-2009, 02:13 PM
xTerMn8R xTerMn8R is offline
Member
 
Join Date: Jan 2006
Posts: 35
Cool

Problem Solved, It apparently was summin in the NEW CMPS or my lack of experience with it. Anyway when I went to Modify the Page VB told me it had Modules active on the page that weren't summin or other. So I just Ok'd it and it put the combo calander there. I still had to modify the templates to use 8 columns instead of 7 but I can deal with that.

Thank you for your Quick responce to my issue Tom, too bad our politicians dont work with same vigilance, we'd all be a lot better off.

xT
Super Skunk Racing
Reply With Quote
  #30  
Old 05-29-2009, 07:58 PM
ibaker's Avatar
ibaker ibaker is offline
Senior Member
 
Join Date: Feb 2008
Posts: 295
Default

I have been having a problem integrating PhotoPlog with CMPS and have resolved the problem - If I add the combo calendar as a module to the PhotoPlog page the page ends up blank.

Perhaps someone may be able to advise if there is a way to do this - thanks!
Reply With Quote
  #31  
Old 05-29-2009, 11:09 PM
Tom M Tom M is offline
Senior Member
 
Join Date: Jan 2004
Posts: 1,867
Default

Quote:
Originally Posted by caitian View Post
I have been having a problem integrating PhotoPlog with CMPS and have resolved the problem - If I add the combo calendar as a module to the PhotoPlog page the page ends up blank.

Perhaps someone may be able to advise if there is a way to do this - thanks!
That's not much to go on... link?
__________________
Tom Morris
Porsche Boxster discussion forum.
Today's Conservative discussion forum.
Reply With Quote
  #32  
Old 05-29-2009, 11:44 PM
ibaker's Avatar
ibaker ibaker is offline
Senior Member
 
Join Date: Feb 2008
Posts: 295
Default

Tom, unfortunately that is all I have to go on.

If someone else is using PhotoPlog and the Combo Calendar perhaps let us know if you have the same issue.

Tom I will PM you a link to my site
Reply With Quote
  #33  
Old 07-06-2009, 11:59 PM
Jaxel Jaxel is offline
Junior Member
 
Join Date: Sep 2005
Posts: 28
Default

I'm having issues with this mod... I clearly have 5 events in the next 28 days...

http://www.astralheat.com/cmps_index.php

But the mod (right) says I have none. And could the mod be edited to display custom field id 1 instead of the name of the event?
Reply With Quote
  #34  
Old 07-07-2009, 07:36 AM
Tom M Tom M is offline
Senior Member
 
Join Date: Jan 2004
Posts: 1,867
Default

Quote:
Originally Posted by Jaxel View Post
I'm having issues with this mod... I clearly have 5 events in the next 28 days...

http://www.astralheat.com/cmps_index.php

But the mod (right) says I have none. And could the mod be edited to display custom field id 1 instead of the name of the event?
Do you display events on your FORUMHOME page? I didn't see any as a Guest and that would also impact your Home page. Make sure both the setting for vb is set to higher than the default value, which is 1 day, along with setting the number of days for the module as it is the MINIMUM of those 2 values that will be displayed by the module.

Custom fields can be displayed but you will need to modify the php file to do so as it's not a default feature. As I recall someone did that earlier so you might try searching the thread.
__________________
Tom Morris
Porsche Boxster discussion forum.
Today's Conservative discussion forum.
Reply With Quote
  #35  
Old 07-07-2009, 06:59 PM
socalrico's Avatar
socalrico socalrico is offline
Junior Member
 
Join Date: Nov 2007
Posts: 1
Default

I've got a strange issue, and I've tried a combination of things via edit modules and add/remove modules.

If I use the combo calendar alone, it displays the calendar and the birthdays, but there isn't any event updates.

If I add the default mini calendar. Then the event updates show, but there are 2 calendars stacked on top of each other.

Has anyone had this issue? and what was done to resolve it?
Reply With Quote
  #36  
Old 07-07-2009, 09:30 PM
Tom M Tom M is offline
Senior Member
 
Join Date: Jan 2004
Posts: 1,867
Default

Quote:
Originally Posted by socalrico View Post
I've got a strange issue, and I've tried a combination of things via edit modules and add/remove modules.

If I use the combo calendar alone, it displays the calendar and the birthdays, but there isn't any event updates.

If I add the default mini calendar. Then the event updates show, but there are 2 calendars stacked on top of each other.

Has anyone had this issue? and what was done to resolve it?
First things first...

Do you have events showing on the FORUMHOME page? If so, how many days in advance?

A link would also be helpful.
__________________
Tom Morris
Porsche Boxster discussion forum.
Today's Conservative discussion forum.
Reply With Quote
  #37  
Old 07-11-2009, 08:23 PM
Coroner Coroner is offline
Junior Member
 
Join Date: Apr 2008
Posts: 13
Default

Got a questions.I have vBulletin 3.8.3 with vBadvanced v3.2.0. I uninstalled the old version of combo calendar and installed this one and have a problem.

Events show up fine but under "Todays Birthdays" only the word "array" shows? I keep playing with the settings but just can't find a solution. There are 2 birthdays this month so I figured something show show up of nothing instead of the word "Array"

Here's a link http://rippersplace.com/forum/index.php?

Please let me know!

Thanks.
Reply With Quote
  #38  
Old 07-12-2009, 08:06 AM
Tom M Tom M is offline
Senior Member
 
Join Date: Jan 2004
Posts: 1,867
Default

That was a problem with the older version when running on 3.8.x and this version was supposed to correct that. The only suggestion I have at this point is to uninstall the module, download it again from the 1st post in this thread and reinstall things.

Make sure to overwrite the php file if it asks about that as the correction is located there. You might even want to delete the existing version of the file from the server if you have access to do so.
__________________
Tom Morris
Porsche Boxster discussion forum.
Today's Conservative discussion forum.
Reply With Quote
  #39  
Old 07-12-2009, 12:48 PM
Coroner Coroner is offline
Junior Member
 
Join Date: Apr 2008
Posts: 13
Default

I removed the original php file and ran a fresh install. Now the calendar shows up but not events or birthdays?

Module parent is set to none. I have this in the templates used box:
adv_portal_calendar_week
adv_portal_calendar_header
adv_portal_calendar_day
adv_portal_calendar_day_other
calendar_smallmonth_day
adv_portal_birthdays
adv_portal_todaysevents
adv_portal_upcomingevents

What other settings do I need?

Please let me know.
Reply With Quote
  #40  
Old 07-12-2009, 02:33 PM
Coroner Coroner is offline
Junior Member
 
Join Date: Apr 2008
Posts: 13
Default

Reinstalled many times. Set an event for November with combo event days set at 365 and nothing shows. Entered the birth date for my test account for today and nothing shows.

Now I'm in a worst position then before. At least events worked but now nothing. I could have just turned birthdays off and been happy

I have run out of options and patients. Should I assume that this no longer works with the latest versions of cmps and vBulletin?

Every mod and installs are all 100% updated and working fine except this?
Attached Images
File Type: jpg cmps1.jpg (207.9 KB, 9 views)
File Type: jpg cmps2.jpg (145.3 KB, 5 views)
File Type: jpg cmps4.jpg (144.2 KB, 5 views)
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
[Module] Combo: Calendar + Birthdays + Upcoming Events Tom M Add-On Modules (version 3.x & 2.x) 405 01-19-2010 06:27 PM
Displaying upcoming events on mini calendar streetmachine "How Do I..." Questions 2 05-05-2008 12:51 PM
Upcoming events: display custom calendar fields? trgreen "How Do I..." Questions 1 06-16-2007 10:01 AM
Move Birthdays from stats module to Upcoming events? MotoUp Troubleshooting / "How do I..." Questions 12 03-03-2005 01:28 PM


All times are GMT -4. The time now is 10:11 AM.

Forums Powered by vBulletin, Copyright ©2000-2009, Jelsoft Enterprises Ltd.
Please note that vBadvanced is in no way affiliated with Jelsoft Enterprises Ltd, nor will Jelsoft be able to provide any support for our products.