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)
-   -   vBmoods 1.0 (https://vborg.vbsupport.ru/showthread.php?t=41883)

sub 08-24-2002 05:02 PM

Quote:

Originally posted by Travis641


Did you run the Queries?

Yes I did.

I?ve removed it then ran the queries once more but no good fortune. I believe perhaps... There?s some kind of a disagreement in the midst of a different hack that I've installed previously, I'm going to remove it then reinstall this hack to see what?s up. Wish me luck! :D

Larry@IOG 08-25-2002 10:32 PM

Ok everything is installed and my mood boxes are in place only pne problem though. In the admincp when I click the Add Moods Modify Moods etc All I get is a error screen like this:

The page cannot be found
The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.

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

Please try the following:

If you typed the page address in the Address bar, make sure that it is spelled correctly.

Open the www.impulseownersgroup.com home page, and then look for links to the information you want.
Click the Back button to try another link.
Click Search to look for information on the Internet.



HTTP 404 - File not found
Internet Explorer

Any ideals?

Thanks Larry Jude

Matt87 08-26-2002 02:57 AM

You think you could give us some smilies for it? :D

Larry@IOG 08-26-2002 09:38 PM

Ok I have the Moods in my admin CP only problem is when a mood is selected on a new thread it will not show up at all. When someone does not selecta mood a box with a red X shos in its place.

I need some help it deprived me of sleep last night

Thanks

Larry

Velocd 08-29-2002 11:20 PM

Sorry I'm alittle late in responding to these questions, if you've solved your problem then don't pay any attention. ;)

Quote:

Originally posted by sub
I seem not able to figure out why it's erroring out like this. *blink*
Quote:

Database error in vBulletin 2.2.6:

Invalid SQL: UPDATE post SET pagetext='gawd this betta work',MOOD='',allowsmilie='1',showsignature='0',ic onid='0',attachmentid='0' WHERE postid=''
mysql error: Unknown column 'MOOD' in 'field list'

mysql error number: 1054

Date: Friday 23rd of August 2002 10:34:59 PM
Script: http://www.xxxxxx.com/forums/forums/newthread.php
Referer: http://www.xxxxxx.com/forums/newthr...hread&forumid=2

It states there is an uknown column MOOD, which is correct because this hack called for no creation of the column "mood."

Be sure you follow the instructions exactly, and that these queries have been ran:
Code:

ALTER TABLE post ADD usermoodid SMALLINT (5) unsigned not null;
ALTER TABLE post ADD usermoodmessage varchar(50) not null;
ALTER TABLE post ADD usermoodpath char(100) not null;

Quote:

Originally posted by Larry@IOG
Ok I have the Moods in my admin CP only problem is when a mood is selected on a new thread it will not show up at all. When someone does not selecta mood a box with a red X shos in its place.

I need some help it deprived me of sleep last night


Thanks

Larry

Uninstall the hack, and install it again following the instructions VERY carefully. That box witht the red X is showing because the mood image is not being found, which means either you have not added in moods in the admin cp, or there is a fault in your installation.

Quote:

Originally posted by Matt87
You think you could give us some smilies for it? :D
I actually use a totally different set then smilies, and that is set vBulletin.org uses. They work very nicely for moods.

You will have to visit Dark Project Studios (see the footer of vB.org for link) and ask for permission by the webmaster if you can use them on your site.

Larry@IOG 08-31-2002 04:29 AM

Any ideal why after getting this hack to workit crashed Macs?

Larry

Velocd 08-31-2002 06:11 AM

The answer to that is easy: It's a mac. :p

Just kidding actually. That's alittle vague when you're saying "crashed macs", because this hack shouldn't cause any problems to your system. If you are experiencing problems, it may be in your browser depending on which browser you use.

If your system is glitching up, then 99% it's not because of this hack ^_^

Bison 09-04-2002 01:44 AM

This is the one I need! The other one has a bug in it that deletes the thread setting the mood after editing the thread!

Nice Work BRO!!!!!!

Areku 09-16-2002 11:17 AM

Ne1 tried this on vB 2.2.0?

Is it supposed to work anyway?

Velocd 09-16-2002 06:42 PM

Why in the world are you on vB 2.2.0?
It might, but you might as well upgrade for your benefit anyway.

Buddha 09-18-2002 03:09 PM

*clicks installed*

excellent hack velocd.
i put it under the location and # of posts in my postbit (under the av) and it looks great. thanks a lot buddy.
easy to follow instructions too!

havefun 09-20-2002 07:11 PM

really cool hack! :classic:

i've just installed it.


only one prob:

Code:

you wrote in the 'nakkids's quickreplyon' this:

Now find:
---------------------------
forumdisplay_loggedinuser,forumdisplay_loggedinuser
---------------------------

And replace it with:
---------------------------
newposting_usermoodbits,forumdisplay_loggedinuser,forumdisplay_loggedinuser
---------------------------

but it doesn't show up in my showthread.php!?
what can, should i do?
may be this, but i don't have Chen's one:
post# 28

thanks 4 your time,
havefun

otacon 09-22-2002 05:08 PM

is there a way that i can make it be used with the vbjournal hack ??
even if it doesetn i will still install it :)

groovesalad 09-23-2002 11:32 PM

Help. I've installed Firefly's Quick reply, but none of the following are even in that hack.

I can't find this:
eval("\$replybox = \"".gettemplate('showthread_replybox')."\";");

nor:
forumdisplay_loggedinuser,forumdisplay_loggedinuse r

did I miss something? I went back to Firefly's quick reply hack and those lines aren't even in his hack.

groovesalad 09-24-2002 12:11 AM

.

groovesalad 09-24-2002 07:57 PM

could someone please tell me where I should put this:

///////// vBmood by Velocd /////////

$moodsmilies = $DB_site->query("SELECT iconid, title, iconpath FROM mood");

while ($moodsmilie = $DB_site->fetch_array($moodsmilies)) {
$moodsmiliepath = $moodsmilie['iconpath'];
$moodsmiliename = $moodsmilie['title'];
$moodsmilieid = $moodsmilie['iconid'];

eval("\$usermoodbits .= \"".gettemplate("newposting_usermoodbits")."\"; ");

}
///////// vBmood by Velocd /////////

I don't have this line that is says to place above:
eval("\$replybox = \"".gettemplate('showthread_replybox')."\";");

Also, it says to put some lines of code in the showthread_replybox template. I don't have a template called that. Is there anyone out there that was able to install this correctly?

eckels2 09-26-2002 11:26 PM

Ok... Installed everything to a "T" on 2.2.7...

Yet I don't see anything, in make new thread, make new reply, or edit post... to do anything having to do with moods... I know where it should be on the page, yet there's nothing there.

Any idea?

spittingangels 09-27-2002 04:43 AM

ok, i installed this on 2.2.7 and it works great.

now, one thing i think would make this hack even better would be a starter set of smilies for the different moods. i know we can add our own and that's great but for those without alot of smilies already, then i think having an introductory set of 10 smiles for some fairly common moods would be good.

Brad 09-27-2002 06:18 AM

groovesalad, please remove the info for showthread.php from your post, this is a agenst the TOS.

groovesalad 09-28-2002 12:52 AM

Well? Is anyone able to help with my question??

isman 09-30-2002 06:58 PM

Ok, I followed your directions to the letter and I'm also getting the SQL error when trying a new post.
Quote:

Database error in vBulletin 2.2.7:

Invalid SQL: INSERT INTO post (postid,threadid,title,username,userid,dateline,at tachmentid,pagetext,MOOD,allowsmilie,showsignature ,ipaddress,iconid,visible,usermoodid,usermoodpath, usermoodmessage) VALUES (NULL,'3024','Testing Mood Hack','Mr. Snuffaluffagus','25','1033415622','0','What does this look like?','','1','0','134.215.235.175','0','1','5','i mages/moods/smile.gif','')
mysql error: Unknown column 'MOOD' in 'field list'

mysql error number: 1054

Date: Monday 30th of September 2002 03:53:42 PM
Script: http://www.aparentsheart.com/bbtest/.../newthread.php
Referer: http://www.aparentsheart.com/bbtest/newthread.php
Any suggestions?

I verified the tables were created and modified correctly.

isman 10-01-2002 02:38 AM

Sorry, had some remnants of a previous mood hack in there.

*slinks over to hit the install button*

Pancreas Paul 10-07-2002 03:06 PM

umm, were is the mood icons? I dont have them. Help.

Velocd 10-08-2002 12:26 AM

There are none provided, you have to go through the incredible journey of finding them yourself :p

A good set to use is Dark Project Studios smilies for your moods, but you have to ask him permission first. Just click on the link in vBulletin.org footer.

yzztik 10-09-2002 06:28 PM

Could we just use some our current smilies? If I change the code to point to images/smilies instead of images/mood then I can use those, right? But my questions is, where it says "add modd" is that like the "add smilie" that even though there may be tons in the folder, you can still decide which to use, right? Because if that is the case I will just use some of my current smilies and not go hunting for more :)

Sinzar 10-09-2002 10:37 PM

Database error in vBulletin 2.2.7:

Invalid SQL: INSERT INTO post (postid,threadid,title,username,userid,dateline,at tachmentid,pagetext,allowsmili e,showsignature,ipaddress,iconid,visible,usermoodi d,usermoodpath,usermoodmessage
) VALUES (NULL,'267','','Matrix','1','1034206747','0','test ing','1','1',''24.103.236.179' ,'0','1','1','images/moods/cry2.gif',''
)
mysql error: You have an error in your SQL syntax near '24.103.236.179','0','1','1','images/moods/cry2.gif',''
)' at line 2

mysql error number: 1064

what do I do?

Joe Page 10-17-2002 08:32 PM

I'm using vB 2.2.8 and the last edit isn't there, please help (I'm referring to the postbit edit, the code which you have to edit is not there)

Dynamic One 11-10-2002 06:29 PM

Thanks m8. Nice job. Can sure use it :).

teenfront 11-11-2002 03:19 PM

great hack is it possible to make it so that although custom mood text is not entered the text from the drop down appears alongside the smilie?

cheers,
n

Crazy Pete 12-09-2002 06:49 PM

I get parse errors on the very first step installing this on v 2.2.9. You have:

Code:

//highlight words for search engine
And add above:

Code:

/////////__vBmood by Velocd__/////////



if($post[usermoodid]){

eval("\$postmood = \"".gettemplate("postbit_mood")."\";");_}



/////////__vBmood by Velocd__/////////

I do that, and get a parse error on line 315, which happens to be eval("\$postmood = \"".gettemplate("postbit_mood")."\";");_}. Not sure what to do now, so I had to uninstall it. Looks really nice, though. :(

Crazy Pete 12-11-2002 03:41 AM

Nevermind, got it. :) Had to take out the _ before the }, not sure how that got in there.

Crazy Pete 12-11-2002 04:10 AM

Nope, thought I had it, but I'm constantly getting parse errors in each file from the line if_($usermood)_{, but I don't know why since I added the queries in the first step. What's going on?

Velocd 12-13-2002 02:16 AM

Make sure those underscores "_" aren't existent there, such as:
PHP Code:

if_($usermood)_{, 

As those will give you parse errors. ;)

saint_seiya 01-27-2003 01:54 AM

I am having trouble adding the moods smileys. Can you tell me whats wrong?

(when i add them i just get a red x in the admin area as smiley...)

I made sure mood.php is CHMOD to 777 and the images folder (moods) is too.

What may the problem be?
:disappointed:

subu1 02-06-2003 09:41 PM

ups a great Hack, but i have one problem, i can do my mood only for Thread Start. If i will ask for the thread with a mood, i don't see the the mood.

Sorry my bad oxford english.

greetz subu

S1R1US 02-10-2003 12:55 AM

does this work with 2.2.9?

Alien 03-03-2003 04:30 PM

Is this confirmed working with 2.3.0 anyone? :)

Velocd 03-05-2003 03:37 AM

I have this running on 2.3.0 and everything works just peachy. ;)

Xyphen 03-06-2003 11:24 PM

It would be nice if a different set of mood icons were included but can't complain because you can always replace them with your own set, nice hack btw, will install it.

insanctus 03-07-2003 05:13 AM

I like this one. Seems to work perfect so far.

~ Clicks install.


All times are GMT. The time now is 04:16 AM.

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.01311 seconds
  • Memory Usage 1,822KB
  • 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
  • (4)bbcode_code_printable
  • (1)bbcode_php_printable
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)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