The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Give Your Users a Custom Page on Your Site Details »» | |||||||||||||||||||||||||||
Give Your Users a Custom Page on Your Site
Developer Last Online: Nov 2013
This Extension for Vbulletin 3.5 offers forum members the ability to create a custom profile page (or pages) on your site.
Current Features
Planned Features
FAQ
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
|
Comments |
#902
|
|||
|
|||
another problem--
admins, mods can post. regular users can view, not post. secondary usergroup (custom) which is a subset of regular users, is supposed to be able to post. but they can't. the permissions are set right. usergroup (9) can create, edit, view and not moderate; but in reality, they can't edit or create... help! |
#903
|
|||
|
|||
ok.
now everything seems to be working with permissions, except for the delete..... i can seem to delete a page.... which fix do i apply? also, still no working translation to username with the vbseo rewrites.. help, amy? |
#904
|
||||
|
||||
That post from Oleg is old. I am pretty sure I posted my rewrite rules for vbseo in this thread.
|
#905
|
|||
|
|||
okay.
to fix the double delete thread confirmation screen, look in the template:userpage_delete_confirm delete $header and $footer between the <body> and </body> tags and there you go! (also had an extra $stylevar[htmldoctype] at the top which I deleted). The correct template should read: HTML Code:
$stylevar[htmldoctype] <html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]"> <head><title>$vboptions[bbtitle]</title> $headinclude </head> <body> <br /> <br /> <form action="userpage.php?do=dokillpage" method="post"> <input type="hidden" name="ownerid" value="$ownerid" /> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr class="alt1"><td> <div><label for="confirm"><input type="checkbox" name="confirm" id="confirm" value="1" /><strong>Do you really want to delete this user's page?</strong></label></div> </td> </tr> <tr class="alt1"><td> <div style="margin-top:$stylevar[cellpadding]px"> <input type="submit" class="button" value="$vbphrase[submit]" accesskey="s" /> </div> </td> </tr> </table> </form> <br /> <br /> </body> </html> Don't forget to change : HTML Code:
// Check to see if the page exists. $pageexists = $db->query_first("SELECT * FROM ".TABLE_PREFIX."userpage WHERE userid = ".$ownerid); if ($pageexists) { print_no_permission(); } to HTML Code:
// Check to see if the page exists. $pageexists = $db->query_first("SELECT * FROM ".TABLE_PREFIX."userpage WHERE userid = ".$ownerid); if (!$pageexists) { print_no_permission(); } |
#906
|
|||
|
|||
amy, i used the ones i found in this thread....
and they don't seem to work... HTML Code:
'userpage\.php\?do=list' => 'userpage-list.html' 'userpage\.php\?do=main&userid=(\d+)' => 'userpage-user$1.html' 'userpage\.php\?do=main&username=(\w+)' => 'userpage/$1.html' i'll look again............ |
#907
|
|||
|
|||
found this here:
https://vborg.vbsupport.ru/showthrea...seo#post759579 HTML Code:
'userpage\.php\?do=list' => 'userpage-list.html' 'userpage\.php\?do=main&userid=(\d+)' => 'userpage-user$1.html' 'userpage\.php\?do=shoutarchive&ownerid=(\d+)' => 'userpage-shouts$1.html' 'userpage\.php\?do=main&username=(\w+)' => 'userpage/$1.html' help! apparently, someone else on vbseo never had this resolved, either... thanks.. |
#908
|
||||
|
||||
These are the ones I'm using.
Code:
'^userpage\.php\?do=list' => 'userpages.html' '^userpage\.php\?do=main&username=(\w+)$' => 'userpage/$1.html' |
#909
|
||||
|
||||
|
#910
|
|||
|
|||
amy, i'm missing something here.
when i click on the list and select ekaz, the link is: http://www.x5world.com/userpage-user774.html the url at the top of the info page is: http://www.x5world.com/userpage-user774.html where did you see the /userpage/ekaz.html link? it does work though, that's what i was looking for...... but i was hoping on the list of users, they would see/use this as their link, instead of the user=# syntax.... |
#911
|
|||
|
|||
ps this mod rocks......... thanks!
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|