Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 08-06-2008, 10:03 AM
Geraldm Geraldm is offline
 
Join Date: Dec 2006
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default including external php file not working?

Hi,

I'm trying to get asrep working with vbulletin. Basically, under the first post in a thread I display a Google Adsense Ad.

I want to be able to use the asrep fraud prevention feature. So I have done the following.

Created an external php file called displayad1.php in the root of my forum with the following content:
Quote:
<?php
require_once "asrep/fraudprev.php" ;
# show only if the visitor have seen less than 10 ad displaying pages
# and clicked 2 times or less in the last 1 hour
if(asrep_ipStatsOK(NULL, 0, 1*60*60)){
?>
<script type="text/javascript"><!--
google_ad_client = "<my pubid>";
google_ad_slot = "5185614664";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<?php }else{ ?>
nothing to display
<?php } ?>
Then I create a new plugin which hooks into showthread_start:

Quote:
<!-- AdSense Code -->
ob_start();
require(DIR . '/displayad1.php');
$displayad1 = ob_get_contents();
ob_end_clean();
At this point I have not added $displayad1 to my template, but if I visit my forum I get the following error message:

Quote:
Parse error: syntax error, unexpected '<' in /path/to/public_html/forums/showthread.php(102) : eval()'d code on line 1
Can someone please tell me what I am doing wrong?
Reply With Quote
  #2  
Old 08-06-2008, 10:20 AM
Marco van Herwaarden Marco van Herwaarden is offline
 
Join Date: Jul 2004
Posts: 25,415
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You can not use HTML style comment in PHP/Plugins.

Code:
<!-- AdSense Code -->
Is HTML, not valid in a PHP script.
Reply With Quote
  #3  
Old 08-06-2008, 10:25 AM
Geraldm Geraldm is offline
 
Join Date: Dec 2006
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ah, yes, thank you for that, I have removed that line and it works.. But I have come across another problem......

I've add the $displayad1 to the postbit template.

If I hook the plugin to the showthread_start location, no ads are displayed, but it I change the location to postbit_display_start the ad is displayed as per normal.

Is postbit_display_start called for all posts in a thread? if so how can I get the plugin to only run once when displaying posts in a trread? As stated above, i've tried adding it to the showthread_start location, but no ads are displayed?

Cheers ...
Gerald.
Reply With Quote
  #4  
Old 08-06-2008, 11:00 AM
Marco van Herwaarden Marco van Herwaarden is offline
 
Join Date: Jul 2004
Posts: 25,415
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Try the showthread_complete hook location.
Reply With Quote
  #5  
Old 08-06-2008, 12:15 PM
Geraldm Geraldm is offline
 
Join Date: Dec 2006
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi,

Changing it to the showthread_complete hook location doesn't work, no ads are displayed. Any other suggestions?
Reply With Quote
  #6  
Old 08-06-2008, 12:32 PM
Opserty Opserty is offline
 
Join Date: Apr 2007
Posts: 4,103
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Use $GLOBALS[displayad1] in the template.

Marco forgot about his variable scopes. Rookie...
Reply With Quote
  #7  
Old 08-06-2008, 02:01 PM
Geraldm Geraldm is offline
 
Join Date: Dec 2006
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi,

I had to change the hook location to showthread_start and now $GLOBALS[displayad1] works perfectly.

Thanks everyone for their help!
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 02:32 PM.


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.03848 seconds
  • Memory Usage 2,216KB
  • Queries Executed 13 (?)
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
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (1)bbcode_code
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (7)post_thanks_box
  • (7)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (7)post_thanks_postbit_info
  • (7)postbit
  • (7)postbit_onlinestatus
  • (7)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_postinfo_query
  • fetch_postinfo
  • 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
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete