|
Help,
I am having problems calling a url from PHP code. I need to call a service using a querystring from my PHP code. If I type the url into a browser, it works ok, but if I use file-get-contents() to make the call, I get:
Warning: file-get-contents(...
Started by undefined on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Could this be your problem?
Note: If you're opening a URI with special characters, such as spaces, you need to... .
Try to urlencode() the url.
Hi!
I'm not sure about the parameters(mpaction, format), if they are specified for the amazonaws page or ##.## .
|
|
Hi!
I am requesting a webservice to pull lat/lng coordinates by using country names from a php file using this code:
$defaultcountry = $_REQUEST['country']; $daurl = "http://ws.geonames.org/search?q=".$defaultcountry.'&rows=5'; $contents = file_get_contents...
Started by jan on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I think or your url is wrong or some parameters are not passed like expected
im providing something u guys... .
Is this URL correct from the page you do the AJAX request?
url: '../lib/getdefaultcoord.php'
you should get firebug and examine the XHR from it .
|
|
I can log all the mysql queries by enabling the general log. But it does not show the failed queries.
Is there a way to save failed queries as well?
Started by shantanuo on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There is no easy way of segregating them..
Or you can log failed queries by PHP :
function sql_query($data) { $sql = mysql_query($data failed queries.
|
Ask your Facebook Friends
|
I get this error only after 9 successful calls to same .net RIA service. System.Windows.Ria.Data.EntityOperationException: Login failed for user...
The .net RIA service has NO EntityOperation methods, only the one ServiceOperation which returns an XElement...
Started by Gazza on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Could it be that you're running out of WCF connections? Are you failing to close your channels when you're finished with them?
I came across something similar a while ago in this post: http://geekswithblogs.net/marcel/archive/2007/05/01/112159.....
|
|
What can be done to resolve the exception:
CrystalDecisions.CrystalReports.Engine.InternalException: Failed to open a rowset.
Started by Joshua Drake on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It ....
If your report was targeted to a specific database and then the database was changed without updated the report, this can cause it .
There can be a number of causes.
This is a generic error in Crystal Reports whenever the report query fails.
|
|
How do you tell if a HDD in a hardware mirrored RAID has failed?
Im running Windows Server 2003.
Started by Arcath on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
The failed drive should) then you should be able to ....
If the software monitoring this refers to - run an I/O operation that results in a pile of writes to the array .
If you know that a drive has failed but you are not sure which - i.e.
|
|
I'm using MySQL and PHP.
Running this transaction:
begin; .... commit;
How should I judge whether it failed in PHP?
Answer Snippets (Read the full thread at stackoverflow):
If(!$committed) { //Commit Failed, take appropriate action } else { echo "Successful Insert."; } }
Or, for PDO.
|
|
I have to do a project based on failed software development and implementation in any organizations or case from the internet and then do a forensic investigation on it. can anyone suggest how can i do this project. I have no idea about failed project...
Started by jazzrai on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
:)
IT Project Failures , a ZDNet blog, has some news articles about some failed implementations, generally $100,000,000 over a failed ERP implementation would be a more specific example that you could inspect Disasters (no affiliate link....
|
|
When I try to connect to SQL Server 2005 Enterprise edition on my local machine I get the below error:
"Cannot open user dafault database.Login failed.
Login Failed for user "Domain\My name"
What can cause this error?
Answer Snippets (Read the full thread at stackoverflow):
If it can contact the domain controller then....
What version of SQL Server?
Another reason can be because SQL Server is failing to contact the domain controller.
Either the login's default database no longer exists, or the login has no rights to it .
|
|
Hi,
I would like to receive an email any time a failed login attempt occurs on our Windows 2003 server. What is the easiest way to accomplish this?
Thanks,
Matt
Started by Mattew on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
A failed logon is just a sign that your security is working; no concerns (although certain patterns of multiple failed....
I'd just like to add that it's not the failed logons you need to worry about.
The script to run every 15 minutes.
|