View Single Post
  #1  
Old 07-23-2008, 08:02 PM
Jasen Hicks Jasen Hicks is offline
 
Join Date: Oct 2006
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Code Excutes when called direct, but not as plug :(

Here are my forums: http://www.gamegavel.com/forum I do have the license you can ask vB

Anyways, I run an auction site and so does this fellow I know in AU, we are both trying to do the same thing, but since I can code and he can't I am writing it. I managed to get the code how I wanted it to exceute as a stand alone... seen here:

http://www.gamegavel.com/forum/cats.php

Code for the file:
PHP Code:
<?php 
 
include('../includes/config.php');
include(
'../includes/functions.php');
include(
'../includes/class_database.php');
include(
'../language/english/category.lang.php');

$db = new database;

$db->connect($db_host$db_username$db_password);
$db->select_db($db_name);

$sql_select_cats_list $db->query("SELECT category_id, items_counter, hover_title FROM

    " 
DB_PREFIX "categories WHERE parent_id=0 AND hidden=0 AND user_id=0 ORDER BY order_id ASC");
?>

<table width="100%" border="0" cellspacing="1" cellpadding="2" class="bordercat">

<? 
while ($cats_header_details = $db->fetch_array($sql_select_cats_list)) 
{
    $category_link = process_link('categories', array('category' => $category_lang[$cats_header_details['category_id']], 'parent_id' => $cats_header_details['category_id'])); ?>
   <tr>
      <td class="contentfont"><img src="../themes/auzbay_theme/img/arrow.gif" hspace="3" align="absmiddle"><a class="ln" href="../<?=$category_link;?><?=((!empty($cats_header_details['hover_title'])) ? 'title="' $cats_header_details['hover_title'] . '"' '');?>>
         <?=$category_lang[$cats_header_details['category_id']];?>
         <?=(($setts['enable_cat_counters']) ? (($cats_header_details['items_counter']) ? '(<strong>' $cats_header_details['items_counter'] . '</strong>)' '(' $cats_header_details['items_counter'] . ')') : '');?></a></td>
   </tr>
   <? } ?>
</table>
Comes up great, looks fine for now, so lets make the plugin.

I go in, add the plugin like so:

PHP Code:
ob_start();
  include(
'forums/cats.php');
  
$includedphp ob_get_contents();
ob_end_clean(); 
Then, when I activate it, I get:

Warning: include(home/gamega5/public_html/auction/forums/cats.php) [function.include]: failed to open stream: No such file or directory in [path]/global.php(405) : eval()'d code on line 2

Warning: include(home/gamega5/public_html/auction/forums/cats.php) [function.include]: failed to open stream: No such file or directory in [path]/global.php(405) : eval()'d code on line 2

Warning: include() [function.include]: Failed opening 'home/gamega5/public_html/auction/forums/cats.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in [path]/global.php(405) : eval()'d code on line 2


At the top of the forums where I inserted the $includephp.

So then, I change the path so the plugin code now looks like this:

PHP Code:
ob_start();
  include(
'home/gamega_5/public_html/forums/cats.php');
  
$includedphp ob_get_contents();
ob_end_clean(); 
But I get the same error. Am I really doing something that wrong?
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01131 seconds
  • Memory Usage 1,794KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_php
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.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
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • 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
  • showpost_complete