[PHP] Re: Pulling my hair out over an include_once();

2010-03-20 Thread Watson Blair
ah, i forgot to properly phrase my question... what am i doing wrong, and how do i make it work? slash, could you guys/girls point me towards a tutorial that will give me a hand? Thanks again, Watson On Sun, Mar 21, 2010 at 1:00 AM, Watson Blair wrote: > Hey all, i'm sure i'm missing something gl

Re: [PHP] Re: Pulling my hair out over an include_once();

2010-03-20 Thread Stan Vassilev
Hi, As the error says, this is a problem with the server configuration. In your php.ini file, allow_url_include should be enabled. As an alternative, if you have allow_url_include off, but allow_url_fopen on, you can file_get_contents() that URL and eval() it. Keep in mind you need *absolute

Re: [PHP] Re: Pulling my hair out over an include_once();

2010-03-20 Thread Adam Richardson
On Sun, Mar 21, 2010 at 1:12 AM, Watson Blair wrote: > ah, i forgot to properly phrase my question... what am i doing wrong, and > how do i make it work? slash, could you guys/girls point me towards a > tutorial that will give me a hand? > Thanks again, > Watson > > On Sun, Mar 21, 2010 at 1:00 AM

Re: [PHP] Re: Pulling my hair out over an include_once();

2010-03-20 Thread Adam Richardson
On Sun, Mar 21, 2010 at 1:45 AM, Stan Vassilev wrote: > > Hi, > > As the error says, this is a problem with the server configuration. > In your php.ini file, allow_url_include should be enabled. > > As an alternative, if you have allow_url_include off, but allow_url_fopen > on, you can file_get_co

Re: [PHP] Re: Pulling my hair out over an include_once();

2010-03-20 Thread Watson Blair
hey adam, i changed the code to use file_get_contents();, however, when i tried to later call a function form the file rss_fetch.inc it came up as an undefined function did i miss something? thanks, Watson On Sun, Mar 21, 2010 at 1:46 AM, Adam Richardson wrote: > On Sun, Mar 21, 2010 at 1:12

Re: [PHP] Re: Pulling my hair out over an include_once();

2010-03-20 Thread Watson Blair
ya, sorry i diden't specify, i'm trying to build a simple RSS (haha, fat chance it being simple, right?) reader for a site to import an ebay RSS feed and desplay the contense. I'm using Magpie to accomplish it. also, you'll be glad to know that your fix worked like a charm, all i need to do now is

Re: [PHP] Re: Pulling my hair out over an include_once();

2010-03-20 Thread Adam Richardson
On Sun, Mar 21, 2010 at 2:20 AM, Watson Blair wrote: > ya, sorry i diden't specify, i'm trying to build a simple RSS (haha, fat > chance it being simple, right?) reader for a site to import an ebay RSS feed > and desplay the contense. I'm using Magpie to accomplish it. also, you'll be > glad to kn

Re: [PHP] Re: Pulling my hair out over an include_once();

2010-03-20 Thread Rene Veerman
On Sun, Mar 21, 2010 at 7:28 AM, wrote: > Duly noted. Thanks for baring with me on this one guys! > Sent from my Verizon Wireless BlackBerry > > -Original Message- > From: Rene Veerman > Date: Sun, 21 Mar 2010 07:26:24 > To: Watson Blair > Subject: Re: [PHP]