Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Give Your Users a Custom Page on Your Site Details »»
Give Your Users a Custom Page on Your Site
Version: 1.2.2, by amykhar amykhar is offline
Developer Last Online: Nov 2013 Show Printable Version Email this Page

Version: 3.5.1 Rating:
Released: 07-09-2005 Last Update: 11-26-2005 Installs: 504
DB Changes Uses Plugins Template Edits
Additional Files Is in Beta Stage  
No support by the author.

This Extension for Vbulletin 3.5 offers forum members the ability to create a custom profile page (or pages) on your site.

Current Features
  • List of Members with Personal Pages
  • Individual Shoutbox/Guestbook on Each User's Personal Page
  • An Archive of "Shouts" for Each User
  • Moderators Can Delete Offensive Shouts
  • Moderators Can Delete Personal Pages
  • Users Can Report Offensive Pages
  • Tracks Page Views to Each Personal Page
  • Indicates When the Page Was Last Updated
  • Usergroup based permissions
  • Uses the VBulletin Editors. Understands BBCode and HTML.

Planned Features
  • Show Users Currently Browsing User Pages
  • Allow Users to Have More Than One Page
  • Allow Users to Upload Files
  • A File Manager for User Pages
  • The Ability to Search User Page Content
  • Links to Featured User Pages on Forum Home

FAQ
  1. How do I configure what forum report threads should go to?
    At the top of userpage.php, there are several clearly documented variables that you can edit. One of these establishes the forumid that you want reported pages to be reported to.

Demonstration
http://www.eaforums.com/forums/userpage.php?do=list
http://www.eaforums.com/forums/userpage/amykhar.html
http://www.eaforums.com/forums/userp...inkerlady.html

Updates: https://vborg.vbsupport.ru/showpost....&postcount=970

-------------
This hack will always be free, however your donations are kindly accepted and will help towards further development. If you donate, please leave me some info (either your forum site or username at vB.org) so that I can thank you.

Supporters / CoAuthors

Show Your Support

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

Comments
  #412  
Old 09-30-2005, 04:10 PM
Kyderoy Kyderoy is offline
 
Join Date: Feb 2005
Posts: 95
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Kyderoy
Is there a way to access a member's page from their profile page? Or maybe when you click on the member's name there would be a link to access the page just like the link to access their public profile.
I can't seem to add a background color using html to the page.... What am I doing wrong?
Reply With Quote
  #413  
Old 10-01-2005, 01:49 AM
lcryan's Avatar
lcryan lcryan is offline
 
Join Date: Aug 2004
Location: Boston
Posts: 19
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I just installed this on gold it was not working so I went to uninstall it and I did via the install script now I am getting errors

http://forums.liquid-core.net/index.php

someone please help tried to run install script to put database files back did not work

HTML Code:
Database error in vBulletin 3.5.0:

Invalid SQL:
SELECT * FROM lc_userpage WHERE userid=1;

MySQL Error  : Table 'lcsite_forum.lc_userpage' doesn't exist
Error Number : 1146
Date         : Friday, September 30th 2005 @ 11:10:13 PM
Script       : http://forum.liquid-core.net/
Referrer     : 
IP Address   : -
Username     : -
Classname    : vb_database
thats the error
Reply With Quote
  #414  
Old 10-01-2005, 02:59 AM
theArchitect's Avatar
theArchitect theArchitect is offline
 
Join Date: Sep 2004
Location: Sydney
Posts: 417
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by lcryan
someone please help tried to run install script to put database files back did not work
Have you tried installing it again?

I don't know what this error means, but I uninstalled a hack recently and it shut my forum down too. So I reinstalled it and the forum is running fine again. I have just removed the link to the hack until I can work out how to uninstall it without breaking the forum db.
Reply With Quote
  #415  
Old 10-01-2005, 03:25 AM
womensden womensden is offline
 
Join Date: Jan 2005
Posts: 77
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Everything seems to be working fine for me so far.

Thanks!
Reply With Quote
  #416  
Old 10-01-2005, 08:50 AM
cclaerhout's Avatar
cclaerhout cclaerhout is offline
 
Join Date: Aug 2004
Location: Paris (France)
Posts: 448
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by lcryan
I just installed this on gold it was not working so I went to uninstall it and I did via the install script now I am getting errors

http://forums.liquid-core.net/index.php

someone please help tried to run install script to put database files back did not work

HTML Code:
Database error in vBulletin 3.5.0:

Invalid SQL:
SELECT * FROM lc_userpage WHERE userid=1;

MySQL Error  : Table 'lcsite_forum.lc_userpage' doesn't exist
Error Number : 1146
Date         : Friday, September 30th 2005 @ 11:10:13 PM
Script       : http://forum.liquid-core.net/
Referrer     : 
IP Address   : -
Username     : -
Classname    : vb_database
thats the error
I had the same big problem. My forum wasn't working anymore. To make it work again, just run this in phpmyadmin (it's just a fix) :
Code:
CREATE TABLE `userpage` (
	`userid` int(15) unsigned NOT NULL default '0',
	`pagedata` text NOT NULL,
	`rating` int(11) NOT NULL default '0',
	`dateline` int(10) NOT NULL default '0',
	`username` varchar(255) NOT NULL default '',
	`views` int(10) NOT NULL default '0',
	`numvotes` int(11) NOT NULL default '0',
	`votetotal` int(11) NOT NULL default '0',
	PRIMARY KEY  (`userid`)
	) TYPE=MyISAM;
Then your forum will work again.

But if you want to install the hack and avoid installation and unsinstallation problem used this xml file without running the query above : You may have to delete the original plugin if you have installed it.
https://vborg.vbsupport.ru/showpost....&postcount=404
Good luck !
Reply With Quote
  #417  
Old 10-01-2005, 01:04 PM
lcryan's Avatar
lcryan lcryan is offline
 
Join Date: Aug 2004
Location: Boston
Posts: 19
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by cclaerhout
I had the same big problem. My forum wasn't working anymore. To make it work again, just run this in phpmyadmin (it's just a fix) :
Code:
CREATE TABLE `userpage` (
	`userid` int(15) unsigned NOT NULL default '0',
	`pagedata` text NOT NULL,
	`rating` int(11) NOT NULL default '0',
	`dateline` int(10) NOT NULL default '0',
	`username` varchar(255) NOT NULL default '',
	`views` int(10) NOT NULL default '0',
	`numvotes` int(11) NOT NULL default '0',
	`votetotal` int(11) NOT NULL default '0',
	PRIMARY KEY  (`userid`)
	) TYPE=MyISAM;
Then your forum will work again.

But if you want to install the hack and avoid installation and unsinstallation problem used this xml file without running the query above : You may have to delete the original plugin if you have installed it.
https://vborg.vbsupport.ru/showpost....&postcount=404
Good luck !
Thank you worked great!
Reply With Quote
  #418  
Old 10-01-2005, 01:18 PM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by cclaerhout
I had the same big problem. My forum wasn't working anymore. To make it work again, just run this in phpmyadmin (it's just a fix) :
Code:
CREATE TABLE `userpage` (
	`userid` int(15) unsigned NOT NULL default '0',
	`pagedata` text NOT NULL,
	`rating` int(11) NOT NULL default '0',
	`dateline` int(10) NOT NULL default '0',
	`username` varchar(255) NOT NULL default '',
	`views` int(10) NOT NULL default '0',
	`numvotes` int(11) NOT NULL default '0',
	`votetotal` int(11) NOT NULL default '0',
	PRIMARY KEY (`userid`)
	) TYPE=MyISAM;
Then your forum will work again.

But if you want to install the hack and avoid installation and unsinstallation problem used this xml file without running the query above : You may have to delete the original plugin if you have installed it.
https://vborg.vbsupport.ru/showpost....&postcount=404
Good luck !
I think you need to change this:

PHP Code:
 $db->query_write("DROP TABLE IF EXISTS " TABLE_PREFIX " usergroup DROP userpagepermissions"); 
to this:

PHP Code:
 $db->query_write("ALTER TABLE IF EXISTS " TABLE_PREFIX " usergroup DROP userpagepermissions"); 
Dropping the usergroup table is not really a very good idea.
Reply With Quote
  #419  
Old 10-01-2005, 01:28 PM
Sovereign Sovereign is offline
 
Join Date: Apr 2004
Posts: 182
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Not to nag, but when is the upload/MySpace kind of addition coming? My users are complaining because even though I told the I did not write the hack, they want the MySpace functiontality and are asking me to do it (I can't code for sh-t)...
Reply With Quote
  #420  
Old 10-01-2005, 01:28 PM
cclaerhout's Avatar
cclaerhout cclaerhout is offline
 
Join Date: Aug 2004
Location: Paris (France)
Posts: 448
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Boofo
I think you need to change this:

PHP Code:
 $db->query_write("DROP TABLE IF EXISTS " TABLE_PREFIX " usergroup DROP userpagepermissions"); 
to this:

PHP Code:
 $db->query_write("ALTER TABLE IF EXISTS " TABLE_PREFIX " usergroup DROP userpagepermissions"); 
Dropping the usergroup table is not really a very good idea.
Thanks ; i've corrected the archives.
Reply With Quote
  #421  
Old 10-01-2005, 11:36 PM
Colejo Colejo is offline
 
Join Date: Jul 2005
Posts: 95
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks it works great but I have one question. When I use the report this page link it makes the thread but it has this in the top of the post:

<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">

Can you tell me how to correct this?

Thanks.
Reply With Quote
Reply


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 07:08 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.05545 seconds
  • Memory Usage 2,341KB
  • Queries Executed 26 (?)
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
  • (3)bbcode_code
  • (2)bbcode_html
  • (4)bbcode_php
  • (6)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
  • (3)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