php forum
php mysql forum
php mysql smarty
 
Page 11 of 14 < 1 2 ... 9 10 11 12 13 14 >
Topic Options
#199224 - 09/12/04 03:25 PM Re: [6.6 - 6.7] [finished] Calendar
LK Offline
Admin / Code Breaker

Registered: 03/24/01
Posts: 7396
Fixed laugh (although the error log wasn't updated)
_________________________

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

Top
#199225 - 09/12/04 03:36 PM Re: [6.6 - 6.7] [finished] Calendar
PhillipBurum Offline
Member

Registered: 11/02/03
Posts: 155
You are a genius! How did you do it?
_________________________
United Devices Points: [img]http://www.ubbdev.com/ud/?u=phillip.burum&s=1[/img]

Top
#199226 - 09/12/04 03:40 PM Re: [6.6 - 6.7] [finished] Calendar
PhillipBurum Offline
Member

Registered: 11/02/03
Posts: 155
Ok... I noticed that on the Forum Summary, Chat Forum shows no posts, but if you click on it, all the posts are there.

I am going to rebuild everything I can in the CP but I don't know if that'll work.

Thanks!
_________________________
United Devices Points: [img]http://www.ubbdev.com/ud/?u=phillip.burum&s=1[/img]

Top
#199227 - 09/12/04 03:57 PM Re: [6.6 - 6.7] [finished] Calendar
LK Offline
Admin / Code Breaker

Registered: 03/24/01
Posts: 7396
I guess you fixed that tipsy
_________________________

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

Top
#199228 - 09/12/04 06:15 PM Re: [6.6 - 6.7] [finished] Calendar
PhillipBurum Offline
Member

Registered: 11/02/03
Posts: 155
Yup ;-) Thanks!!
_________________________
United Devices Points: [img]http://www.ubbdev.com/ud/?u=phillip.burum&s=1[/img]

Top
#199229 - 09/12/04 11:21 PM Re: [6.6 - 6.7] [finished] Calendar
PhillipBurum Offline
Member

Registered: 11/02/03
Posts: 155
Oh... Bad news!

Ok, so Ubb Code Tags aren't working, and when you click on a members profile you get this:

Global symbol "%pm_topic" requires explicit package name at CGIPath/ubb_profile.cgi line 84.
Global symbol "%pm_topic_data" requires explicit package name at CGIPath/ubb_profile.cgi line 84.
Global symbol "%pm_date" requires explicit package name at CGIPath/ubb_profile.cgi line 84.
Global symbol "%pm_time" requires explicit package name at CGIPath/ubb_profile.cgi line 84.
Global symbol "%pm_post" requires explicit package name at CGIPath/ubb_profile.cgi line 84.
Global symbol "%pm_icon" requires explicit package name at CGIPath/ubb_profile.cgi line 84.
Global symbol "%pm_signature" requires explicit package name at CGIPath/ubb_profile.cgi line 84.
Global symbol "%pm_to" requires explicit package name at CGIPath/ubb_profile.cgi line 84.
Global symbol "%pm_from" requires explicit package name at CGIPath/ubb_profile.cgi line 84.
Global symbol "$user_public_name" requires explicit package name at CGIPath/ubb_profile.cgi line 84.
Global symbol "$key" requires explicit package name at CGIPath/ubb_profile.cgi line 84.
Global symbol "$star" requires explicit package name at CGIPath/ubb_profile.cgi line 84.
Global symbol "$read_marker_1" requires explicit package name at CGIPath/ubb_profile.cgi line 84.
Global symbol "$read_marker_2" requires explicit package name at CGIPath/ubb_profile.cgi line 84.
Global symbol "$pm_count" requires explicit package name at CGIPath/ubb_profile.cgi line 84.
syntax error at CGIPath/ubb_profile.cgi line 84, near "$pm_count)"
CGIPath/ubb_profile.cgi has too many errors.
_________________________
United Devices Points: [img]http://www.ubbdev.com/ud/?u=phillip.burum&s=1[/img]

Top
#199230 - 09/13/04 06:37 AM Re: [6.6 - 6.7] [finished] Calendar
LK Offline
Admin / Code Breaker

Registered: 03/24/01
Posts: 7396
Download the plain UBB zip from Infopop and rehack everything, using regular programs (such as Notepad) and regular FTP clients smile
_________________________

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

Top
#199231 - 10/03/04 03:38 AM Re: [6.6 - 6.7] [finished] Calendar
GATOR420 Offline
Member

Registered: 01/31/03
Posts: 118
Hmm... I have calendar set to only staff and selected members can post to the calendar. When I go to an individual users account and select the option that they can post new events to the calendar, they still can't. Any ideas?

Thanks in advance...
_________________________
-GATOR

"Pain is temporary, Pride is forever"

Top
#199232 - 12/25/04 12:35 PM Re: [6.6 - 6.7] [finished] Calendar
tintin Offline
Junior Member

Registered: 12/25/04
Posts: 6
Loc: Birmingham - UK
Seasons Greetings,

I have just applied this mod to my board and I am well chuffed that i got it all right first time and so far all seems to be going great.

My question is this - is there a way to have a moderator notified when a new event is added?

Thanks in advance

Howard

Top
#199233 - 12/25/04 08:48 PM Re: [6.6 - 6.7] [finished] Calendar
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
Give this a shot, no guarantee it'll work.

In ubb_lib_calendar.cgi
FIND:
Code:
&do_add_event_general($eventtitle, $julian_day, 1, $message, $username);
ADD AFTER:
Code:
	my $calendar_message = qq~$username has added a new event.
It can be found <a href="~ . $ULTIMATEBB{"ubb=calendar;date=$julian_day"} .
		qq~">here. ($eventtitle)</a>~;

	my $forum = 4;
	my $Moderator = &build_mod_emails($forum);
	&RequireCode("$vars_config{CGIPath}/ubb_lib_mail.cgi");
	&ubb_mail_tng({
		'EmailTo' => $Moderator,
		'EmailFrom' => $vars_display{BBEmail},
		'EmailReplyTo' => $vars_display{BBEmail},
		'BCCList' => undef,
		'Subject' => qq~$username has added a calendar event (Title: $eventtitle)~,
		'TextMessage' => $calendar_message . " ... " . $ULTIMATEBB{"ubb=calendar;date=$julian_day"},
		'HTMLMessage' => $calendar_message,
		'CCList' => undef,
	});
Set $forum to whichever forum who's moderators you want to know about the new event
_________________________
Code monkey like Fritos

Top
#199234 - 12/27/04 05:44 AM Re: [6.6 - 6.7] [finished] Calendar
tintin Offline
Junior Member

Registered: 12/25/04
Posts: 6
Loc: Birmingham - UK
The email layout needs a tweek but yup that works well.

Thanks for your help with this woot

Howard

Top
#199235 - 01/08/05 08:33 PM Re: [6.6 - 6.7] [finished] Calendar
tintin Offline
Junior Member

Registered: 12/25/04
Posts: 6
Loc: Birmingham - UK
I seem to have a problem with pages being cached, this seems to be stopping the main forum page from updating to new events. The calendar moves forward but the event gets stuck until you clear tge forum summary cache.

Have i done something?

Thanks

Howard

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

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
That is how it's supposed to work, but the cache is normally cleared more than once a day. It is cleared any time someone makes a post, as well as when any settings are changed.


I don't know what you can do with cron jobs, but it'd be relatively easy to have the cache cleared at the end of every day
_________________________
Code monkey like Fritos

Top
#199237 - 01/09/05 06:14 AM Re: [6.6 - 6.7] [finished] Calendar
tintin Offline
Junior Member

Registered: 12/25/04
Posts: 6
Loc: Birmingham - UK
Hmmm just having a quiet patch on the forum so this would explain that then. 'cron jobs' ive heard the name before but i have no idea ????

Thanks

Top
#199238 - 01/09/05 10:17 AM Re: [6.6 - 6.7] [finished] Calendar
1QuickSI Offline
Coder

Registered: 06/10/01
Posts: 705
Loc: CT
A CRON job is the ability to schedule tasks to be completed at different intervals through out the day, week or month.
_________________________
...Steven
Hostboard.com
Running UBB v6.1.0.4
Doing what NO other UBB in the world is doing.
The first & only production UBB powered by MySQL.

Top
#199239 - 01/09/05 04:58 PM Re: [6.6 - 6.7] [finished] Calendar
tintin Offline
Junior Member

Registered: 12/25/04
Posts: 6
Loc: Birmingham - UK
Hmmmm do they work with the cursed windows?

Top
#199240 - 01/13/05 10:49 AM Re: [6.6 - 6.7] [finished] Calendar
McJ Offline
Junior Member

Registered: 01/13/05
Posts: 19
Greetings.

Does anyone have a "working" multi-hack for Calendar on 6.7.2? Version downloaded from your Multi-hack page crashes MULTIHACK before even exporting modified files.

Thanks.

McJ.

Top
#199241 - 01/16/05 03:04 AM Re: [6.6 - 6.7] [finished] Calendar
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25452
Loc: Texas
hmm.. I just re-exported it and uploaded. The new file is 5 bytes smaller than the old one, maybe it was corrupted some how.

It should work now, let me know if it doesn't smile
_________________________
- Allen wavey
- What Drives You?

Top
#199242 - 01/17/05 07:02 AM Re: [6.6 - 6.7] [finished] Calendar
McJ Offline
Junior Member

Registered: 01/13/05
Posts: 19
Nope. Locks up after public_common.pl mod applied successfully. Seems to be an exporting prob. Used other mhp files and they work OK. Maybe it's just me?

If I send you my UBB files, would you try?

Top
#199243 - 01/17/05 11:55 PM Re: [6.6 - 6.7] [finished] Calendar
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25452
Loc: Texas
Did the file pass the 'analyze' mode?
_________________________
- Allen wavey
- What Drives You?

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


Moderator:  Charles, Gizmo 
Who's Online
0 registered (), 26 Guests and 11 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