
Jasmine
Administrator
/ Moderator
May 19, 2000, 9:25 AM
Post #4 of 5
(283 views)
|
Because the comments are in Italian, they are useless for me Does the line copied below mean something similar to "enter the news filename relative to the original file"? If so, what's the original file, and where is it on your server? One thing, based on your message and the code, that looks suspect is # valorizzazione variabile del file delle notizie con il percorso del file originale # $filenews=("http://www.thestreet.com/feeds/markets/xml/index.xml"); # $filenews=("http://web.tiscalinet.it/oneweb/prove/index.xml"); # $filenews=("http://www.thestreet.com/feeds/free/xml/index.xml"); # $filenews="/users.vr9.com/oneweb/index.xml"; # with this not function $filenews="../index.xml"; # with this (the same with relative path) all good If /users/vr9.com/etc isn't your server, you can't access it. You'll need to use the http path as noted in the http examples provided. If it is on your server, make sure that /users/vr9.com/etc... is your document root. Your document root is located in the $ENV{'DOCUMENT_ROOT'} environment variable.
|