Tagged Questions
0
votes
1answer
44 views
Redirect 401 “authorization required page” to custom page
Is there a simple way I can encode a front-end php redirect to a custom page upon error?
I have a page in a directory protected by an .htaccess password, but if you cancel the system dialog or enter ...
0
votes
1answer
87 views
Throw a custom 401 HTTP Exception in Kohana
When I throw a HTTP_Exception_401 in Kohana 3.3 I get the following error:
Kohana_Exception [ 0 ]: A 'www-authenticate' header must be specified for a HTTP 401 Unauthorized
Now the obvious problem ...
1
vote
1answer
189 views
php and ajax - upload base64 photo and return link to edit
I've tried to make this:
Upload photo from a PC as base64 string ("data:image/jpeg;base64,...")
PHP will save this photo in full resolition as .jpg and make 160x160 .png thumbnail
Then it will ...
0
votes
2answers
226 views
401 error showing while requesting access token in my twitter application for a website
i am developing my first twitter application.i managed to get request_token and i successfully redirected after the twitter login.But my problem is i cant get the access token it showing 401 response.
...
1
vote
1answer
96 views
preg_match 401 Access Denied
I am attempting to use preg_match to check for "401 Access Denied" and if found, echo "failed" else "ok". I just cant seem to grab the right info so i can output it.
HTTP/1.1 401 Access Denied ...
0
votes
1answer
102 views
Google fusion tables gives me a 401 on 'show tables' query
I'm merely trying to 'SHOW TABLES' and I've tried to add the api key, the client id and secret and whatnot in the request URI and all i keep getting is
"code": 401,
"message": "Login Required"
It ...
0
votes
1answer
236 views
file_get_contents authentication gives '401 Access Denied Error'
I am trying to create a database in cpanel using the folowing comment
$result ...
1
vote
0answers
701 views
tmhOAuth failed to validate oauth signature and token
I'm trying to use The Matt Harris's oAuth php library to get user access tokens from Twitter users on my app, but I keep getting the error "Failed to validate oauth signature and token".
...
2
votes
3answers
1k views
Upload file to google drive issue PHP
I have a problem while uploading a file to Google Drive, I can't upload file. Anyone can help, please answer.
Hereunder is the error I got while uploading file:
{
"error": {
"errors": [
{
...
0
votes
2answers
200 views
php fread a url with htaccess password? [duplicate]
Possible Duplicate:
mysql_fetch_array() expects parameter 1 to be resource, boolean given in select
$handle = fopen(site_url() . ...
5
votes
3answers
5k views
Access Exchange Web Services with PHP and cURL
Hello,
I am currently writing a client to access a Microsoft Exchange server and read contacts, appointments etc. from it.
Through days of searching I've been able to connect to the EWS via PHP's ...
0
votes
1answer
162 views
Error 401 when using OAuth in PHP
I'm trying to connect to my University's OAuth system. Unfortunately it returns a 401 error:
This request requires HTTP authentication ().
I have replaced the actual values for the keys etc below ...
0
votes
2answers
630 views
jQuery AJAX call in PHP resulting in 401 errors
I've got a intranet site running under IIS7 using PHP 5+, jQuery 1.5.1, Windows Authentication for SSO capabilities.
Whenever I make an AJAX call to another PHP script, Firebug returns a 401 ...
1
vote
1answer
1k views
[PHP]Error 401 Token invalid while using google api oauth access token
After getting acces token I'd like to use it to read protected data (e.g. contacts). But as a response to the request I'm getting
Token invalid - Invalid AuthSub token.
Error 401
I compared ...
5
votes
2answers
4k views
PHP Digest auth, logout
Is there a way to logout of a digest authentication done in php.
I have tried unset($_SERVER["PHP_AUTH_DIGEST"]);
But it wont ask to relogin.
I know if i close the browser then it will work and here ...