vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   New Posting Features - Quick Editor Improver - Support Attachment (https://vborg.vbsupport.ru/showthread.php?t=202160)

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.
  1. User in his options sets : Message Editor Interface -> Basic Editor - A simple text box
  2. After that the user tries to make a Quick Edit of any of his posts.
  3. He will fail to do that.
  4. He presses "Save" button in Ajax Quick Edit form
  5. Forum will try to save the post
  6. But it will fail to do so with JavaScript error

    Code:

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

  7. And progress image https://vborg.vbsupport.ru/external/2011/01/5.gif is been shown.
  8. This will continue until user will reload the page or will hit "Cancel" button.
  9. The post will not be saved.

To go around this one we have to use:
PHP Code:

$vbulletin->userinfo['showvbcode'

In other words, for example find this one:
PHP Code:

if ($vbulletin->options['qeimp_enabled']) 

and replace with this one:
PHP Code:

if ($vbulletin->options['qeimp_enabled'] AND $vbulletin->userinfo['showvbcode']) 


I have made such changes around the product.

Here they are:
PHP Code:

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

PHP Code:

        <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']) 

PHP Code:

        <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']) > AND $qei_apply AND $vbulletin->userinfo['showvbcode']) 

PHP Code:

        <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']) 

PHP Code:

        <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']) 

PHP Code:

        <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']) 

PHP Code:

        <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']) 

PHP Code:

        <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']) 

PHP Code:

        <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 ($vbulletin->options['qei_qr_show_attachment']) AND $vbulletin->userinfo['showvbcode']) 

PHP Code:

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

PHP Code:

        <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

1 Attachment(s)
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.
Attachment 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

Quote:

Originally Posted by Support (Post 1980857)
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.
Attachment 112184

You're welcome.

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

Code:

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


All times are GMT. The time now is 03:43 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.01863 seconds
  • Memory Usage 1,807KB
  • 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
  • (2)bbcode_code_printable
  • (14)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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