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
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
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!
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
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;