vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Chat Modifications - [DBTech] vBShout v6 (vB4) [AJAX] (https://vborg.vbsupport.ru/showthread.php?t=236970)

DragonByte Tech 04-26-2011 01:04 PM

Quote:

Originally Posted by Lestat_ (Post 2188811)
installed on 4.1.2 (install version mod is 5.4.3), works great but I have one problem, when I turn on notifications of new threads, I get this :

Code:

*Ghostface has just posted the thread [thread = 29980]No Strings Attached [2011] 720p *Gereed*[/thread]!*
(i added spaces because thread bbcode is working here)
so bbcode for thread is not working :(

I checked permissions, bbcode & bbcode hyperlinks enabled for all users

Is there a way to fix this ?

I need someone's help to fix this, namely FTP info. Would it be possible for you to PM me with such info? If so, I'll be able to solve it soon :)

Quote:

Originally Posted by DemoniK_AK (Post 2188829)
Installed 5.4.3 on 4.1.1 (4.1.3 upgrade planned for this weekend) and have a few issues

If you're running Pro, please post these issues in our Pro support forum :)

Quote:

Originally Posted by demo7up@gmail.c (Post 2188821)
My admin panel wont work for it any item i click

DBTech - vBShout +
Instance Management Chat Room Management View Banned Users Command Log Download Archive Repair Cache Notifications Settings

i just get a notification on the main screen which says go back.

Please ensure you've followed the steps in the 5.4.0 upgrade notes.txt :)


Fillip

DragonByte Tech 04-26-2011 03:12 PM

To try to end the confusion regarding hotfixes, I've decided to adopt adding "Patch Level" (PL) on to the end of my zip files.

Thus, I present vBShout v5.4.3 PL1 (Patch Level 1):
  • The Shoutbox should no longer fail to parse BBCode in shouts on vB4
  • Posting / editing / deleting a shout in a chatroom tab will no longer briefly flash back to the main shoutbox tab. My original fix for this caused some additional problems - namely the shoutbox didn't properly refresh when someone posted a shout.
  • A new "Automated Message" mode has been added, which ensures that automatically posted shouts (e.g. "has just replied to thread") will skip permission checks and use vBulletin's built-in BBCode parsing list when posting the shouts. This ensures that actions like the Pro-only "Shoutbox PM on forum PM" works correctly for users awaiting email confirmation.
  • Permissions issues with editing others' shouts have been resolved. This was a regression issue that got introduced when trying to fix the above problem.
To update, simply re-download the files and re-upload them. The XML file has not been changed in this version.



Fillip

demo7up 04-26-2011 04:19 PM

That update still didnt fix my issues with my admin panel... as stated above

DragonByte Tech 04-26-2011 04:22 PM

It looks like you accidentally uploaded the main vbshout.php to the admincp folder.

Could you please try directly dragging and dropping the contents of the upload folder into your FTP program? That should work :)


Fillip

In Omnibus 04-26-2011 04:38 PM

Quote:

Originally Posted by DragonByte Tech (Post 2188707)
Shame, I could have used your help in fixing it :)

Oh well.

As for the missing plugins, that's the shout sounds :)


Fillip

Appears as though you've resolved the notifications parsing issue. The 64 bit version of QuickTime with iTunes is an issue for Apple. Thank you for the quick fix.

DragonByte Tech 04-26-2011 04:41 PM

Ahh you're using a 64bit browser...

We'd like to move the sounds to HTML5 but the browser usage statistic is too low still, so we really have no options yet :(


Fillip

demo7up 04-26-2011 04:42 PM

I copied the vbshout.php from the upload/admincp in the archive to the admincp folder manually and still nothing. any other suggestions?

demo7up 04-26-2011 04:49 PM

Code:

<?php
/*======================================================================*\
|| #################################################################### ||
|| # ---------------------------------------------------------------- # ||
|| # Copyright ?2007-2009 Fillip Hannisdal AKA Revan/NeoRevan/Belazor # ||
|| # All Rights Reserved.                                                                                          # ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------------------------------------------------------- # ||
|| # You are not allowed to use this on your server unless the files  # ||
|| # you downloaded were done so with permission.                                          # ||
|| # ---------------------------------------------------------------- # ||
|| #################################################################### ||
\*======================================================================*/

// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);

// ##################### DEFINE IMPORTANT CONSTANTS ######################
define('THIS_SCRIPT', 'vbshout');
define('CVS_REVISION', '$RCSfile: vbshout.php,v $ - $Revision: $WCREV$ $');
define('IN_VBSHOUT', true);
define('VBSHOUT_PRO', (file_exists('../includes/xml/bitfield_dbtech_vbshout_pro.xml') ? true : false));

// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array('dbtech_vbshout', 'cphome', 'logging', 'threadmanage', 'banning', 'cpuser', 'cpoption', 'cppermission');

// get special data templates from the datastore
require_once('../dbtech/vbshout/includes/specialtemplates.php');
$specialtemplates = $extracache;

// ######################### REQUIRE BACK-END ############################
require_once('./global.php');

// ######################## CHECK ADMIN PERMISSIONS ######################
if (!can_administer('canadminvbshout') AND $_REQUEST['do'] != 'finalise')
{
        print_cp_no_permission();
}

// ############################# LOG ACTION ##############################
log_admin_action();

// ########################################################################
// ######################### START MAIN SCRIPT ############################
// ########################################################################

if (!empty($_POST['do']))
{
        // $_POST requests take priority
        $action = $_POST['do'];
}
else if (!empty($_GET['do']))
{
        // We had a GET request instead
        $action = $_GET['do'];
}
else
{
        // No request
        $action = 'main';
}

// Strip non-valid characters
$action = preg_replace("/[^a-zA-Z0-9-_]/", "", $action);

if (!file_exists(DIR . '/dbtech/vbshout/actions/admin/' . $action . '.php'))
{
        if (!file_exists(DIR . '/dbtech/vbshout_pro/actions/admin/' . $action . '.php'))
        {
                // Throw error from invalid action
                print_cp_message($vbphrase['dbtech_vbshout_invalid_action']);
        }
        else
        {
                // Include the selected file
                include_once(DIR . '/dbtech/vbshout_pro/actions/admin/' . $action . '.php');       
        }
}
else
{
        // Include the selected file
        include_once(DIR . '/dbtech/vbshout/actions/admin/' . $action . '.php');       
}

/*=======================================================================*\
|| ##################################################################### ||
|| # Created: 17:29, Sat Dec 27th 2008                                # ||
|| # SVN: $RCSfile: vbshout.php,v $ - $Revision: $WCREV$ $
|| ##################################################################### ||
\*=======================================================================*/
?>

Thats my admincp/vbshout.php does that look about right it was also a fresh install

DragonByte Tech 04-26-2011 04:51 PM

Yeah.

Please right click the link you're trying to click and choose "open in new tab" then paste the URL here.

Fillip

demo7up 04-26-2011 04:52 PM

<a href="http://www.nycjdm.com/vbshout.php?do=instance" target="_blank">http://www.nycjdm.com/vbshout.php?do=instance</a>


All times are GMT. The time now is 04:07 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.03329 seconds
  • Memory Usage 1,765KB
  • 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
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (5)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