Version: , by Admin (Coder)
Developer Last Online: Nov 2024
Version: 2.2.x
Rating:
Released: 10-06-2001
Last Update: Never
Installs: 125
No support by the author.
This will add a speical section to the User CP, called "My vBpad".
Started a reply but don't have time to finish it?
Need to save a certain sentence you use a lot? (*cough*)
Just put it there, and hit save!
Each pad can store multiple notes. Maximum number of notes can be set in the Admin CP.
You can also allow/disallow use of IMG code, vB code, smilies and HTML in notes.
Also storing the last time the pad was changed.
I was hoping that I could get fedback from you guys, and maybe turn this into something a lot better
So if you got any ideas, how this can be used to make life easier on a forum, please do not hesitate.
Well I am glad you think so, but it wouldn't work for me, I don't know why that error just kept coming up, I wanted this to work but I guess it won't oh well, 1 hack i cant install
I've done quite a few hacks on our boards and initially had a problem with this one. Not saying it's the same for you but I found that, somehow, I'd missed a step. Even though I thought I'd gone over everything, still had made a mistake. With so many steps on the one page, I'd just skipped one. Once I corrected my error, the hack works great! Thanks!
Just installed it with no problems.... I have a question though... Is it possible to have admins and moderators to have a different ammount of characters than members? I want my mods and admins to have a 2000 character limit.
Originally posted by Xelation Just installed it with no problems.... I have a question though... Is it possible to have admins and moderators to have a different ammount of characters than members? I want my mods and admins to have a 2000 character limit.
I was looking through the code in the installscript, and I saw something that made me wonder a bit, namely:
Code:
INSERT INTO settinggroup (settinggroupid,title,displayorder) VALUES ('40','vBpad','32')
INSERT INTO setting (settingid,settinggroupid,title,varname,value,description,optioncode,displayorder) VALUES (NULL,'40','Maximum Characters per note','maxpadsize','250','The maximum number of characters that you want to allow per note. Set this to 0 to disable it.','','1')
For actions like this wouldn't it be wiser to do something like this:
PHP Code:
$DB_site->query_first ("INSERT INTO settinggroup (title,displayorder) VALUES ('vBpad','32')");
$settinggroupid = $DB_site->insert_id ();
$DB_site->query_first("INSERT INTO setting (settingid,settinggroupid,title,varname,value,description,optioncode,displayorder) VALUES (NULL,$settinggroupid,'Maximum Characters per note','maxpadsize','250','The maximum number of characters that you want to allow per note. Set this to 0 to disable it.','','1')");
That way you should (in theory) be sure that you don't try to use some settinggroupid that is already in use.
Sure, it might be easy to edit the install file if this happens, but isn't my way much cleaner (again, in theory)?
I just installed this hack on 2.2.2 .. This hack was a brilliant idea in my opinion. Only thing i ran into during the install was in /root/members2.php where it tells you
I only found it twice so I only made 2 of the changes. I had it installed on 2.2.1 and its working just as well now as then. Colors are alternating right and everything. My personal rating on this hack is a 10!