Help with script that retrieve remote files [message #176399] |
Fri, 30 December 2011 15:29 |
Dianakc
Messages: 1 Registered: December 2011
Karma: 0
|
Junior Member |
|
|
Hello,
I know very little about programming, even so I was able to use PHP
Simple DOM for open a file and outputs a new xml file. I'm trying to
create a WordPress xml import script for a specific local service that
doesn't offer any content export. The script must open all remote
files (after some service config) and output a new xml file for
download.
I already have the working script but need help on:
* Open all remote .htm files with the prefix 'arch'
Right now the script works greatly on parsing a single static/remote
local htm file and output a new xml file, but can't figure out how to
open prefix-based files.
Thanks for any help
|
|
|
Re: Help with script that retrieve remote files [message #176400 is a reply to message #176399] |
Fri, 30 December 2011 15:47 |
Jerry Stuckle
Messages: 2598 Registered: September 2010
Karma: 0
|
Senior Member |
|
|
On 12/30/2011 10:29 AM, Dianakc wrote:
> Hello,
>
> I know very little about programming, even so I was able to use PHP
> Simple DOM for open a file and outputs a new xml file. I'm trying to
> create a WordPress xml import script for a specific local service that
> doesn't offer any content export. The script must open all remote
> files (after some service config) and output a new xml file for
> download.
>
> I already have the working script but need help on:
>
> * Open all remote .htm files with the prefix 'arch'
>
> Right now the script works greatly on parsing a single static/remote
> local htm file and output a new xml file, but can't figure out how to
> open prefix-based files.
>
> Thanks for any help
>
>
You will need a way to list the files, i.e. with (s)ftp. HTTP protocol
has no provisions for wildcards in URI names.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex(at)attglobal(dot)net
==================
|
|
|
|