vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   vBpad - Your personal notepad! (v1.0) (https://vborg.vbsupport.ru/showthread.php?t=29760)

N9ne 10-21-2002 05:38 PM

Hehe no one wants to help me out either, we're on the same boat and it's sinking ;)

Dean C 10-21-2002 05:44 PM

Works fine for me on 2.2.8 :D

- miSt

N9ne 10-21-2002 06:08 PM

Right, got it installed. For those of you who have the Warning System hack by g-force installed, in the queries you have to run, replace all instances of 40 with 41.

Is it possible so when someone is posting, they can "call" something from their vB pad? Ie. it could just include the code into their post...from their pad. Like maybe have it so when they add a note into their vB pad, a number or some sort of indentification is assigned to it and while posting [newthread, newreply, quickreply], they can simply type some variable in and it will be parsed?

Data 10-21-2002 06:10 PM

Eh, I "installed" the file, but I get a blank page with the member2.php file ...that's when I click on the My vBpad link. What does that mean?

N9ne 10-21-2002 06:20 PM

Did you create all templates correctly?

Data 10-21-2002 06:30 PM

You say all......I edited one. Which are they, and what do I put?

N9ne 10-21-2002 06:48 PM

Did you run install_vbpad.php in your admin directory? It gives full instructions, first it tells you which queries to run, then it tells you which templates to create and what to put in them and then it tells you file edits you need to make, then it tells you what template modifications you need to make...

Data 10-21-2002 06:54 PM

Yeah, ugh. I need to double check things, but that's on Friday. The PC lab administrators at my university don't allow program installations, and I don't have one at my dorm. :(
...I'll get back to you on it, though.

BigCheeze 10-21-2002 09:08 PM

Awesome hack!! I just got it installed. BTW.. Take a look at this hack: https://vborg.vbsupport.ru/showthrea...threadid=39663 to have an EASY way to run the SQL Querys!!

DanIAm 10-24-2002 06:06 PM

Is anyone still providing support for this?

Data 10-26-2002 01:10 AM

Ok, I successfully installed it.

ohgenki 10-29-2002 02:29 PM

data, what was the mistake ? i'm having that too !

Mystis 12-25-2002 06:03 PM

Another feature suggestion: Add buttons to newreply and newthread that allows you to import the data from your notes. For example, note number 3 is a note telling users that they need to enter their license info at vbulletin.com. If kier finds a user requesting help without having their license info put in then all he needs to do is click the note #3 button and press submit. Perhaps add it to the left column of the 'Your Reply' row?

Solice 12-29-2002 12:42 AM

I'd been wanting one ever since I tried using invision board... stumbled upon it while looking for something else... but anyhoo...

wonderful hack, thanks for making it ^^

Logikos 01-17-2003 03:19 PM

!!!Sweet Hack!!!!

One Problem :(

it works great, i can save notes and all.
i just can not edit my options in the C-Panel

Screen Shot:
Click Here and take a look

Webdork 02-10-2003 11:56 PM

Nice hack. Thanks!

andyrose 02-11-2003 07:54 AM

Whew, finally got it working, extremely cool hack Firefly.

My initial problem was that I thought your 'installer' would install the hack automatically, a sentiment I see others shared as I scrolled through the thread. Instead of calling it an installer, maybe call it Install Walkthrough? :p

NuclioN 02-11-2003 08:47 AM

Database vbulletin
Also get this:

Error
SQL-query : [Edit]

INSERT INTO settinggroup (settinggroupid,title,displayorder) VALUES ('40','vBpad','32')

MySQL said: Duplicate entry '40' for key 1

:(

X-Fan 03-19-2003 08:50 AM

Is there an uninstaller for this hack, or a step-by-step guide on how to remove it?

I'm not needing it any more and would like to get it out of my site's database.

Logikos 03-19-2003 08:38 PM

Quote:

Today at 05:50 AM X-Fan said this in Post #259
Is there an uninstaller for this hack, or a step-by-step guide on how to remove it?

I'm not needing it any more and would like to get it out of my site's database.



Well you should know how to uninstall it from your Templates and PhP's. Use PhPMYADMIN to take it out your DB. Thats what i did.

Buffalo 04-22-2003 06:45 PM

how do I install this hack?? i've looked everywhere and can't find the directions.

Craigr 04-23-2003 01:58 PM

Quote:

Yesterday at 07:45 PM Buffalo said this in Post #261
how do I install this hack?? i've looked everywhere and can't find the directions.
From the first post:
Installer: (upload to your admin folder and run)

You unzip the file. You then upload the php install script to your admin directory then point your browser to the file and follow the instructions.

Craig

Buffalo 04-23-2003 03:51 PM

Where does this code go???
Code:

// ############################### start vbpad ###############################
$padbits="";
$counter=1;
if ($DB_site->query_first("SELECT lastupdated FROM usernotepad WHERE userid='$bbuserinfo[userid]'")) {
  $note=$DB_site->query_first("SELECT * FROM usernotepad WHERE userid='$bbuserinfo[userid]'");
  $splitnotes=explode("|||",$note[notes]);
  while (list($key,$val)=each($splitnotes)) {
    if ($val!="") {
      $curnotes=bbcodeparse2($val,$padhtml,$padimgcode,$padsmilies,$padvbcode);
      $curnotes=stripslashes($curnotes);
    } else {
      continue;
    }
    if ($counter%2==0) {
      $bgcolor="{firstaltcolor}";
    } else {
      $bgcolor="{secondaltcolor}";
    }
    eval("\$padbits .= \"".gettemplate("usercp_mininotepad_bit")."\";");
    $counter++;
  }
  $padlastupdated=vbdate($dateformat,$note[lastupdated]);
  $padlastupdated.=" ".vbdate($timeformat,$note[lastupdated]);
} else {
  $bgcolor="{secondaltcolor}";
  $curnotes="Your vBpad is currently empty.";
  $padlastupdated="Never";
  eval("\$padbits = \"".gettemplate("usercp_mininotepad_bit")."\";");
}
if ($padbits=="") {
  $bgcolor="{secondaltcolor}";
  $curnotes="Your vBpad is currently empty.";
  $padlastupdated="Never";
  eval("\$padbits = \"".gettemplate("usercp_mininotepad_bit")."\";");
}
eval("\$vbpad = \"".gettemplate("usercp_mininotepad")."\";");


Craigr 04-23-2003 03:55 PM

Surely it will tell you in the installer.

Craig

Buffalo 04-23-2003 04:03 PM

It reads...
Find this code:
Code:

// draw cp nav bar
Add this code right below:
Code:

the previous posts code
Only, the find code doesn't exist.

Tigerdude 05-10-2003 07:25 AM

I tried installing it and got this:

Fatal error: Call to undefined function: generateoptions() in /home/mydirectory/public_html/install_vbpad.php on line 6

Can anyone help?

Holidazed 05-21-2003 08:22 PM

Well, after reading every post in this thread, ,I see that several people installed this hack and did not get the configuration options in the ACP. Those of you who have the Admin Control Panel option to configure the vBPad, can you please tell us how to add the options to our ACP??

I have read and re-read every post here and did the same on the hack installation instructions and nowhere is it mentioned about putting the opting in the ACP so we can configure the blasted thing.

Please help a guy out will you.

Cyricx 05-22-2003 12:49 PM

It's under my VBulletin Options that it lists the stuff to configure the VBpad, as far as where in the installer that it installs them its the -

// ###################### Start install db #######################

Section.

I'd give you more detail if I knew enough about php to guide ya heh.

Holidazed 05-23-2003 12:20 PM

Well, I looked and saw no reference to vPad at all.

Holidazed 05-27-2003 04:36 PM

Is anybody able to help with this problem?

Boofo 05-28-2003 08:59 AM

Quote:

Yesterday at 12:36 PM bitg said this in Post #270
Is anybody able to help with this problem?
There should be a link called vBpad in your vBulletin Options. That is where you make the changes.

Holidazed 06-03-2003 02:44 PM

But there is no link. Where in the instructions does it mention the step to add the link?

Holidazed 06-30-2003 07:48 PM

Hello? Is anybody gonna reply here?

Carsten 11-02-2003 11:03 AM

Quote:

Originally Posted by Boofo
Does anyone know the queries I need to run to set the max number of notes allowed and the max characters allowed for each usergroup in the database for this? I can figure out the rest if I can get that part done.

Do you have a solution?
I'm very interested. :)

indiamike 11-03-2003 09:54 AM

Quote:

Originally Posted by bitg
But there is no link. Where in the instructions does it mention the step to add the link?

The link will show up after you have run the install file. There is no manual changes that you need to make to any files in the admin folder of vbulletin.

The link in your admin panel shows up because of the queries that installer runs and adds.
If you ran the installer correctly you should find a link in your vbulletin admin panel under Vbulletin Options that shows the settings.

Either run the installer again or open the original file and look around line 35 where it says

### Start install db ###

Below that is a list of the queries that are added into your database to make this work.

Example :
maketextareacode("Query to run","query","INSERT INTO setting (settingid,settinggroupid,title,varname,value,desc ription,optioncode,displayorder) VALUES (NULL,'40','Allow vB IMG code in notes?','padimgcode','0','','yesno','3')",5,80);


Etc...etc....

I hope this answers the question.

Cheers
Mike

hvacr 11-09-2003 12:10 PM

nice concept, i can use this to study my homework,
wonder if the screen node pad is sizeable? no one likes
working in a tiny area...

will vbpad work on vb 2.3? and upcoming vb 3.0?

I tried the install using phpmyadmin or something like
that, and tried to import, and it came up with
an SQL error, the install directions are not very
clear as i do not have that much experiance with this.

any help would be appreciated.

Thanks.

hvacr 11-09-2003 04:59 PM

i installed vbpad, i am sure i done it correctly, but when it is ran, it only shows a blank screen... its funny, i setup proarcade also, when i run that, it also shows a blank screen...

any ideas?

Thanks

yahoooh 11-10-2003 01:32 PM

i need this hack to work in vb2.3.2

jp2 11-20-2003 04:14 PM

Another awesome hack, good work Chen :)

[high]* jp2 installs[/high]

Kaelon 01-23-2004 03:40 PM

Works perfectly in vBulletin 2.3.2.


All times are GMT. The time now is 06:07 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.01884 seconds
  • Memory Usage 1,819KB
  • 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
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (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