Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Forum Home Announcement Details »»
Forum Home Announcement
Version: 1.50, by rogersnm rogersnm is offline
Developer Last Online: Jan 2012 Show Printable Version Email this Page

Version: 3.6.0 Beta 1 Rating:
Released: 06-10-2006 Last Update: 06-12-2006 Installs: 244
Uses Plugins Template Edits
 
No support by the author.

Forum Home Announcement

vBulletin 3.5.4 and vBulletin 3.6 Beta 1
www.vBHackers.com

What this does
Allows you to add a announcement to The forum home.

To do list...
  • Time to install: As long as it takes you to import a product
  • New Templates: 1
  • Template Edits: 0 (1 (easy) only if you have installed v1.0)
  • New Files: 0
  • New Phrases: 9
  • New Plugins: 1
1. Import product-nicks_homeannoncement.xml

ONLY DO THIS STEP IF YOU HAD VERSION 1.0 INSTALLED
2. In template FORUMHOME:
FIND
Code:
$nick_annouce
AND REMOVE

Help & Support
Before asking for support Please make sure you have done all necessary changes! If you still need support please post a reply here.

Planned Updates
None, post ehre if you have any suggestions.

Hope you like, feedback welcomed.

Remeber to Press:

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #12  
Old 06-17-2006, 05:44 AM
rogersnm rogersnm is offline
 
Join Date: Apr 2006
Location: Cyberspace, UK
Posts: 729
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I wouldn't know i don't use it. Are you sure you uploaded all the files?
Reply With Quote
  #13  
Old 06-17-2006, 05:48 AM
Staxed's Avatar
Staxed Staxed is offline
 
Join Date: Jun 2006
Location: Fayetteville, NC
Posts: 468
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

yup, i'm positive, i've even just reuploaded everything this morning to make sure. It didn't start happening until after I imported the product (though i'm not saying it's your product...it might have been any product...not sure since i can't disable it and try another one.)
Reply With Quote
  #14  
Old 06-17-2006, 05:49 AM
rogersnm rogersnm is offline
 
Join Date: Apr 2006
Location: Cyberspace, UK
Posts: 729
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Can you read the pm
Reply With Quote
  #15  
Old 06-17-2006, 09:07 AM
charlub charlub is offline
 
Join Date: May 2006
Location: England, UK
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm having the exact same problem.


Quote:
Originally Posted by Irisfire
after i installed this...i get a page not found error whenever i try to get into the products management screen or plugins screen...i haven't done anything else but install this product...anyone else have this problem??
Reply With Quote
  #16  
Old 06-17-2006, 09:14 AM
rogersnm rogersnm is offline
 
Join Date: Apr 2006
Location: Cyberspace, UK
Posts: 729
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I ahve fixed iresfire's problem and he gave me a donation (thank you) He had plugin manager reloaded. It managed to latch on during the upgrade and messed up the pluygin system just do me 1 think. Go to your forums, Go to admin cp, right click on Pruduct Manager, Open in new window, tell me what the link is. If it is advplugins.php then you have the same problem as him. Just upload the new plugin mananger for vb3.6 reloaded and then run this query:
Code:
ALTER TABLE `plugin` ADD `flag` TINYINT( 1 ) UNSIGNED DEFAULT '0' NOT NULL
(if ou have a table prefix please add it before plugin` eg. so if your prefix was vb it would be `vbplugin`) and then manually add this plugin:
Quote:
Title: Plugin System Adjustments
Hook Location: admin_global
Execution order: 1
and then for contents add:
Quote:
if (preg_match('/plugin\.php$/', $_SERVER['PHP_SELF']))
{
if (!$_REQUEST['do'] OR $_REQUEST['do'] == 'modify' OR $_REQUEST['do'] == 'product')
{
exec_header_redirect('advplugins.php');
}
if ($_REQUEST['do'] == 'updateactive')
{
if (!function_exists('plugin_updateactive_handler'))
{
function plugin_updateactive_handler()
{
exec_header_redirect('advplugins.php');
}
}
ob_start('plugin_updateactive_handler');
}
if ($_REQUEST['do'] == 'edit' OR $_REQUEST['do'] == 'add')
{
if (!function_exists('plugin_edit_handler'))
{
function plugin_edit_handler($output)
{
global $vbphrase, $vbulletin;

$output = str_replace("<input type=\"reset\"", "<input type=\"submit\" class=\"button\" tabindex=\"1\" name=\"return\" value=\"$vbphrase[save] &amp; $vbphrase[reload]\" accesskey=\"e\" />\n<input type=\"reset\"", $output);
return $output;
}
}
ob_start('plugin_edit_handler');
$vbulletin->nozip = true;
}
if ($_REQUEST['do'] == 'update' AND $_REQUEST['return'])
{
if (!function_exists('plugin_update_handler'))
{
function plugin_update_handler($output)
{
global $_REQUEST;
return str_replace('plugin.php', 'plugin.php?do=edit&pluginid=' . $_REQUEST[pluginid], $output);
}
}
$vbulletin->nozip = true;
ob_start('plugin_update_handler');
}
}
Then the plugin system should work. So you can import the plugin manager reloaded xml properly so it has all the phrases.
Reply With Quote
  #17  
Old 06-30-2006, 04:41 AM
MR-2ZZ MR-2ZZ is offline
 
Join Date: Nov 2004
Location: Belmont Shore, CA
Posts: 144
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This should be a stock feature!!! Very nice!
Reply With Quote
  #18  
Old 07-02-2006, 10:35 PM
curtisstanier curtisstanier is offline
 
Join Date: Mar 2006
Posts: 10
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Amazing Addon Thanks *Clicks Install*
Reply With Quote
  #19  
Old 07-07-2006, 05:29 PM
a simple fa?ade a simple fa?ade is offline
 
Join Date: Jun 2006
Location: Atlanta
Posts: 38
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This is a fine (although simple) hack.

Kudos for making it though.

[high]* a simple fa?ade clicks Installed.[/high]
Reply With Quote
  #20  
Old 07-09-2006, 03:41 PM
Maxman1544 Maxman1544 is offline
 
Join Date: Jan 2006
Posts: 88
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks! This is pretty useful.
Reply With Quote
  #21  
Old 07-15-2006, 06:20 PM
Ophelia Ophelia is offline
 
Join Date: Feb 2006
Posts: 204
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I get the following error when I try to install:

Database error in vBulletin 3.5.4:

Invalid SQL:

### INSERT QUERY GENERATED BY fetch_query_sql() ###
INSERT INTO vb_plugin
(`active`, `executionorder`, `title`, `hookname`, `phpcode`, `product`)
VALUES
('1', '1', 'Forum Home Announcement [Template Alteration and Variables]', 'global_start', 'eval(\'$nick_announce = \"\' . fetch_template(\'nick_announce\') . \'\";\');\r\n switch ($vbulletin->options[\'announce_position\'])\r\n {\r\n case 1:\r\n $Position = \'<!-- what\\\'s going on box -->\';\r\n break;\r\n\r\n case 2:\r\n $Position = \'<!-- end what\\\'s going on box -->\';\r\n break;\r\n\r\n case 4:\r\n $Position = \'<!-- main -->\';\r\n break;\r\n\r\n default:\r\n $Position = \'$navbar\';\r\n break;\r\n }\r\n\r\n$vbulletin->templatecache[\'FORUMHOME\'] = str_replace($Position, $Position . \' $nick_announce\', $vbulletin->templatecache[\'FORUMHOME\']);', 'nicks_homeannoncement');

MySQL Error : Unknown column 'executionorder' in 'field list'
Error Number : 1054
Date : Saturday, July 15th 2006 @ 03:18:27 PM
Script : http://www.site.net/forum/boss/plugin.php
Referrer : http://www.site.net/forum/boss/plugin.php?do=productadd
IP Address : my number
Username : myname
Classname : vb_database
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:10 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.04839 seconds
  • Memory Usage 2,311KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (2)bbcode_code
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete