php forum
php mysql forum
php mysql smarty
 
Page 12 of 14 < 1 2 ... 10 11 12 13 14 >
Topic Options
#199244 - 01/18/05 07:36 AM Re: [6.6 - 6.7] [finished] Calendar
McJ Offline
Junior Member

Registered: 01/13/05
Posts: 19
Yup. Sure did. Then went on to be applied successfully. Locks when going to output. As mentioned previously, doesn't happen on other multihack files. This is the first one.

Top
#199245 - 01/19/05 12:11 AM Re: [6.6 - 6.7] [finished] Calendar
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25452
Loc: Texas
odd, it installs fine for me using the same files. I may be able to look at your files, but it'll probably be this weekend before I can. Are you sure you have the latest forum and multi-hack files?
_________________________
- Allen wavey
- What Drives You?

Top
#199246 - 02/24/05 03:09 PM Re: [6.6 - 6.7] [finished] Calendar
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
LK, I was writing a modification of this for a client and I noticed that when you add an event with a topic, that the link back to the topic is incorrect. Might want to fix it, it's in ubb_new_topic.cgi
_________________________
Code monkey like Fritos

Top
#199247 - 04/01/05 01:17 PM Re: [6.6 - 6.7] [finished] Calendar
LK Offline
Admin / Code Breaker

Registered: 03/24/01
Posts: 7396
Do you mean that it doesn't use the %ULTIMATEBB hash? Or is it really wrong? Because it looks fine to me...
_________________________

My Hacks Page (will be back with UBB 7!)
UBBDev - We put the class into UBB.classic!

Top
#199248 - 04/01/05 10:45 PM Re: [6.6 - 6.7] [finished] Calendar
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
I can't find where I did it, but the link was showing up as

http://www.domain.com/cgi/ultimatebb.cgi?ubb=get_topic;f=;t=

or something like that

I ended up doing something like

$pleh = "ubb=get_topic;f=$f;t=$thread";
print $ULTIMATEBB{$pleh};
_________________________
Code monkey like Fritos

Top
#199249 - 08/04/05 04:03 PM Re: [6.6 - 6.7] [finished] Calendar
twslex Offline
Member

Registered: 06/13/02
Posts: 100
Bit wierd and funny:

I had to uncheck, clear cache and check Show today's events in forum summary and clear cache again to get it all working correctly?

Just for someone's knowledge.

Top
#199250 - 08/06/05 02:02 AM Re: [6.6 - 6.7] [finished] Calendar
Poopy Pants Offline
Member

Registered: 08/22/01
Posts: 100
Is there a way to modify settings to show upcoming events for the month on the main ubb page instead of how it currently shows events which is basically the events that will happen that day.

Top
#199251 - 08/06/05 06:28 PM Re: [6.6 - 6.7] [finished] Calendar
LK Offline
Admin / Code Breaker

Registered: 03/24/01
Posts: 7396
It's not possible as easily, though you can make a sidebar and use the ubb_calendar_ssi iframe to see the small calendar box.

I may be looking into making it like you want it to be when I'm back to my computer in about a week.
_________________________

My Hacks Page (will be back with UBB 7!)
UBBDev - We put the class into UBB.classic!

Top
#199252 - 08/06/05 06:46 PM Re: [6.6 - 6.7] [finished] Calendar
Gizmo Administrator Offline
Wizard

Registered: 01/10/00
Posts: 5133
Loc: Portland, OR, USA
I must say that I do like the idea of showing "Events of the Month" vs "Events of the Day"...

Also showing perhaps links on day's with events when using the small calendar view which go to the calendar to display the happenings would be sweet...
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design Owner

Top
#199253 - 08/11/05 12:05 AM Re: [6.6 - 6.7] [finished] Calendar
LK Offline
Admin / Code Breaker

Registered: 03/24/01
Posts: 7396
Quote:
quote:
Also showing perhaps links on day's with events when using the small calendar view which go to the calendar to display the happenings would be sweet...
I thought it was already doing that confused (note: it doesn't do that for birthdays, because there is a birthday almost every day in big boards).
_________________________

My Hacks Page (will be back with UBB 7!)
UBBDev - We put the class into UBB.classic!

Top
#199254 - 10/03/05 05:07 AM Re: [6.6 - 6.7] [finished] Calendar
ADWOFF Offline
Content Queen

Registered: 05/07/01
Posts: 709
Loc: Pennsylvania
help Long time no post.

I just have discovered a problem with the calendar--after having it installed for over a year and a half! tipsy

In the control panel at the calendar, I have calendar set to only staff and selected members can post to the calendar.

Last night, we had a newbie post a new topic and ADD that topic to the calendar. eek

I have several forums that allow that option (i.e. posting a new topic to the calendar), but I *thought* only admin/mods could do so.

It seems like, however, anyone can add a new topic to the calendar in those forums.

Is there any way that I can change that--without the admin/mods losing the ability to post new topics to the calendar?

Am I making sense?!

---

Also, the K.I.S.S. method works best for me--it's been a LONG time since I've taken a gander at code! tipsy

Thanks!
_________________________
Sue
adwoff.com

Top
#199255 - 10/04/05 01:35 PM Re: [6.6 - 6.7] [finished] Calendar
LK Offline
Admin / Code Breaker

Registered: 03/24/01
Posts: 7396
Nice catch, I guess you're the first person to enable staff-only event posting and new topic event posting all together. smile

ubb_new_topic.cgi: (untested)
Find: (twice)
Code:
	my @forums = split(/ /, $vars_calendar{calendar_forum});
Add below:
Code:
@forums = split(/ /, 'hey sue') if ($user_profile[8] ne 'Administrator' && $user_profile[8] ne 'MegaModerator' && $user_profile[8] ne 'Moderator');
---

laugh (what's K.I.S.S method? tipsy )
_________________________

My Hacks Page (will be back with UBB 7!)
UBBDev - We put the class into UBB.classic!

Top
#199256 - 10/04/05 01:43 PM Re: [6.6 - 6.7] [finished] Calendar
ADWOFF Offline
Content Queen

Registered: 05/07/01
Posts: 709
Loc: Pennsylvania
Quote:
Originally posted by LK:

(what's K.I.S.S method? )


laugh Keep It Simple, Stupid! (with me being da stupid party wink tipsy )

Thanks, LK.

I'll give it a shot.

---

ETA--looks like it works! ( smash on wood)

Thanks, LK! thumbsup
_________________________
Sue
adwoff.com

Top
#199257 - 10/24/05 07:41 PM Re: [6.6 - 6.7] [finished] Calendar
McJ Offline
Junior Member

Registered: 01/13/05
Posts: 19
Awesome mod!!!

One question. If, at a later date, I upgrade or decide to restore my originally "modded" files and remove the calender mod, am I screwed?

i.e. does this mod change anything in my member data files, or anything else that would prevent me from uninstalling at a later time if I choose to?

Thanks again,

Justin.

Top
#199258 - 10/24/05 10:44 PM Re: [6.6 - 6.7] [finished] Calendar
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25452
Loc: Texas
Shouldn't change anything in the member data file - it used to add the birthdate, but now that's in the base code smile
_________________________
- Allen wavey
- What Drives You?

Top
#199259 - 10/27/05 09:43 AM Re: [6.6 - 6.7] [finished] Calendar
McJ Offline
Junior Member

Registered: 01/13/05
Posts: 19
Greetings fellow UBB'ers.

Another question. Some of you may remember my problem with an incredibly slow forum, even tho I'm on a dedicated server. My board is HERE

Anyways, I've noticed that since including the calendar mod, it's slowed down a little more, so I have this question.

Do the sub-routines in the calendar mod engage when the calendar isn't being viewed? i.e. for normal navigation around the forum WITHOUT accessing the calendar, is the mod at all used?

Please note tho, the mod is just awesome!!! I hope InfoPop/Groupee include this in their next update.

Greetings from Old Portsmouth, England. rockon

Top
#199260 - 10/27/05 02:57 PM Re: [6.6 - 6.7] [finished] Calendar
Gizmo Administrator Offline
Wizard

Registered: 01/10/00
Posts: 5133
Loc: Portland, OR, USA
I don't believe the calendar is run unless you have it included to run with the birthday listing).

Also, you can speed up your forum by making some archive forums and dumping old posts into it; you don't really want more than 10k posts in a forum, you should keep it well under it; it should speed you up quite a bit
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design Owner

Top
#199261 - 10/27/05 05:42 PM Re: [6.6 - 6.7] [finished] Calendar
McJ Offline
Junior Member

Registered: 01/13/05
Posts: 19
Quote:
Originally posted by Gizzy:

I don't believe the calendar is run unless you have it included to run with the birthday listing).


Hi Gizzy.

What do you mean, "included to run with the birthday listing" ?

Top
#199262 - 10/27/05 05:47 PM Re: [6.6 - 6.7] [finished] Calendar
LK Offline
Admin / Code Breaker

Registered: 03/24/01
Posts: 7396
In the control panel, when you rebuild member stats, you also rebuild the calendar birthday list. I guess Gizzy means that unless you choose to rebuild member stats (it doesn't do it on its own, only when you either upgrade the board or specifically tell it to rebuild), it shouldn't make your board any slower.
_________________________

My Hacks Page (will be back with UBB 7!)
UBBDev - We put the class into UBB.classic!

Top
#199263 - 10/27/05 05:55 PM Re: [6.6 - 6.7] [finished] Calendar
McJ Offline
Junior Member

Registered: 01/13/05
Posts: 19
Hi LK.

Yes, I see. Also, I have noticed that the option "Show avatar in birthdays?" was also selected. This would mean, as each post is made, the routine would run to see whether or not the member had a birthday, and if so display the member icon.

I have disabled this option, and performance has improved somewhat.

b/w LK. This is a great mod. Congratulations. And congratulations on this site also! Most excellent resource.

Gizzy. Yes, I have been in touch with InfoPop on the performance in general, and they also advised culling the posts/upgrading to Threads.

I think I'll end up upgrading, however, because it's awfully nice to see a forum section with half a million posts wink

Thanks to you both again.

Top
Page 12 of 14 < 1 2 ... 10 11 12 13 14 >


Moderator:  Charles, Gizmo 
Who's Online
0 registered (), 27 Guests and 12 Spiders online.
Key: Admin, Global Mod, Mod
Shout Box

Latest Posts
Spell Check [beta]
by Bill B
Yesterday at 09:16 PM
PhotoPost BB Code Popup
by AllenAyres
Yesterday at 09:41 AM
Problems reading a lot of old posts here
by AllenAyres
Yesterday at 09:35 AM
Forum 'Trader Ratings'.
by AllenAyres
Yesterday at 09:33 AM
Customization needed
by Gizmo
11/12/08 12:28 PM
Team UBBDev Rides Again!
by AllenAyres
11/11/08 02:16 PM
Active Topics.
by AllenAyres
11/11/08 02:13 PM
New Mods
User Authentication Class
by
01/19/07 02:59 PM
Multiple Identity Detector
by
12/30/06 06:39 PM
PhotoPost BB Code Popup
by
11/06/06 05:43 PM
Spell Check [beta]
by
10/17/06 09:24 PM
Newest Members
David DelMonte, nick1, Begbie, cenk, MATTO
13363 Registered Users
Top Posters
AllenAyres 25452
JoshPet 11330
Rick 8372
LK 7396
Lord Dexter 6503
Greg Hard 5533
Charles Capps 5438

 

 

 
fusionbb message board php hacks