Welcome, Guest. Please Login or Register.
April 26, 2025, 05:01:36 PM
Home Help Search Log in Register
News: If you are still using YaBB SE, please consider upgrading to SMF as soon as possible.

YaBB SE Community  |  Development  |  Completed mods  |  [BETA] Bookmarks « previous next »
Pages: 1 [2] Reply Ignore Print
Author Topic: [BETA] Bookmarks  (Read 6809 times)
irbrian
Sr. Member
****
Posts: 489


I create. Therefore I am.

brian@inverse-reality.com WWW
Re:[BETA] Bookmarks
« Reply #15 on: January 03, 2003, 04:00:33 AM »
Reply with quote

I know I mentioned it my 'bug report' (lol) but I just wanted to comment here that this really is a great mod, its one of the most useful i've found yet in fact. Now I can keep track of topics with a single click. Really hope it'll be officially implemented down the road.

Just wish I knew why I got that weird problem with the onchange function. Oh well.
Logged

Imparting great wisdom daily to those who will mistake my words as such.
Joseph Fung
Global Moderator
YaBB God
*****
Posts: 4512


Keep smiling: it makes others nervous.

WWW
Re:[BETA] Bookmarks
« Reply #16 on: January 03, 2003, 04:04:44 AM »
Reply with quote

Quote from: irbrian on January 03, 2003, 04:00:33 AMI know I mentioned it my 'bug report' (lol) but I just wanted to comment here that this really is a great mod, its one of the most useful i've found yet in fact. Now I can keep track of topics with a single click. Really hope it'll be officially implemented down the road.

Just wish I knew why I got that weird problem with the onchange function. Oh well.
Thanks, I appreciate the feedback.  I've been trying to come up with some mods unique from other BBs, and I was rather proud of this one ;D
Logged

Peter Duggan
Llama Chameleon
Global Moderator
YaBB God
*****
Posts: 1793


You come and go...

WWW
Re:[BETA] Bookmarks
« Reply #17 on: January 03, 2003, 04:08:41 AM »
Reply with quote

I think it's great, too, and also hope it will eventually become part of the core YaBB SE installation. But I have noticed tonight (in bookmarking one of my own topics with an insufferably long subject line) that the drop down box appears to go on expanding sideways to fit whatever you put in it. Perhaps a maximum number of characters might be a good idea?

Nah, forget that last remark! Just tried a *really* long subject line in the test forum with a view to trying to bookmark it and realised there's already a cap on the number of characters allowed on the board!
« Last Edit: January 03, 2003, 04:13:20 AM by Peter Duggan » Logged

Mr.Sins
Full Member
***
Posts: 113


BROOD WAR FOR LIFE

ICQ - 36721259cl.david@newmail.net WWW
Re:[BETA] Bookmarks
« Reply #18 on: January 03, 2003, 05:31:28 AM »
Reply with quote

if so desided to add this to the following yabb versions plz keep the same table format, this way i can upgrade without a problem.
Logged


MarcoMan
Noobie
*
Posts: 15


Yeah, I'm a newbie

WWW
Re:[BETA] Bookmarks
« Reply #19 on: January 04, 2003, 03:27:06 AM »
Reply with quote

Quote from: Mr.Sins on January 02, 2003, 11:25:10 AMthe checkbox doesn't work in modsettings if i check it and then go back its back unchecked

Solution add the following row to yabbse_settings
showBookmarks       1

now the check box works, but i still don't see the bookmars future on my boards

Could you help me?  I don't understand what I need to do to get the check to stay.
Logged
Galt
Jr. Member
**
Posts: 68


I am NOT a llama!

WWW
Re:[BETA] Bookmarks
« Reply #20 on: January 04, 2003, 04:50:52 AM »
Reply with quote

Quote from: MarcoMan on January 04, 2003, 03:27:06 AM
Quote from: Mr.Sins on January 02, 2003, 11:25:10 AMthe checkbox doesn't work in modsettings if i check it and then go back its back unchecked

Solution add the following row to yabbse_settings
showBookmarks       1

now the check box works, but i still don't see the bookmars future on my boards

Could you help me?  I don't understand what I need to do to get the check to stay.

Yes please!  I love that bookmark feature and would like to incorporate it into my own boards.   ;D
Logged

[Unknown]
Global Moderator
YaBB God
*****
Posts: 7830


ICQ - 179721867unknownbrackets@hotmail.com WWW
Re:[BETA] Bookmarks
« Reply #21 on: January 04, 2003, 04:56:10 AM »
Reply with quote

SQL:
INSERT INTO dbname.dbprefix_settings (variable, value) VALUES ('showBookmarks', 1);

[update: forgot quotes around showBookmarks]

-[Unknown]
« Last Edit: January 04, 2003, 04:56:41 AM by [Unknown] » Logged
Mr.Sins
Full Member
***
Posts: 113


BROOD WAR FOR LIFE

ICQ - 36721259cl.david@newmail.net WWW
Re:[BETA] Bookmarks
« Reply #22 on: January 04, 2003, 04:56:29 AM »
Reply with quote

you need to manualy edit your mysql yabbse database.

then you need to open the following tabel yabbse_settings

and add the following row to your table
in the first colum you write showBookmarks
in the second column you write 1

if you run your own mysql server you can edit it with mysql control center or someother mysql db tool
Logged


Galt
Jr. Member
**
Posts: 68


I am NOT a llama!

WWW
Re:[BETA] Bookmarks
« Reply #23 on: January 04, 2003, 05:08:10 AM »
Reply with quote

Thanks, I'll give it a go!   ;D
Logged

MarcoMan
Noobie
*
Posts: 15


Yeah, I'm a newbie

WWW
Re:[BETA] Bookmarks
« Reply #24 on: January 04, 2003, 05:23:38 AM »
Reply with quote

Would it look something like this?

$dbcon = mysql_connect($db_server, $db_user, $db_passwd);
mysql_select_db($db_name);

$sql = INSERT INTO {$db_prefix}settings (variable,value) VALUES ('showBookmarks',1);

Because this is the error I receive when making a php file.  This error is on the underlined line of code.

Parse error: parse error, unexpected T_STRING
« Last Edit: January 04, 2003, 05:27:24 AM by MarcoMan » Logged
Mr.Sins
Full Member
***
Posts: 113


BROOD WAR FOR LIFE

ICQ - 36721259cl.david@newmail.net WWW
Re:[BETA] Bookmarks
« Reply #25 on: January 04, 2003, 05:29:21 AM »
Reply with quote

maybe this error is caused since you don't have the showBookmark setting in your yabbse_settings table
Logged


Joseph Fung
Global Moderator
YaBB God
*****
Posts: 4512


Keep smiling: it makes others nervous.

WWW
Re:[BETA] Bookmarks
« Reply #26 on: January 04, 2003, 05:42:46 AM »
Reply with quote

Quote from: MarcoMan on January 04, 2003, 05:23:38 AMWould it look something like this?

$dbcon = mysql_connect($db_server, $db_user, $db_passwd);
mysql_select_db($db_name);

$sql = INSERT INTO {$db_prefix}settings (variable,value) VALUES ('showBookmarks',1);

Because this is the error I receive when making a php file.  This error is on the underlined line of code.

Parse error: parse error, unexpected T_STRING

You have a small bug.  Do this.
include("Settings.php");
$dbcon = mysql_connect($db_server, $db_user, $db_passwd);
mysql_select_db($db_name);

$sql = "INSERT INTO {$db_prefix}settings (variable,value) VALUES ('showBookmarks',1);";

$request = mysql_query ($sql) or die (mysql_error());

You need to include Settings.php so the variables $db_something are populated, and you need to actually execute the query, not just make the query string.
Logged

MarcoMan
Noobie
*
Posts: 15


Yeah, I'm a newbie

WWW
Re:[BETA] Bookmarks
« Reply #27 on: January 04, 2003, 05:47:14 AM »
Reply with quote

Joseph,

That did the job for me.  Thanks everyone for all your help.

MarcoMan
Logged
Joseph Fung
Global Moderator
YaBB God
*****
Posts: 4512


Keep smiling: it makes others nervous.

WWW
Re:[BETA] Bookmarks
« Reply #28 on: January 04, 2003, 11:23:02 AM »
Reply with quote

Ok - I posted new versions with 1.4.1 and 1.5.0 versions.  Now locking this.

http://www.yabbse.org/community/index.php?board=158;action=display;threadid=16904
Logged

Pages: 1 [2] Reply Ignore Print 
YaBB SE Community  |  Development  |  Completed mods  |  [BETA] Bookmarks « 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.203 seconds with 20 queries.