Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
[Adv] banners Hack Details »»
[Adv] banners Hack
Version: 1.1, by Creative Suite Creative Suite is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Version: 3.0.5 Rating:
Released: 01-05-2005 Last Update: 01-08-2005 Installs: 82
DB Changes
 
No support by the author.

what it does ?

This hack allows the administrators to add banners in forumhome or forums or threads ! [ can choose any , or all ]

INSTALLATION

This Hack is tested and working on vb 3.0.4 but should work on ALL 3.x.x versions as well.
Please read the installation-English.txt file in the package CAREFULLY for installation instructions

SUPPORT

well I honestly cannot promise you to solve all-hack problems but I will try to do my best answering your questions and solving the problems I could solve , I also welcome all suggestion .

enjoy : )
Creative Suite
www.Montadiat.com

Show Your Support

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

Comments
  #132  
Old 03-09-2005, 06:07 PM
madkidz madkidz is offline
 
Join Date: Aug 2004
Location: EN-Y-CE Get it
Posts: 51
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Anyone fixed this problem for vb 3.0.7
Reply With Quote
  #133  
Old 03-10-2005, 07:09 PM
BluSmurf BluSmurf is offline
 
Join Date: Nov 2001
Posts: 50
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

anyone got this working on 3.0.7? would love to add this hack to my site
Reply With Quote
  #134  
Old 03-10-2005, 08:37 PM
Eagle Creek's Avatar
Eagle Creek Eagle Creek is offline
 
Join Date: Jan 2004
Location: Netherlands
Posts: 742
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Eagle Creek
Is it full vb3.0.7 compatible?
????
Reply With Quote
  #135  
Old 03-14-2005, 06:03 PM
Lionel Lionel is offline
 
Join Date: Dec 2001
Location: Delray Beach, Florida
Posts: 3,277
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That hack is creating some kind of conflict with vbookie. Once I removed the below at the end of global.php, vbookie worked again...


PHP Code:
 $R THIS_SCRIPT;    
if(
$R != 'forumdisplay' AND $R != 'showthread' AND $R != 'login' ){
$queryxs  $DB_site->query("select * from adv where  script  LIKE '%*$R*%'  order by  'id' desc");
$rowx $DB_site->num_rows($queryxs);
while(
$row $DB_site->fetch_array($queryxs)){
eval(
'$shir .= "' fetch_template('adv_creativeSuite') . '";');
}
$update  $DB_site->query("UPDATE adv SET views = views+1  where  script LIKE '%*$R*%' ");
}
if(
$R == "forumdisplay"){
$foruminfo verify_id('forum'$_REQUEST['forumid'], 11);
$queryxs  $DB_site->query("select * from adv where   forumid  LIKE '%*$foruminfo[forumid]*%' order by  'id' desc");
while(
$row $DB_site->fetch_array($queryxs)){
eval(
'$shir .= "' fetch_template('adv_creativeSuite') . '";');
}
$update  $DB_site->query("UPDATE adv SET views = views+1  where forumid  LIKE '%*$foruminfo[forumid]*%'  ");
}

if(
$R == "showthread"){
$threadinfo verify_id('thread',$_REQUEST['threadid'], 11);
$queryxs  $DB_site->query("select * from adv where threadid LIKE '%*$threadinfo[threadid]*%'  order by  'id' desc");
while(
$row $DB_site->fetch_array($queryxs)){
eval(
'$shir .= "' fetch_template('adv_creativeSuite') . '";');
}
$update  $DB_site->query("UPDATE adv SET views = views+1  where threadid LIKE '%*$threadinfo[threadid]*%' ");

Reply With Quote
  #136  
Old 03-18-2005, 04:03 PM
outlaw621's Avatar
outlaw621 outlaw621 is offline
 
Join Date: Oct 2004
Posts: 71
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Here is a temporary fix to be able to use the "Mark All Forums Read" button.

In the code for the global.php you need to comment out one line as shown below:
PHP Code:
if($R == "forumdisplay"){
// $foruminfo = verify_id('forum', $_REQUEST['forumid'], 1, 1);
$queryxs $DB_site->query("select * from adv where forumid LIKE '%*$foruminfo[forumid]*%' order by 'id' desc");
while(
$row $DB_site->fetch_array($queryxs)){
eval(
'$shir .= "' fetch_template('adv_creativeSuite') . '";');

Do this at your own risk as I have no clue if it is going to break any other functions of this hack. I have completed the above and everything seems to be working. For some reason that particular line is causing the problem. If the author of the hack could look everything over and come up with a better solution that would be great.
Reply With Quote
  #137  
Old 03-18-2005, 10:03 PM
Eagle Creek's Avatar
Eagle Creek Eagle Creek is offline
 
Join Date: Jan 2004
Location: Netherlands
Posts: 742
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by outlaw621
Here is a temporary fix to be able to use the "Mark All Forums Read" button.

In the code for the global.php you need to comment out one line as shown below:
PHP Code:
if($R == "forumdisplay"){
// $foruminfo = verify_id('forum', $_REQUEST['forumid'], 1, 1);
$queryxs $DB_site->query("select * from adv where forumid LIKE '%*$foruminfo[forumid]*%' order by 'id' desc");
while(
$row $DB_site->fetch_array($queryxs)){
eval(
'$shir .= "' fetch_template('adv_creativeSuite') . '";');

Do this at your own risk as I have no clue if it is going to break any other functions of this hack. I have completed the above and everything seems to be working. For some reason that particular line is causing the problem. If the author of the hack could look everything over and come up with a better solution that would be great.
For what problem is this a fix?
Reply With Quote
  #138  
Old 03-18-2005, 10:07 PM
outlaw621's Avatar
outlaw621 outlaw621 is offline
 
Join Date: Oct 2004
Posts: 71
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Eagle Creek
For what problem is this a fix?
For the users who can no longer use the "Mark Forums Read" button or links.
Reply With Quote
  #139  
Old 03-19-2005, 07:59 AM
amoree amoree is offline
 
Join Date: Jan 2005
Posts: 6
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

السلام عليك?

شكرا على هل الهاك بس عندي مشكلة مني عارف شنو اسوي فيها وهي

انا قبل فترة سويت انستول للفايل وما ظبط وياي مرة وبعدين لاحظت انك سويت فيرجنت جديد فحبيت اسوي ابقريد قلت يمكن يظبط وياي طبعا ما ظبط واول ما سويت ابقريد للفايل حق الابقريد اعطاني ايرر انة في دبلكيت للتيبل ياريت تقلي شنو اسوي وهذا اهوة الايرور
ADV Hack - Upgrading : By Creative Suite

Duplicate column name 'NOCL'
Reply With Quote
  #140  
Old 03-19-2005, 11:48 PM
djjeffa's Avatar
djjeffa djjeffa is offline
 
Join Date: Aug 2004
Posts: 521
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Database error in vBulletin 3.0.5:

Invalid SQL: select * from adv where script LIKE '%*adv_index*%' order by 'id' desc
mysql error: Table 'djjeffa_djjeffaVB.adv' doesn't exist

mysql error number: 1146

Date: Saturday 19th of March 2005 07:26:59 PM
Script: http://www.djjeffa.com/vb/home.php
Referer:
Username: djjeffa



my prefix is _vb anyone have any advice?
Reply With Quote
  #141  
Old 03-20-2005, 04:33 PM
xtreme-mobile xtreme-mobile is offline
 
Join Date: Jul 2004
Posts: 366
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ive installed the hack but now i cant log in to my cp panel it says logging in then just goes back to the log in bit again

any ideas?
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 01:36 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04873 seconds
  • Memory Usage 2,337KB
  • Queries Executed 25 (?)
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
  • (3)bbcode_php
  • (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
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (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