vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   Plugin Error (https://vborg.vbsupport.ru/showthread.php?t=324562)

Thr33 03-02-2017 02:08 AM

Plugin Error
 
I am trying to register a variable and use data from a php file to display

hook location: init_startup
forumhome > {vb:raw shoutstats}
PHP Code:

vB_Template::preRegister('footer',array('shoutstats' => $shoutstats));
ob_start();
  require_once(
'http://literecords.com/user/sc.php');
  
$shoutstats ob_get_contents();
  
ob_end_clean(); 

Unfortunately with this code i get this error

PHP Warning: require_once(): http:// wrapper is disabled in the server configuration by allow_url_include=0 in ..../includes/init.php(351) : eval()'d code on line 4

I have disabled the plugin right now but i would like to get this to work.

Ive also tried
PHP Code:

  include('http://literecords.com/user/sc.php'); 

instead of require_once & in hook location : global_bootstrap_init_start

PHP Warning: include(): http:// wrapper is disabled in the server configuration by allow_url_include=0 in ..../includes/class_bootstrap.php(103) : eval()'d code on line 2

Dave 03-02-2017 01:08 PM

You should not use the include/require functions to get data from a remote file.
If you want to get data from a remote file, use file_get_contents:
PHP Code:

$shoutstats file_get_contents('http://literecords.com/user/sc.php'); 

This will fetch the output of the PHP file.

If the file is on your local server, use:
PHP Code:

require("user/sc.php"); 

This will execute the PHP code.


All times are GMT. The time now is 04:16 AM.

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.01040 seconds
  • Memory Usage 1,714KB
  • 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)post_thanks_navbar_search
  • (1)printthread
  • (2)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete