Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions

Reply
 
Thread Tools Display Modes
  #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
  #2  
Old 07-23-2008, 09:23 PM
Opserty Opserty is offline
 
Join Date: Apr 2007
Posts: 4,103
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Maybe
PHP Code:
include('./../forums/cats.php'); 
is the file location you need?
Reply With Quote
  #3  
Old 07-24-2008, 02:50 AM
Jasen Hicks Jasen Hicks is offline
 
Join Date: Oct 2006
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Tried that and received this error:

Fatal error: Call to undefined method database::query_read_slave() in /home/gamega5/public_html/forums/index.php on line 415
Reply With Quote
  #4  
Old 07-24-2008, 07:37 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Always chdir() to the forum directory in your scripts if they are located outside the forum root directory. Most likely, that is the problem.
Reply With Quote
  #5  
Old 07-24-2008, 03:33 PM
Jasen Hicks Jasen Hicks is offline
 
Join Date: Oct 2006
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

cats.php is in the forum directory.... let me do some research on chdir() to see if it will help. Thanks for the tips.

EDIT*

I added chdir('forums'); as suggested. The script ran, but gave the error no folder called forums. Maybe because the file is alreayd in the forums directory.

This is really kicking my butt, it seems so simple. The file works when called direct, but gives an error when called in vB. Is my code for the call right (in the plugin)?

--------------- Added [DATE]1216930223[/DATE] at [TIME]1216930223[/TIME] ---------------

Any other advice?
Reply With Quote
  #6  
Old 07-25-2008, 06:45 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Please post the code you are using now.
Reply With Quote
  #7  
Old 07-25-2008, 12:36 PM
Jasen Hicks Jasen Hicks is offline
 
Join Date: Oct 2006
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Dismounted....

Same as above in the OP since the chdir() within cats.php didnt do anything except cause an error.

Here is the gist of what I did...

1. Wrote cats.php a standalone php file, that you can call directly from your browser. Check it out: www.gamegavel.com/forums/cats.php. It generates a nice list of categories from my Auction site.

2. Then I went to the plugins manager, and just did a simple include to call the file, cats.php. I used the required ob stuff to do the include.

3. I tried to use chdir('forums'); to ensure I was in the forums folder where the file was located, but it gave an error because the file was in the forums folder already.

This seems so weird, I mean the file executes when called from the browser but if I try to call it within vB... vB throws the error.
Reply With Quote
  #8  
Old 07-26-2008, 04:53 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Use the full path in chdir (eg. /home/someuser/public_html/). Then make sure all your includes are just "./somefile.php" (one preceding dot only).
Reply With Quote
  #9  
Old 07-26-2008, 05:12 AM
Jasen Hicks Jasen Hicks is offline
 
Join Date: Oct 2006
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Do I use the chdir(/home/gamega5/public_html/forum); in the external php file (cats.php)? or do I use it in the plugin code itself?
Reply With Quote
  #10  
Old 07-26-2008, 05:20 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

cats.php, at the very top.
Reply With Quote
Reply

Thread Tools
Display Modes

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:50 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.04708 seconds
  • Memory Usage 2,271KB
  • 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
  • (4)bbcode_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)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
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete