vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   e-steki Smilie Maker 1.7 (https://vborg.vbsupport.ru/showthread.php?t=100043)

shiva 01-11-2006 10:46 PM

Thanks, don't speak Greek, so couldn't see. :)

I should remember it, but the insane amount of templates VB uses gets you confused sometimes. :(

Lea Verou 01-11-2006 10:54 PM

You should change the editor_smiliebox template.
Here's mine:
HTML Code:

<if condition="$show['smiliebox']">
<fieldset id="{$editorid}_smiliebox" title="$vbphrase[smilies]">
        <legend>$vbphrase[smilies]</legend>
        <table cellpadding="4" cellspacing="0" border="0" align="center">
        $smiliebits
        <if condition="$show['moresmilieslink']">
        <tr>
                <td class="smallfont" colspan="$vboptions[smcolumns]">[<a href="#" onclick="vB_Editor['$editorid'].open_smilie_window(smiliewindow_x, smiliewindow_y); return false" title="<phrase 1="$vboptions[smtotal]" 2="$totalsmilies">$vbphrase[showing_x_smilies_of_y_total]</phrase>">$vbphrase[more]</a>]</td>
        </tr>
<div class="smallfont"><a href="$vboptions[bburl]/smmaker.php" target="_blank">$vbphrase[smmaker_smiliepopup]</a></div>
        </if>
        </table>
</fieldset>
<else />
<div id="smiliebox" style="display:none"></div>
</if>


shiva 01-12-2006 12:13 AM

Thanks, works fine. :)

thedvs 01-14-2006 01:23 AM

Has anyone got the same smilie pack/faces for boards using dark skins?

MooMan65 01-16-2006 08:34 PM

Quote:

Originally Posted by j.jacobsen
Is there a way to get some of your faces images. Im running the forum on a dark background, which would match perfectly.

I've attached my face pack which you can use jacob. Pick the ones you want. :) Remember, if you end up wanting to use more than what's normally in the hack, you'll have to modify the template to include the higher numbers. I had to do that plenty of times. :p

One note: My image size is different from the normal hack's size, optimised for the rest of my images, so you'll most likely need to adjust your other face parts to fit on these properly. ;)

jj 01-16-2006 08:57 PM

thx a lot

shiva 01-16-2006 09:06 PM

Actually, I noticed something with this, and had to switch it off because of it. It doesn't reconize permissions and usergroups. Even though I am a admin, when I go to the page, it shows me as a guest (register username/password shows up)

A member logged in using that, and totally buggered up his status for the rest of the board, he had to log out and relog back in. Any ideas on how to fix this?

Maagic 01-17-2006 09:11 PM

Quote:

Originally Posted by nexus851
I have GF 2.0+ installed, the faces, mouth, nose all show up... except the smilie when u try to create it doesn't show ... just a "X" mark.. when i try to goto "/forum/modules/e-steki_smilie_creator.php?face=1&eyes=1&mouth=1",


i get Internal Server Error... how do i fix this?? Anyone overcome this issue?


Nevermind, fix it... had permission problems...

CAN this SMILIE be implemented into VBSHOUT???

How did you fix this? I'm having the exact same problem...

Dave-ahfb 01-19-2006 01:09 AM

How can this be available only to certain user groups?

Lea Verou 01-19-2006 09:21 AM

Quote:

Originally Posted by Dave-ahfb
How can this be available only to certain user groups?

Why would you do that?

Dave-ahfb 01-19-2006 10:24 AM

I would like to make it available to only the group we call "AHFB Allstars", thus (hopefully) encouraging folks to be more helpful with others.

Lea Verou 01-19-2006 11:08 AM

Supposing that the usergroupid is 10 you should find:
PHP Code:

require_once('./global.php'); 

Add under:
PHP Code:

if (!is_member_of($vbulletin->userinfo10)) 

        
print_no_permission(); 



Dave-ahfb 01-19-2006 02:43 PM

thank you very much

*Installed*

Danny Diamond 01-20-2006 02:11 PM

Question.

I can get it to display here


http://www.monks-diner.com/forum/smmaker.php


but how do I get it to appear on the home page or in a post for all my members to see without redirecting to PHP

Lea Verou 01-20-2006 02:13 PM

Quote:

Originally Posted by KYNSimon
Question.

I can get it to display here


http://www.monks-diner.com/forum/smmaker.php


but how do I get it to appear on the home page or in a post for all my members to see without redirecting to PHP

There is a bbcode that goes with it. However note that it only works in posts and pms. :)

Danny Diamond 01-20-2006 02:16 PM

I actually ended up adding it to my navbar.

SnickersTK 01-21-2006 03:21 PM

e-steki_smilie_creator.php seems to work slow for me, is there any way to speed it up?

because I am on a fast server and only 2 users is using this function :(

Lea Verou 01-21-2006 04:43 PM

Yeah, make it to overlay the images via javascript and not actually combine them for the preview like in here http://users.freestuff.gr/skeftomilo...ley-maker1.htm (made by a greek friend of mine who knows javascript really good). When they use the bbcode the smilie will be created as normal. The drawback to this is that they wont be able to save the smilie via the smilie maker but only if they use it in a post...

SnickersTK 01-21-2006 06:28 PM

Can you make that mod for me?

I don't need them to save it on the comp.

I don't have the knowledge to code it myself with design and all that :(

As far as I understand only e-steki_smilie_creator.php needs to be changed, because that is the one who is a bit slow :( on creating smileys..

Lea Verou 01-21-2006 06:37 PM

Sorry but I'm too busy. Perhaps 1-2 months later but I can't promise...

SnickersTK 01-21-2006 06:59 PM

ok, damn :(

Well thanks for replying

I hope my server wont loose even more speed later...

Lea Verou 01-22-2006 09:26 AM

You could always try yourself ;)
It shouldn't be THAT hard, only time consuming. Just template changes, no php files involved :)

SnickersTK 01-22-2006 10:11 AM

I'm confused :(

I want this one, to do the images faster: e-steki_smilie_creator.php and it is php?

Lea Verou 01-22-2006 10:16 AM

Νο, that one won't change. The difference will be that the images will be overlayed instead of being combined to create a new imge via php. In the posts however, the speed won't change. Just in the smilie maker... That would also save server load :)

SnickersTK 01-22-2006 11:10 AM

oh, okay, I'll look into it :-S

SnickersTK 01-22-2006 05:08 PM

I did it! muhahaahahahhhahahaha

Thanks!

Lea Verou 01-22-2006 07:53 PM

Quote:

Originally Posted by SnickersTK
I did it! muhahaahahahhhahahaha

Thanks!

Congrats! May I see it? I'm really curious! :D
Also, if you want you could release it as an addon so that others that need it could have it too! ;)

Ziki 02-07-2006 06:02 PM

Well I have an prob.When I want to create a smilie or make a random smilie or insert it into a post it doesn't show.Note: IT isn't my browser cause when I visit your site it works for me!!!

Lea Verou 02-07-2006 11:41 PM

You haven't uploaded the e-steki_smilie_creator.php to your forum/modules folder.

It's funny how some people have the audacity to remove the copyright, replace it with their own, and then ask for support. Gosh! :rolleyes:

Ziki 02-08-2006 01:22 PM

lol it is there.It als worked b4 but somehow it stopped working

Dark s.s. Trunk 02-08-2006 07:04 PM

i have a small problem.. after making the smilie it doesnt load an image.. i have GD2+, all updated software on my server.. and my files are uploaded to the right folders my lost...

Ziki 02-08-2006 07:37 PM

Yeah that is the same as I have

Ziki 02-11-2006 06:57 AM

Will someone actualy look at the bugs people post here or what?

Lea Verou 02-11-2006 07:23 AM

Quote:

Originally Posted by Dark s.s. Trunk
i have a small problem.. after making the smilie it doesnt load an image.. i have GD2+, all updated software on my server.. and my files are uploaded to the right folders my lost...

Can I have a link? I went to your homepage and it doesn't load.

ZIKI-SET with that attitude there is low chance that you'll receive any help. I am not obliged to support anything, I support because I want to and I wont support people who are rude like that.

Gallio 02-11-2006 09:11 AM

Ahh, I don't know what I'm doing wrong but my pictures are not showing up in the

www.MYSITE.com/forum/smmaker.php also I cannot create new smiles through the smiley's panel? I must be way off here

forte 02-11-2006 09:19 AM

Quote:

Originally Posted by Dark s.s. Trunk
i have a small problem.. after making the smilie it doesnt load an image.. i have GD2+, all updated software on my server.. and my files are uploaded to the right folders my lost...

Same problem here, but I don't know the version of the GD.

Gallio 02-11-2006 09:20 AM

<a href="http://www.habbotemplates.com/forum/modules/e-steki_smilie_creator.php" target="_blank">http://www.habbotemplates.com/forum/...ie_creator.php</a>

Also I'm getting these errors on this page which I shouldn't be getting.

Did I upload wrong or am I just losing my mind :nervous:

Ziki 02-11-2006 07:47 PM

I wasn't rude.If yes sorry

The link is http://www.zikihideout.com/forums/smmaker.php

Hope you help me now.....

forte 02-12-2006 05:57 AM

Quote:

Originally Posted by ZIKI-SET
I wasn't rude.If yes sorry

The link is http://www.zikihideout.com/forums/smmaker.php

Hope you help me now.....

I think you still havent uploaded the e-steki_smilie_creator.php file into the /modules folder.

Gallio 02-12-2006 06:07 AM

Quote:

Originally Posted by Gallio
http://www.habbotemplates.com/forum/...ie_creator.php

Also I'm getting these errors on this page which I shouldn't be getting.

Did I upload wrong or am I just losing my mind :nervous:

Can anyone help? Its been 24 hours.


All times are GMT. The time now is 09:15 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.01749 seconds
  • Memory Usage 1,825KB
  • 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
  • (1)bbcode_html_printable
  • (2)bbcode_php_printable
  • (9)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)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