IO Error - xmal feed wont run


 
Thread Tools Search this Thread
Top Forums Programming IO Error - xmal feed wont run
# 1  
Old 06-20-2010
IO Error - xmal feed wont run

Keep getting

IO Error
and
•nonnumeric port: '' (InvalidURL; misconfigured server?)



This in relation to RSS feeds. We have done a load of work to try to get RSS feeds working.
Now they work. But they wont validate.
http://www.ukcitymedia.co.uk/news/rss.php?feed=New_News

also on a test site
homesplaces new uk stock market news



we have done rss.php code rewrites.
and have got the RSS feeds worting ok. But not with our live database.


Clutching at straws and want to ask about possible server set up problems and opinions.

Linux/Apache/php/mysql

Can anyone throw a few ideas back ??
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

When I run the code yesterday I am getting output,when I run same code today I am getting error?

If run the below code today its creating all directory and getting output files,I f run same code tomorrow I am getting error. can any one give suggestion to sortout this error. OSError: no such file or directory : '062518'My code looks like this import paramiko import sys import os ... (8 Replies)
Discussion started by: haribabu2229
8 Replies

2. Linux

Apt-get update wont run and gives 503 service unavailable error

Hi, I am running on Ubuntu 12 (precise) 64 bit and came to know that i cannot install any packages using apt-get and aptitude. Linux test01 3.5.0-23-generic #35~precise1-Ubuntu SMP Fri Jan 25 17:13:26 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux But the same /etc/apt/sources.list file is... (20 Replies)
Discussion started by: prash358
20 Replies

3. UNIX for Dummies Questions & Answers

Tcl script wont run in bash shell

Hello I'm having a problem running a TCL script in my new OpenSolaris OS. When I go to the directory containing my script called 'Install' (using the gnome terminal), it doesn't seem to be able to find it even though it lists it i.e. if I type "Inst" and hit tab to complete the word, it... (11 Replies)
Discussion started by: sbsbg
11 Replies

4. Shell Programming and Scripting

script wont run

$ ls -l total 44 drwx------ 2 ivanachu users 512 Dec 6 19:15 VILEARN -rw------- 1 ivanachu users 74 Dec 5 18:42 cond -rwx------ 1 ivanachu users 97 Dec 5 21:30 cond2 -rwxrwxrwx 1 ivanachu users 4979 Feb 10 22:42 createHAqmgr.ksh -rw------- 1 ivanachu users 28 Dec 4... (10 Replies)
Discussion started by: ivanachukapawn
10 Replies

5. Shell Programming and Scripting

replace last form feed with line feed

Hi I have a file with lots of line feeds and form feeds (page break). Need to replace last occurrence of form feed (created by - echo "\f" ) in the file with line feed. Please advise how can i achieve this. TIA Prvn (5 Replies)
Discussion started by: prvnrk
5 Replies

6. HP-UX

emacs wont run

hi i keep getting this error message when i try and run emacs: /usr/lib/dld.sl: Unresolved symbol: pthread_mutex_init (code) from ./emacs Abort any ideas? thanks ed. (4 Replies)
Discussion started by: deusprogrammer
4 Replies

7. Shell Programming and Scripting

script wont run from cron job

I have written a simple bash script that will run a wget command to recursively ftp an entire directories and it's contents. #!/bin/bash wget -r -N ftp://user:pass@server//VOL1/dir If I run from the regular command line it works fine. root@BUSRV: /media/backup1$ ./gwbu When I put it in... (1 Reply)
Discussion started by: mgmcelwee
1 Replies

8. Shell Programming and Scripting

error during run: St9bad_alloc - Getting this error while using some conversion progr

Hi all, It will be very useful If you spare some time with me for this worrying error. I am calling a conversion program which is written in C++ for converting a file format to different format. It was working fine for this past 2 yrs. But now it is not working since the file size has been... (1 Reply)
Discussion started by: sathu_pec
1 Replies

9. Shell Programming and Scripting

why wont this script run?

i have this script i wrote, it chokes when running the add install client commandit keeps telling me the add_install_client command is incorrect. When I put the print statement in front of the command so it will echo it, the command looks right on the screen. Yes im am an ametuer, im trying to... (2 Replies)
Discussion started by: BG_JrAdmin
2 Replies

10. Shell Programming and Scripting

Run a program and feed her parameters automaticly

How can I run a program ('prog') through perl (in unix) and feed her required parameters? system ("prog \n"); ????????? now 'prog' ask for parameters and I want the perl script to give them automaticly without humen intervention? (2 Replies)
Discussion started by: roco
2 Replies
Login or Register to Ask a Question
Perlanet(3pm)						User Contributed Perl Documentation					     Perlanet(3pm)

NAME
Perlanet - A program for creating programs that aggregate web feeds (both RSS and Atom). SYNOPSIS
my $perlanet = Perlanet->new; $perlanet->run; DESCRIPTION
Perlanet is a program for creating programs that aggregate web feeds (both RSS and Atom). Web pages like this are often called "Planets" after the Python software which originally popularised them. Perlanet is a planet builder written in Perl - hence "Perlanet". You are probably interested in Perlanet::Simple to get started straight out of the box, batteries included style. Perlanet itself is the driving force behind everything, however. Perlanet reads a series of web feeds (filtering only those that are valid), sorts and selects entries from these web feeds, and then creates a new aggregate feed and renders this aggregate feed. Perlanet allows the user to customize all of these steps through subclassing and roles. For most uses, you probably don't want to use the Perlanet module. The perlanet command line program is far more likely to be useful. CONSTRUCTOR
new my $perlanet = Perlanet->new The constructor method. Can be passed a hashref of initialisers. See "ATTRIBUTES" below for details of the key/value pairs to pass in. ATTRIBUTES
ua An instance of LWP::UserAgent. Defaults to a simple agent using "$cfg->{agent}" as the user agent name, or " Perlanet/$VERSION ". cutoff An instance of DateTime which represents the earliest date for which feed posts will be fetched/shown. feeds An arrayref of Perlanet::Feed objects representing the feeds to collect data from. METHODS
fetch_page Attempt to fetch a web page and a returns a URI::Fetch::Response object. fetch_feeds Called internally by "run" and passed the list of feeds in "feeds". Attempt to download all given feeds, as specified in the "feeds" attribute. Returns a list of Perlanet::Feed objects, with the actual feed data loaded. NB: This method also modifies the contents of "feeds". select_entries Called internally by "run" and passed the list of feeds from "fetch_feeds". Returns a combined list of Perlanet::Entry objects from all given feeds. sort_entries Called internally by "run" and passed the list of entries from "select_entries". Sort the given list of entries into created/modified order for aggregation, and filters them if necessary. Takes a list of Perlanet::Entrys, and returns an ordered list. build_feed Called internally by "run" and passed the list of entries from "sort_entries". Takes a list of Perlanet::Entrys, and returns a Perlanet::Feed that is the actual feed for the planet. clean_html Clean a HTML string so it is suitable for display. Takes a HTML string and returns a "cleaned" HTML string. clean_entries Clean all entries for the planet. Takes a list of entries, runs them through "clean" and returns a list of cleaned entries. render Called internally by "run" and passed the feed from "build_feed". This is the hook where you generate some type of page to display the result of aggregating feeds together (ie, inserting the posts into a database, running a HTML templating library, etc) Takes a Perlanet::Feed as input (as generated by build_feed. run The main method which runs the perlanet process. TO DO
See http://wiki.github.com/davorg/perlanet SUPPORT
There is a mailing list which acts as both a place for developers to talk about maintaining and improving Perlanet and also for users to get support. You can sign up to this list at http://lists.mag-sol.com/mailman/listinfo/perlanet <http://lists.mag- sol.com/mailman/listinfo/perlanet> To report bugs in Perlanet, please use the CPAN request tracker. You can either use the web page at <http://rt.cpan.org/Public/Bug/Report.html?Queue=Perlanet> or send an email to bug-Perlanet@rt.cpan.org. SEE ALSO
o perlanet o Plagger AUTHOR
Dave Cross, <dave@mag-sol.com> COPYRIGHT AND LICENSE
Copyright (c) 2010 by Magnum Solutions Ltd. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.0 or, at your option, any later version of Perl 5 you may have available. perl v5.14.2 2012-03-17 Perlanet(3pm)