Tagged Questions
The simplexml-load-file tag has no wiki summary.
2
votes
3answers
543 views
simplexml_load_file() error
im relitevley new with php and more so with xml
i have a script working perfectly on my local host, but when i try and put it on my internet server, i get the message:
Warning: ...
2
votes
4answers
10k views
PHP / SimpleXML - Why does Simplexml_load_string() fail to parse Google Weather API xml in Chinese (zh-CN)
I'm trying to load parse a Google Weather API response (chinese response). Here is the API call..
http://www.google.com/ig/api?weather=11791&hl=zh-CN
// This code fails with the following error
...
1
vote
0answers
19 views
Sanitize and secure XML import
I am fairly new to XML, and have started using simplexml_load_file to import content of an XML-file.
I have the following working code, but I know that it is potentially dangerous.
I need help with ...
1
vote
2answers
48 views
reading dynamic xml that is created with php
I am creating an xml file dynamiclly with php after I read data from DB.
this is the file:
http://www.gossipbingo.net/gossipApp/cms/xml.php?skin=1
now I want to read that file from another file with ...
1
vote
2answers
138 views
simplexml_load_file with & (ampersand) in url with Solr
I am using Solr and have the following query which works fine from my browser:
...
1
vote
1answer
161 views
PHP - SimpleXML not returning object
I'm pretty stuck here on getting SimpleXML to return an object when I parse it a string that's part of an objects array.
$a = '<?xml version="1.0" encoding="ISO-8859-1"?><BroadsoftDocument ...
1
vote
0answers
81 views
Korean Characters Not Working simplexml_load_file
well currently I'm loading the youtube rss feed using
simplexml_load_file
The problem I've run into is that it's not returning anything when I use korean characters in the url. The youtube url ...
1
vote
3answers
119 views
simplexml_load_string() != simplexml_import_dom()?
If I load an HTML page using DOMDocument::loadHTMLFile() then pass it to simplexml_import_dom() everything is fine, however, if I using $dom->saveHTML() to get a string representation from the ...
1
vote
1answer
520 views
proxy problem using simplexml_load_file in php
could somebody help me with this issue?
I need to know in php latitude and longitude from an address.
I was doing:
$address = urlencode('my address');
$lat_lng =
...
1
vote
3answers
71 views
reading the first value using simplexml
I am using simplexml to read all the child nodes successfully. But how do I read the "NumCrds"?
<ACCOUNT NumCrds="1">
<ACCNO>some Bank</ACCNO>
<CURRCODE>CAD</CURRCODE>
...
1
vote
2answers
603 views
Error handling in “simplexml_load_file”
I am having problem handling error while simplexml_load_file in my php. I am trying to parse the fox_sports xml, and store the date in my datebase. My code looks like below:
$foxs_url_breaking_news = ...
1
vote
2answers
219 views
Is there anyway to make simpleXML work on web host
<?php
$twitter_url = 'http://twitter.com/statuses/user_timeline/ishrikrishna.xml?count=1';
$buffer = file_get_contents($twitter_url);
$xml = new SimpleXMLElement($buffer);
$status = $xml ...
1
vote
1answer
214 views
Getting cdata content while parsing xml file
I have an xml file
<?xml version="1.0" encoding="utf-8"?>
<xml>
<events date="01-10-2009" color="0x99CC00" selected="true">
<event>
<title>You ...
1
vote
1answer
817 views
Ideal way of dealing with Solr results in PHP?
Firslty, I'm aware of some similar questions along the lines of this one, but I think this situation is different enough to warrant its own question.
I'm running a Solr index, through a jetty install ...
1
vote
3answers
749 views
php simplexml_load_file() with password protected url
Simple question for the one who knows the answer...
$xml = simplexml_load_file("http://url/path/file.xml");
This url is .htaccess protected, how can I pass the login/password as arguments to the ...
1
vote
3answers
998 views
Use simplexml_load_file php function to load gmail feed
I need to connect my php script to Gmail Atom feed to retrieve the count of unread
messages, but I have problem on get the xml feed file:
if($xmlGmailFeed = ...
1
vote
2answers
240 views
How do I load the contents of an rss feed rendered by php?
Wordpress is rendering an RSS feed at http://myurl.com/feed/rss/ but of course there's not actually a file there. I'm writing a script to read and render the RSS, but loading the "file" as XML fails, ...
0
votes
2answers
28 views
Can not load XML file, because encoding fails
This is the error occured:
Warning: simplexml_load_file() [function.simplexml-load-file]: dump.xml:43: parser error : Input is not proper UTF-8, indicate encoding ! Bytes: 0xC7 0xD2 0xB7 0xCE in ...
0
votes
1answer
29 views
simplexml_load_file() issues wthin php class
So I'm trying to use a class I found to fix an eCommerce problem I have.
Original Blog Post
In Washington State online stores need to determined a tax rate based on the shipping address.
WA Sales ...
0
votes
2answers
100 views
Using SimpleXML to load remote URL
I am trying to use SimpleXML to load a remote URL.
If I type into my browser the following;
...
0
votes
1answer
34 views
PHP and simplexml_load_file()
My problem is this, i want to get value of yweather->code from xml file: http://weather.yahooapis.com/forecastrss?w=2502265
How can i do? Thanks for your help and sorry for my english.
0
votes
1answer
72 views
How to get information on server from xml request from client
Can I get information from which web site is came request to read XML file on my web server, and insert into database this information from request?
For example, I want to develop a some script and ...
0
votes
1answer
38 views
Selecting xml elements with the same name with simple_load_xml in PHP
I have a XML (simplified) like this:
<article>
<title>My Article</title>
<image src="someurl.jpg" />
<image src="someotherurl.jpg" />
</article>
How ...
0
votes
2answers
151 views
Parse KML file with PHP
Is there a way to parse google maps *.kml file with simple_xml_load_file("*.kml") ?
I need to save in my database name and coordinates of each polygons registered in my KML file.
On my PHP script, ...
0
votes
0answers
107 views
php simplexml_load_file (script url) failed to open stream
I have this problem using simplexml_load_file function.
I am retrieving an XML from another sub-domain of my project, it's working fine on my local server (win xp, php 5.2.14) but when I try to ...
0
votes
1answer
49 views
simplexml_load_file takes too long to load
I have a 2 line XML file that I attempt to read via simplexml_load_file. It takes several seconds for the file to be opened.
The PHP code is super simple...
$domain = ...
0
votes
2answers
105 views
PHP: Loading multiple XML feeds with simple_xml_load_file
I'm retrieving multiple weather forecasts through Yahoo's weather API -
$stockholm = simplexml_load_file("http://weather.yahooapis.com/forecastrss?w=906057&u=c");
...
0
votes
1answer
35 views
simplexml_load_file from file not ending with .xml
I'm trying to parse an xml file by starting with simplexml_load_file to load the contents. The file comes from a wordpress using an xml feed generated by a .php file.
The problem is it never can ...
0
votes
3answers
126 views
simplexml_load_file can't parse [@attributes] => Array
I am trying to parse this xml feed
[0] => SimpleXMLElement Object
(
[title] => Johannesburg in November
[link] => SimpleXMLElement Object
...
0
votes
2answers
124 views
simpleXML parsing
I'm trying to parse some XML using simpleXML in PHP.
The problem I'm having though, is that some nodes have values like Milk & Cheese and I'm getting a parse error.
What's the easiest way of ...
0
votes
1answer
52 views
simplexml_load_file() error
so I'm trying implement a website which uses data stored in an xml file.
It works fine on my computer, but as soon as I try to upload it, I get the following error:
Warning: simplexml_load_file() ...
0
votes
3answers
122 views
Load gzipped XML file with simplexml_load_file()
I'm trying to load a gzipped XML file using simplexml_load_file() PHP function, but I don't know how to decode it so I can use the data in it.
0
votes
2answers
139 views
simplexml_load_file problems while browsing securely
I'm getting a lot of errors when I browse a clients site securely that have to do with the simplexml_load_file function. Here's an example:
Warning: simplexml_load_file() ...
0
votes
1answer
600 views
simplexml_load_file not working “php_network_getaddresses: failed: Name or service not known”
I started getting these warnings just recently, im not sure why, nor do i know how to fix it. What confuses me more, it was working before, i started working on another class and now i starting ...
0
votes
1answer
63 views
Different outgoing ip using php simplexml_load_file
I have two IPs on my server and I'm trying to split up my xml requests over both IP. How can I get simplexml_load_file to make the request on different IPs?
0
votes
3answers
439 views
PHP: send POST request then read XML response?
I'm trying to write a PHP script that sends a POST request to a remote server, then parses the XML response.
I can do the POST request, but am having difficulty (from other SO questions) working out ...
0
votes
1answer
318 views
Using simplexml_load_file to pull from tumblr - timing out every time
My site is taking ~45 seconds to load. It's because I'm pulling in some XML from tumblr, but I can't figure out if this is my server's fault, tumblr's fault, or some other factor. Can I get this ...
0
votes
4answers
50 views
xml that won't extract
I use simplexml_load_file to get the following xml content into a variable
<suggestions>
<items>
<item stop_id="00018210" stop_id_with_hash_key="00018210!-1579576589" ...
0
votes
4answers
109 views
Timing out a script portion and allowing the rest to continue
I have a widget that runs on my homepage which is loading xml data from an external source. I want to timeout the xml load after x seconds (lately the other site has been having load issues). Here is ...
0
votes
1answer
272 views
simplexml_load_file failed to open stream
i am trying to parse xml from twitter feeds and it was working fine and suddenly i started to get this:
Warning: simplexml_load_file(http://search.twitter.com/search.atom?q=%23jan26):
failed to ...
0
votes
5answers
275 views
PHP simplexml_load_file over http when on same server?
I am working on a high traffic site that parses an XML file to display pages to users. I'm going thru the process of optimizing existing code as much as possible, gzip, cache control, etc etc. I ...
0
votes
1answer
319 views
Simple XML parsing error
I'm trying to iterate through a Twitter XML File, where the container tag is <users>, and each user is <user>. I need to create a variable $id based on the XML attribute <id> for ...
0
votes
1answer
303 views
Display all feeds using simplexml_load() using PHP
I want to loop to get all feeds, but displaying only one
$url = "http://localhost/feeds/feeds.rss";
$xml = simplexml_load_file($url);
foreach($xml->item as $result){
echo ...
0
votes
2answers
648 views
php5 simple_xml_file parse error
I am trying to pass the XML code below, in the first instance using the php function simplexml_load_file. Currently the php code is incredibly simple as follows:
if (file_exists('test.xml')) {
...
0
votes
4answers
3k views
PHP simplexml_load_file - catch file errors
Is it possible to catch simplexml file errors? I'm connecting to a webservice that sometimes fails, and I need to make the system skip a file if it returns some http error or something similar.
...
0
votes
1answer
362 views
With simplexml_load_file I would like to differeniate between time out and and 404 errors
I am currently using:
$page = simplexml_load_file('http://www.example.com/page.html');
In my code I would like to retry if the page time outs, but if the page is not found ( 404 ) I would like to ...
-1
votes
2answers
36 views
Parsing XML with simplexml
Hi im trying to parse XML with simplexml. The problem is i cannot access atributtes, any ideas why?
PHP code:
$xml = simplexml_load_file($source);
foreach($xml->children() as $node) {
...
-1
votes
1answer
408 views
simplexml load on google weather api prooblem
Hi I have been having problems with the google weather api having errors Warning: simplexml_load_string() [function.simplexml-load-string]: Entity: line 2: parser error ....
I tried to use the script ...
-1
votes
2answers
778 views
PHP cURL multiple calls vs simplexml_load_file
If i am making multiple calls to an api on each page in a web app, is cURL right for me, or is using simplexml_load_file with the URL wrapper OK?
Will opening, making the call, and closing the cURL ...