Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
VB-O-GRAM ....... Site Promotional Tool Details »»
VB-O-GRAM ....... Site Promotional Tool
Version: 1.00, by trafix trafix is offline
Developer Last Online: Jul 2008 Show Printable Version Email this Page

Version: 3.0.6 Rating:
Released: 01-22-2005 Last Update: 01-23-2005 Installs: 17
DB Changes
 
No support by the author.

And you thought that greeting cards had died ....... think again! ... lmao

This hack will add a not-so-unique feature to you community in the form of a great promotional tool

It can display both normal images and flash files (.swf)

1 file edit
1 template edit
2 new db table

This hack uses and includes a copy of the [HIS] Hack Installer System (Build 3)
released by Link14716 and can be found here --> https://vborg.vbsupport.ru/showthread.php?t=71542

The admin area here is basicly a copy of the vB Jukebox.
You can upload all your images and flash files from your browser

I have not included any permissions so both your members and guests can send -O-GRAMS to promote your site

in the pic you will see that i called mine Trafix-O-GRAM .... however in the admin options you can call it whatever you like

ahhh what the hell here is the demo .... go look for yourself ..... but you cant register as it is a dev forum but i think it should be fine your your testing. i only have the one flash file and i have used some crappy images to test with. http://srv01.orpbus.com/~admin152/up...ain&imageid=12

I will reserve the first few posts to add links at a later stage to member flash file contributions

OOOPS .... nearly forgot .... Please click INSTALL

UPDATE ... fixed install quirie

Show Your Support

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

Comments
  #22  
Old 01-23-2005, 05:06 PM
docvader's Avatar
docvader docvader is offline
 
Join Date: Dec 2002
Posts: 520
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

When trying to insert this query
Quote:
CREATE TABLE `vbogram_card` (
`vbogram_cardid` int(11) NOT NULL auto_increment,
`sendername` varchar(100) NOT NULL default \'\',
`senderuserid` int(11) NOT NULL default \'0\',
`senderemail` varchar(100) NOT NULL default \'\',
`imageid` int(11) NOT NULL default \'0\',
`message` mediumtext NOT NULL,
`receiveremail` varchar(100) NOT NULL default \'\',
`receivername` varchar(225) NOT NULL default \'\',
`cardid` varchar(20) NOT NULL default \'0\',
`datestamp` int(11) NOT NULL default \'0\',
`reply` tinyint(4) NOT NULL default \'0\',
PRIMARY KEY (`vbogram_cardid`))
I get this response:
Quote:
An error occurred while attempting to execute your query. The following information was returned.
error number: 1064
error desc: You have an error in your SQL syntax near '\'\',
`senderuserid` int(11) NOT NULL default \'0\',
`senderemail` varchar' at line 3
Got any suggestions?
Reply With Quote
  #23  
Old 01-23-2005, 05:10 PM
yoyoyoyo's Avatar
yoyoyoyo yoyoyoyo is offline
 
Join Date: Dec 2004
Location: USA
Posts: 1,612
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by docvader
OH, and YOYO


I always got my death threats in person. Not by VB-O-GRAMS.

lol...
I know that it is extremist thinking, but I deal alot with computer security issues for a living, so when I see something like this I naturally notice such things. Many such services have been discontinued due to abuse on sites, or they install limits and filters to avoid these nuisances, so I was just trying to add my .02 to the hack, and was hoping that Trafix might be able to add in a few extra options in the ACP to cover these issues, since this is a great addition to a site!
Reply With Quote
  #24  
Old 01-23-2005, 06:27 PM
miz miz is offline
 
Join Date: Mar 2003
Posts: 416
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by docvader
Trafix,

Stayed up all night looking for swf files to include in this potentially wonderful communication method.

My girlfriend hates you.

Anyway, tried to install it this morning, and got this during install:



But, with perseverance and fortitude, I continued. The link in the nav bar causes this, not surprisingly:



OH, and YOYO


I always got my death threats in person. Not by VB-O-GRAMS.

lol...

rich

( I'll dig around in your install file and try to install this manually...)
some servers dont use mysql database on localhost or something like that
that makes problem with the install
its happend to hacks i coded also on 1 of my servers
so ill recommand that you will user the phpmyadmin tool that supplied with host and to insert this query
[SQL]CREATE TABLE `vbogram_card` (
`vbogram_cardid` int(11) NOT NULL auto_increment,
`sendername` varchar(100) NOT NULL default '',
`senderuserid` int(11) NOT NULL default '0',
`senderemail` varchar(100) NOT NULL default '',
`imageid` int(11) NOT NULL default '0',
`message` mediumtext NOT NULL,
`receiveremail` varchar(100) NOT NULL default '',
`receivername` varchar(225) NOT NULL default '',
`cardid` varchar(20) NOT NULL default '0',
`datestamp` int(11) NOT NULL default'0',
`reply` tinyint(4) NOT NULL default '0',
PRIMARY KEY (`vbogram_cardid`))

[/SQL]

i removed all of \'\' cuse its uses on php thats why you didnt secced to enter this query manualy
try again with the query i gave u
Reply With Quote
  #25  
Old 01-23-2005, 07:07 PM
docvader's Avatar
docvader docvader is offline
 
Join Date: Dec 2002
Posts: 520
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

OK, thanks. First table was apparently in there, second table worked via your method.

Now, I'm getting errors with these queries:
Quote:
ALTER TABLE '.TABLE_PREFIX.'language ADD `phrasegroup_vbogram` MEDIUMTEXT NOT NULL

INSERT INTO '.TABLE_PREFIX.'phrasetype (phrasetypeid, fieldname, title, editrows) VALUES (885, 'vbogram', 'vB-O-Gram', 3)
I don't think its happy with the table prefix the way it's written. (I have no table prefix, as I upgraded from a 2.xx board a while back)

Thanks for the help. I'd like to get this to work.
Reply With Quote
  #26  
Old 01-23-2005, 07:14 PM
Marco van Herwaarden Marco van Herwaarden is offline
 
Join Date: Jul 2004
Posts: 25,415
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by docvader
OK, thanks. First table was apparently in there, second table worked via your method.

Now, I'm getting errors with these queries:

I don't think its happy with the table prefix the way it's written. (I have no table prefix, as I upgraded from a 2.xx board a while back)

Thanks for the help. I'd like to get this to work.
If you are trying to run these queries manual, and don't use a prefix, change them like this:
[sql]ALTER TABLE language ADD phrasegroup_vbogram MEDIUMTEXT NOT NULL;

INSERT INTO phrasetype (phrasetypeid, fieldname, title, editrows) VALUES (885, 'vbogram', 'vB-O-Gram', 3) [/sql]
Reply With Quote
  #27  
Old 01-23-2005, 07:39 PM
boo.3 boo.3 is offline
 
Join Date: Nov 2004
Posts: 232
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

awesome!

will try out when i update to 3.0.6
Reply With Quote
  #28  
Old 01-23-2005, 08:06 PM
trafix's Avatar
trafix trafix is offline
 
Join Date: Dec 2002
Location: Australia
Posts: 1,021
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sorry guys ... i fixed the install script ...
Reply With Quote
  #29  
Old 01-23-2005, 08:21 PM
docvader's Avatar
docvader docvader is offline
 
Join Date: Dec 2002
Posts: 520
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by trafix
Sorry guys ... i fixed the install script ...
No problem trafix. I forgive you.

My girlfriend doesn't...

LOL.
Reply With Quote
  #30  
Old 01-23-2005, 08:35 PM
trafix's Avatar
trafix trafix is offline
 
Join Date: Dec 2002
Location: Australia
Posts: 1,021
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

did you find any nice flash files?

PS your not the only one that get thrown in the doghouse if you sit infront of the pc too long at night
Reply With Quote
  #31  
Old 01-23-2005, 08:42 PM
trafix's Avatar
trafix trafix is offline
 
Join Date: Dec 2002
Location: Australia
Posts: 1,021
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I uploaded the waterfall swf zip file to the firat post ... you only need to upload vodopad.swf from the zip
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 06:15 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.05956 seconds
  • Memory Usage 2,314KB
  • Queries Executed 25 (?)
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
  • (7)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
  • (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