Welcome, Guest. Please Login or Register.
April 26, 2024, 11:37:28 PM
Home Help Search Log in Register
News: SMF is the next generation in forum software, almost completely re-written from the ground up, make sure you don't fall for cheap imitations that suffer from feature bloat!

YaBB SE Community  |  Development  |  Completed mods  |  [Done] Calendar Mod [Ver 1.4] « previous next »
Pages: 1 ... 8 9 [10] 11 12 ... 23 Reply Ignore Print
Author Topic: [Done] Calendar Mod [Ver 1.4]  (Read 148270 times)
Webby
Beta Tester
YaBB God
*****
Posts: 829


Some mistakes are too funny to make only once.

ICQ - 9814812webby@salesplaza.nl WWW
Re:[Beta] Calendar Mod [New Ver 1.3]
« Reply #135 on: May 14, 2002, 05:19:44 PM »
Reply with quote

I have asked a question two times.....really, nobody bothers replying to it.  It's a shame...... :-[
Logged

Webby of salesplaza.nl
The YaBBSE buttongenerator : Click HERE !
Myiasis
Full Member
***
Posts: 178


I'm a llama!

Re:[Beta] Calendar Mod [New Ver 1.3]
« Reply #136 on: May 14, 2002, 05:25:17 PM »
Reply with quote

Quote from: Webby on May 14, 2002, 05:19:44 PMI have asked a question two times.....really, nobody bothers replying to it.  It's a shame...... :-[

Are you talking about that image in the day thing? That's not my code, I haven't even looked at it. You'll have to get the author of that mod-mod to answer questions regarding that. :)
Logged
Webby
Beta Tester
YaBB God
*****
Posts: 829


Some mistakes are too funny to make only once.

ICQ - 9814812webby@salesplaza.nl WWW
Re:[Beta] Calendar Mod [New Ver 1.3]
« Reply #137 on: May 14, 2002, 06:19:48 PM »
Reply with quote

Yep ( I wasn't talking to you by the way, so don't get me wrong.... )
Logged

Webby of salesplaza.nl
The YaBBSE buttongenerator : Click HERE !
Jeff Lewis
Global Moderator
YaBB God
*****
Posts: 10149


I'm a llama!

WWW
Re:[Beta] Calendar Mod [New Ver 1.3]
« Reply #138 on: May 14, 2002, 06:54:57 PM »
Reply with quote

Can the person who has been writing this contact me? :)

[email protected]
Logged

Webby
Beta Tester
YaBB God
*****
Posts: 829


Some mistakes are too funny to make only once.

ICQ - 9814812webby@salesplaza.nl WWW
Re:[Beta] Calendar Mod [New Ver 1.3]
« Reply #139 on: May 14, 2002, 06:58:05 PM »
Reply with quote

Where is that handy mod-writer ?!

 :D
Logged

Webby of salesplaza.nl
The YaBBSE buttongenerator : Click HERE !
D8TA
Jr. Member
**
Posts: 55


I'm a Christian

WWW
Re:[Beta] Calendar Mod [New Ver 1.3]
« Reply #140 on: May 15, 2002, 05:16:42 PM »
Reply with quote

I have installed this mod using Boardmod with success. I am using mySQL, what is the best way to input the database information. I see where the readme talks about cut an paste changinging the prefix to the one the rest of the DB uses. I don't see where to do this at anywhere. I have created thes table <prefix>calendar(
   id int unsigned auto_increment not null primary key,
   id_board int unsigned not null,
   id_topic int unsigned not null,
   title char(30) not null,
   id_member int unsigned not null,
   month tinyint not null,
   day tinyint not null,
   year smallint not null
 
Although I am really unsure where and what to do with the rest of the information for the holidays. Can anyone please help me. Anyone else who has used boardmod to install this could you give me some tips on what else you done to get the database part working. That is where I am confused ??? Thanks
Logged

Jack of all trades.....Master of none.
Myiasis
Full Member
***
Posts: 178


I'm a llama!

Re:[Beta] Calendar Mod [New Ver 1.3]
« Reply #141 on: May 15, 2002, 05:23:23 PM »
Reply with quote

Did you put a prefix on the tables when you installed the board software? If so, use a text editor and just do a search/replace on "<prefix>" with whatever you used. If your tables are called "yabbse_members"  then you need to replace all of the "<prefix>" with "yabbse_".

You said you created the table... Although you'll need to redo it with the proper prefix on it, or no prefix. The rest of the database statements get run the exact same way you created the table.

What tool did you use to create the table from the create table statement? Use that same tool. You just need to fix all the "<prefix>" and then run all those statements -- same way.
Logged
D8TA
Jr. Member
**
Posts: 55


I'm a Christian

WWW
Re:[Beta] Calendar Mod [New Ver 1.3]
« Reply #142 on: May 15, 2002, 05:27:30 PM »
Reply with quote

I manually inputed the main tables. I was using MySQL

« Last Edit: May 15, 2002, 05:34:01 PM by D8TA » Logged

Jack of all trades.....Master of none.
Myiasis
Full Member
***
Posts: 178


I'm a llama!

Re:[Beta] Calendar Mod [New Ver 1.3]
« Reply #143 on: May 15, 2002, 05:37:26 PM »
Reply with quote

You can just take that entire section of database updates and paste it into the mysql client. Do the search/replace on the <prefix> in a text editor, copy the text to the clip board and paste it into whatever telnet client you are using while connected to the database in mysql.
Logged
Daniel D.
Mod Team
YaBB God
*****
Posts: 2935


Re:[Beta] Calendar Mod [New Ver 1.3]
« Reply #144 on: May 15, 2002, 06:41:52 PM »
Reply with quote

I installed the mod and insert the statements, but you've to write it without your comments in the 'readme.txt' because I had to insert the statements three times in phpAdmin before all (!) took effect.

Perhaps it works, but not with my database :-[...

Finally the mod itself works - nice job ! :D
Logged

Jeff Lewis
Global Moderator
YaBB God
*****
Posts: 10149


I'm a llama!

WWW
Re:[Beta] Calendar Mod [New Ver 1.3]
« Reply #145 on: May 15, 2002, 07:01:20 PM »
Reply with quote

A couple of things with this...

1) How do you remove an event from the calendar?
2) When you move a thread the event was posted, it doesn't change it in the calendar.
Logged

Myiasis
Full Member
***
Posts: 178


I'm a llama!

Re:[Beta] Calendar Mod [New Ver 1.3]
« Reply #146 on: May 15, 2002, 07:27:29 PM »
Reply with quote

Quote from: Daniel D. on May 15, 2002, 06:41:52 PMI installed the mod and insert the statements, but you've to write it without your comments in the 'readme.txt' because I had to insert the statements three times in phpAdmin before all (!) took effect.

Perhaps it works, but not with my database :-[...

Finally the mod itself works - nice job ! :D

Now that you mention it, I think I read somewhere that those style of comments were added for convenience recently... Seems familiar anyway. It works on my system here but I have installed the latest release of MySQL. I'll take them out. It's just a habit for me to do them that was from using MS-SQL Server.
Logged
Myiasis
Full Member
***
Posts: 178


I'm a llama!

Re:[Beta] Calendar Mod [New Ver 1.3]
« Reply #147 on: May 15, 2002, 07:30:58 PM »
Reply with quote

Quote from: Jeff Lewis on May 15, 2002, 07:01:20 PMA couple of things with this...

1) How do you remove an event from the calendar?
2) When you move a thread the event was posted, it doesn't change it in the calendar.

It should, there were some changes to the RemoveThread.php and ModifyMessage.php designed to remove the event if the thread is removed via the "Remove Topic" or whatever the admin/mod button says and also if you use the Delete and it's the last remaining message in the thread. Working for me at least. :)

You can also delete an event from the calendar. The red asterisk that shows up is for editing. It only shows up if you are the creator of the event or admin/global mod. You can delete the event from the Edit Event form.
Logged
PioneeR
Llama Hunter
YaBB God
*****
Posts: 767


Re:[Beta] Calendar Mod [New Ver 1.3]
« Reply #148 on: May 15, 2002, 07:34:24 PM »
Reply with quote

I have installed your lovely calendar mod. Is it possible to just post an event without linking it to a post/thread??

Thanks

Logged
Jeff Lewis
Global Moderator
YaBB God
*****
Posts: 10149


I'm a llama!

WWW
Re:[Beta] Calendar Mod [New Ver 1.3]
« Reply #149 on: May 15, 2002, 07:36:00 PM »
Reply with quote

I mean if i post it to general board and move it to test board, it still points to the old location :)
Logged

Pages: 1 ... 8 9 [10] 11 12 ... 23 Reply Ignore Print 
YaBB SE Community  |  Development  |  Completed mods  |  [Done] Calendar Mod [Ver 1.4] « previous - next »
 


Powered by MySQL Powered by PHP YaBB SE Community | Powered by YaBB SE
© 2001-2003, YaBB SE Dev Team. All Rights Reserved.
SMF 2.1.4 © 2023, Simple Machines
Valid XHTML 1.0! Valid CSS

Page created in 0.061 seconds with 20 queries.