vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Give Your Users a Custom Page on Your Site (https://vborg.vbsupport.ru/showthread.php?t=91903)

gethinoakes 09-30-2005 08:36 AM

Thanks this works great! :)

???`S?LV?R???` 09-30-2005 10:04 AM

btw do you got vb 3.5 gold installed on your forum? just curious because I was wondering if your ibproarcade was working fine on it. @ amykhar

amykhar 09-30-2005 10:42 AM

Yes, I do. But I haven't tested the arcade yet.

cclaerhout 09-30-2005 10:47 AM

Thanks Amykhar for your hack. I had little problems with your installation file,
so i update it to product. The xml file will :
-install tables ONLY for new installation (no update sorry)
-install templates
-install phrases
-rebuild fields

cclaerhout 09-30-2005 12:54 PM

Here is the french translation.

cclaerhout 09-30-2005 01:18 PM

Quote:

Originally Posted by Hawkbizkit
btw on lines 767-770
PHP Code:

  if ($pageexists)
  {
      
print_no_permission();
  } 

is missing the ! infront of $pageexists so people can delete pages....;) otherwise great mod.
PHP Code:

  if (!$pageexists)
  {
      
print_no_permission();
  } 

there are also a few other bugs in that area but i forgot what they where but you should see them when u check it out i think lol...

This bug is still not corrected in userpage.php

amykhar 09-30-2005 01:56 PM

Quote:

Originally Posted by cclaerhout
Here is the french translation.

Thank you :)

Amy

Kyderoy 09-30-2005 02:18 PM

Is it possible to use html only on the user pages?

cclaerhout 09-30-2005 03:00 PM

Quote:

Originally Posted by Kyderoy
Is it possible to use html only on the user pages?

I think it's already the case, isn't it ?

Kyderoy 09-30-2005 04:00 PM

Quote:

Originally Posted by cclaerhout
I think it's already the case, isn't it ?

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.

Kyderoy 09-30-2005 04:10 PM

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?

lcryan 10-01-2005 01:49 AM

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

theArchitect 10-01-2005 02:59 AM

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.

womensden 10-01-2005 03:25 AM

Everything seems to be working fine for me so far.

Thanks!

cclaerhout 10-01-2005 08:50 AM

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 !

lcryan 10-01-2005 01:04 PM

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!

Boofo 10-01-2005 01:18 PM

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. ;)

Sovereign 10-01-2005 01:28 PM

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)...

cclaerhout 10-01-2005 01:28 PM

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.

Colejo 10-01-2005 11:36 PM

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.

amykhar 10-02-2005 01:04 AM

don't know. Haven't seen that happen before.

lordnex 10-02-2005 04:41 PM

Amy I had that same error just today when I installed this. here's the email:

Quote:

Reported Bad Userpage For nex

--------------------------------------------------------------------------------

<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">
nex has reported a problem with this personal page.

i find this page to be in poor taste.


userpage.php?userid=1

So there are 2 things. The first is the doctype thing at the top (which to be honest I don't care about) but the userpage.php link to the userid doesn't include the forums address. It links to http://userpage.php?userid=1 and that kinda makes the link no good. Ideas?

Colejo 10-02-2005 06:38 PM

Quote:

Originally Posted by lordnex
Amy I had that same error just today when I installed this. here's the email:



So there are 2 things. The first is the doctype thing at the top (which to be honest I don't care about) but the userpage.php link to the userid doesn't include the forums address. It links to http://userpage.php?userid=1 and that kinda makes the link no good. Ideas?

That's the exact thing I got. I change the address it links to but the top part of the message I haven't corrected.

Logikos 10-03-2005 12:44 AM

I don't understand why you don't use the products manager for this hack. Your install script does exacly what the products manager does, and it a default feature now in vBulletin, so it would make more sense to use it, don't cha think?

This hack isn't working on the GOLD release. I can't set user permissions via usergroups. Here is the error I get.

Quote:

Warning: mysql_real_escape_string() expects parameter 1 to be string, array given in /home/cporg/public_html/forums/includes/class_core.php on line 635
Is anyone else getting this error?

yayvb 10-03-2005 06:13 AM

I am so glad that I found this hack. :) I think it's a great idea. I like the personalized shoutbox too, that's just great!!! :)

Brandon Sheley 10-03-2005 06:16 AM

I'd love to use this, but I'll wait untill it's working well with gold :)

Kyderoy 10-03-2005 12:14 PM

Quote:

Originally Posted by Loco Macheen
I'd love to use this, but I'll wait untill it's working well with gold :)

I can't add a backgrounf color using html... My members are screaming at me

amykhar 10-03-2005 04:48 PM

Livewire, I wrote this BEFORE the product manager was released. I have not had time to port it up to use products.

Bubble #5 10-03-2005 10:40 PM

Quote:

Originally Posted by Loco Macheen
I'd love to use this, but I'll wait untill it's working well with gold :)

Yes awsome hack, but will wait until it's working correctly with the gold version. Hopefully soon :)

Logikos 10-03-2005 11:55 PM

I'll wait then :)

rickycc 10-04-2005 10:22 AM

Do i need the .htaccess file in the root dir? It is giving me some problems, if i do need it can i add some redirects?
thanks,

defi 10-04-2005 04:55 PM

...any status on when this will be good to go on gold?

lordnex 10-04-2005 08:04 PM

I'm running this on gold and it's working well. Usergroups work and everything.

Amy one thing.
If someone already has a hideaway they get this error message (instead of being told they can't have more than one)

Could not find phrase 'hideaway_exists'

ideas/suggestions?

VaaKo 10-04-2005 08:29 PM

can't users have pictures in their personal page?

VaaKo 10-04-2005 09:02 PM

I was wondering if there's way to put in postbit a little link to link to user's personal page!
it would be really nice!

VaaKo 10-04-2005 09:12 PM

I believe we should add in vbmenu_register script: Visit $post[musername]'s persoanl pages!

but im not finding that script anywhere!
anyhelp?

and plus when I click on "save" my space, it gives me "done but with errors" when it reloads, everything goes back to normal!

Allan 10-04-2005 09:23 PM

it work on vB 3.5 Gold ? no update ?

SuperFly 10-05-2005 12:02 AM

Works fine in VB 3.5 Gold

iSpanish 10-05-2005 09:33 AM

I can't set user permissions via usergroups. Here is the error I get.

Quote:

Warning: mysql_real_escape_string() expects parameter 1 to be string, array given in /includes/class_core.php on line 635


any idea?

VaaKo 10-05-2005 10:59 AM

I have installed it and everything is working great, I even created my own page
but im getting from users that they cannot access it, even though I have edited the usergroups permissions so they can view and create userspaces, but still they can't

any suggestions?


All times are GMT. The time now is 11:30 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.03267 seconds
  • Memory Usage 1,848KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (2)bbcode_html_printable
  • (6)bbcode_php_printable
  • (16)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete