vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Code Excutes when called direct, but not as plug :( (https://vborg.vbsupport.ru/showthread.php?t=186160)

Jasen Hicks 07-23-2008 07:02 PM

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?

Opserty 07-23-2008 08:23 PM

Maybe
PHP Code:

include('./../forums/cats.php'); 

is the file location you need?

Jasen Hicks 07-24-2008 01:50 AM

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

Dismounted 07-24-2008 06:37 AM

Always chdir() to the forum directory in your scripts if they are located outside the forum root directory. Most likely, that is the problem.

Jasen Hicks 07-24-2008 02:33 PM

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?

Dismounted 07-25-2008 05:45 AM

Please post the code you are using now.

Jasen Hicks 07-25-2008 11:36 AM

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.

Dismounted 07-26-2008 03:53 AM

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).

Jasen Hicks 07-26-2008 04:12 AM

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?

Dismounted 07-26-2008 04:20 AM

cats.php, at the very top.


All times are GMT. The time now is 04:12 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.02933 seconds
  • Memory Usage 1,755KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete