Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 2.x > vBulletin 2.x Full Releases

Reply
 
Thread Tools
MyBookmarks for vBulletin Details »»
MyBookmarks for vBulletin
Version: 1.00, by bad_madman bad_madman is offline
Developer Last Online: Oct 2023 Show Printable Version Email this Page

Version: 2.2.x Rating:
Released: 07-15-2002 Last Update: Never Installs: 46
 
No support by the author.

Web based Bookmark collection for your forum users.
I think that I am no more in the beta phase :nervous: But let me know, if you find what or have suggestions :bunny:

Latest version: 1.20 (7-30-2002)
- 07-30-2002 - 02:13 PM GMT: new bmadmin.php with help for new template 'mybookmarks_settings'

Updates 1.20 (7-30-2002):
- Complete support of different languages by new template.
- Containing all German and English templates now.
- Import Bookmarks from bookmarks file.
- Option: Allow/disallow save of public bookmarks.
- Option: User can ignore URL validity.
- Option: What may a deactivated/banned/warned user do...
- Bug: no max number allowed bookmarks on 'add' page.
- Small bug fixes in file bookmarks.php
- More possibilities in bmadmin.php

other Features:
-- perfect integration into user control panel
-- add hyperlink (or 'hot key') on each thread: 'add to Bookmarks'
-- Censor option for words in title/description/category for public Bookmarks
-- URLs with censored words cannot save as public Bookmarks.
-- Ban user with bad Bookmarks. User cannot use Bookmarks any more
-- Warn user with bad Bookmarks.
-- Report user's public bookmark(s) to administrator.
-- Browse all public Bookmarks.
-- Compatibility with FireFly's vBpad.
-- Allow/disallow users to change his hits/votes counter
-- Optional: User must agree MyBookmarks rules.
-- Optional: User must agree MyBookmarks rules again after warning.
-- Optional: Number public bookmarks/views (or image) in member profile.
-- Optional: Number public bookmarks/views (or image) in members list.
-- Admin options as extra file admin/bmadmin.php:
  - disable use of bookmarks for user
  - change user's bookmark status
  - delete private or all bookmarks
  - set all bookmarks to private
  - warn/ban user
  - email/PM user
  - usergroup permissions
  - min. posts required per usergroup
  - search bookmark users
  - max Bookmarks per user
-- Options in vBulletin CP Options:
  - turn MyBookmarks on and off
  - max characters for bookmark title, url and description
  - browse public Bookmarks on/off
  - enable/disable search
  - category name for unassigned bookmarks
  - mail footer for bookmark 'send mail to friend'
  - enable/disable 'browse public bookmarks'
  - enable/disable rating, hits counting, url response check
-- MyBookmark Options:
  - public/private bookmarks
  - add other users public bookmarks
  - hits counting
  - email bookmark to friend
  - bookmark rating
  - bookmark categories
  - extensive search options
  - browse bookmarks in popup window
  - random bookmark
  - member profile integration
  - 2 different views
  - bookmark statistics
  - backup option for own bookmarks
--Very simple installation

Screenshots:
- Admin options
- User CP integration
- Browse Bookmarks [view 1]
- Browse Bookmarks [view 2]
- Add Bookmark
- Edit Bookmark
- Bookmark categories
- Search
- Statistics and Backup
- MyBookmarks in popup

Installation / Update:
- Read !readme.txt in ZIP-ARCHIV!

Download:

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #132  
Old 08-21-2002, 09:23 AM
aidler aidler is offline
 
Join Date: Apr 2002
Posts: 40
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes I have.

Part of my getinfo template....

Code:
<tr>
	<td bgcolor="#13486D"><normalfont><b>$userinfo[username]'s Bookmarks:</b></normalfont></td>
	<td bgcolor="#13486D"><normalfont>$bookmarklink$userinfo[publics] Public Bookmarks / $userinfo[allhits] Views</normalfont></td>
</tr>
And I inserted this into member.php

PHP Code:
// ~~~~~~~~~~~~~~~~~~~~ MyBookmarks Hack  1.10 - by Madman ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
if($bookmarktest=$DB_site->query_first("SELECT COUNT(bmid) AS count,SUM(counter) AS allhits FROM bookmarks WHERE public='1' AND userid='$userinfo[userid]'") and $bookmarktest[count]>and $bmpublicbrowse and $bmenabled)
        eval(
"\$bookmarklink=\"".gettemplate("mybookmarks_memberprofile")."\";");
    
$userinfo[publics]=($bookmarktest[count])?"$bookmarktest[count]":"0";
    
$userinfo[allhits]=($bookmarktest[allhits])?"$bookmarktest[allhits]":"0";
  
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
....and nothing was not absolutely correct. I can see the following:
"xxx's Bookmarks: Public Bookmarks / Views ". The variables $bookmarklink, $userinfo[publics] and $userinfo[allhits] obviousely don't hold any values.
Reply With Quote
  #133  
Old 09-06-2002, 12:11 PM
Buddha Buddha is offline
 
Join Date: Jan 2002
Posts: 314
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

this is a fantastic hack!
love it.
thank you very much.
installed like a breeze, tested and works perfectly. hell, i gave myself a 500 limit so i can store all of my bookmarks using this... will make it easier when going back and forth between work and home.
thanks a lot bud!

*clicks installed*
Reply With Quote
  #134  
Old 09-06-2002, 12:28 PM
Okiewan's Avatar
Okiewan Okiewan is offline
 
Join Date: Dec 2001
Posts: 199
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Database error in vBulletin 2.2.1:

Invalid SQL:
SELECT
post.*,SUM(bookmarks.public) AS bmcount,SUM(bookmarks.counter) AS allhits,post.username AS postusername,post.ipaddress AS ip,user.*,userfield.*,icon.title as icontitle,icon.iconpath,

attachment.attachmentid,attachment.filename,attach ment.visible AS attachmentvisible,attachment.counter,style.title as styletitle
,avatar.avatarpath,NOT ISNULL(customavatar.avatardata) AS hascustomavatar,customavatar.dateline AS avatardateline
FROM post
LEFT JOIN icon ON icon.iconid=post.iconid
LEFT JOIN user ON user.userid=post.userid
LEFT JOIN style on (user.styleid = style.styleid)
LEFT JOIN userfield ON userfield.userid=user.userid
LEFT JOIN avatar ON avatar.avatarid=user.avatarid
LEFT JOIN customavatar ON customavatar.userid=user.userid
LEFT JOIN attachment ON attachment.attachmentid=post.attachmentid
WHERE post.postid = '113307'

mysql error: Unknown table 'bookmarks' in field list

mysql error number: 1109
This error started after a recent apache/php upgrade. Any input would be appreciated, getting tons of error email

In addition... users are saying that suddenly others are on their Ignore Lists ... when they "click here to read thread" another bookmarks related SQL error shows.

Odd stuff.
Reply With Quote
  #135  
Old 09-06-2002, 06:29 PM
kira kira is offline
 
Join Date: Oct 2001
Location: NYC
Posts: 160
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

bad_madman, thank you for this fabulous hack. I'm running it on my test forum and I can't wait to give it a try on my real site.

I'm wondering if there's any way this can be modified or reworked to create a regular link directory, i.e., an addon to the main site rather than just confined to the members' control panels. (I know there are other vB-Link Directory type of hacks, but MyBookmarks seems to work more smoothly than they do... my apologies to the creators of those hacks if they're around!) Anyone interested in fiddling with this idea? Should I post this in "requests" maybe?

At any rate, thanks again for the excellent work!!
Reply With Quote
  #136  
Old 10-08-2002, 05:43 PM
Dean C's Avatar
Dean C Dean C is offline
 
Join Date: Jan 2002
Location: England
Posts: 9,071
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

jus found this hack

wonderful... goes off to install on my testboard

- miSt
Reply With Quote
  #137  
Old 11-02-2002, 12:18 PM
incursio incursio is offline
 
Join Date: Nov 2001
Posts: 46
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It seems that links with ampsersands (&) in them get written to the database as "&amp;" (html entities). Obviously, that causes a problem when displayed, and people try to click on it.

Has this been fixed in a newer version? I think I'm still running the original release ...
Reply With Quote
  #138  
Old 11-10-2002, 01:20 AM
NuclioN's Avatar
NuclioN NuclioN is offline
 
Join Date: Aug 2002
Posts: 955
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by Okiewan


This error started after a recent apache/php upgrade. Any input would be appreciated, getting tons of error email

In addition... users are saying that suddenly others are on their Ignore Lists ... when they "click here to read thread" another bookmarks related SQL error shows.

Odd stuff.
Yep, same error over here. When a user is on ignore and someone clicks "HERE" to read the post, this error shows up
Reply With Quote
  #139  
Old 11-25-2002, 08:21 PM
Esdee's Avatar
Esdee Esdee is offline
 
Join Date: Oct 2002
Posts: 42
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Awesome hack.

One problem though, the shortkeys are shift+b Which is real annoying as no one on myt forum can type a capital B anymore >.<
Reply With Quote
  #140  
Old 11-28-2002, 12:51 PM
ryancooper ryancooper is offline
 
Join Date: Jul 2002
Posts: 433
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Great hack. . . took all of 5 min to install and works like a charm!! Thanks!
Reply With Quote
  #141  
Old 12-13-2002, 05:17 PM
flup's Avatar
flup flup is offline
 
Join Date: Jan 2002
Location: Maastricht, NL
Posts: 872
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Havin' some problems with this hack.

DId everything the file said to me.
Edited templates and edited files, but the bookmarks wont appear in my User CP
Reply With Quote
Reply

Thread Tools

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


All times are GMT. The time now is 06:21 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05345 seconds
  • Memory Usage 2,321KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)bbcode_code
  • (1)bbcode_php
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete