Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
auth
- Page 1
Re: How to connect to the Pinterest API using PHP?
Programming
Web Development
1 Month Ago
by Dani
…://github.com/dirkgroenen/pinterest-api-php/blob/master/src/Pinterest/
Auth
/PinterestOAuth.php * https://accreditly.io/articles/use-php-to-post…
auth.log gone
Hardware and Software
Linux and Unix
16 Years Ago
by shwick
…I wanted to separate the cron logs from the
auth
logs, so in /etc/syslog.conf I …cron.log". I also wanted to cleanse the
auth
logs, so I deleted all of them. I…login via ssh, but there were no
auth
logs- a new
auth
.log wasn't created. The cron … to cron.log though. I tried creating an
auth
.log and restarting but that didn't work, …
Re: auth.log gone
Hardware and Software
Linux and Unix
16 Years Ago
by shwick
…with "sudo touch
auth
.log" and changed it's permissions with "sudo chown syslog
auth
.log", "…sudo chgrp adm
auth
.log" and "sudo chmod …had to restart the machine. sshd then started logging to
auth
.log properly. I'm a little concerned with the first…
Auth Object
Programming
Software Development
16 Years Ago
by adam291086
… on a soap server. for example [CODE] cpLatestBrief.authValue = new
auth
(); cpLatestBrief.authValue.username = "username"; // your aql username cpLatestBrief…
Re: Auth Object
Programming
Software Development
16 Years Ago
by adam291086
… using SOAPpy but have no idea how to do the
auth
object. I have tried doing [code] from SOAPpy import WSDL…
Re: Auth Object
Programming
Software Development
16 Years Ago
by adam291086
… by using an API key. I need to use and
Auth
object. If i do something like [code] from SOAPpy import…
JSON Auth Request
Programming
Software Development
12 Years Ago
by Jazerix
…to do a request with an authorization. You get the
auth
from "https://www.google.com/accounts/ClientLogin?accountType=GOOGLE….Create(uri); httpWebRequest.Headers.Add("Authorization", "GoogleLogin
auth
=" + AuthID); WebResponse response = null; try { response = httpWebRequest.GetResponse(); …
Re: Where to find flexi auth function
Programming
Web Development
11 Years Ago
by minitauros
Of course, that could be :). But I can't tell for sure, as I don't know the flexi
auth
system. -- Ok I've downloaded the flexi
auth
package and can't find the function as well. Are you sure it is an existing function?
Re: Where to find flexi auth function
Programming
Web Development
11 Years Ago
by renierdbruyn
I am using the same as this one: https://github.com/haseydesign/flexi-
auth
. the directory you will find it in is: `flexi-
auth
/ library_files / application / libraries / Flexi_auth.php`
removing server auth breaks connection to database?
Programming
Databases
16 Years Ago
by rickya100
… crapping it because when I take of the integrated windows
auth
and enable the anonymous access the site can no longer…
HTTP Auth (.htpasswd) Not Working In CGI-BIN
Hardware and Software
Linux and Unix
16 Years Ago
by samarudge
Hi, I am trying to HTTP
Auth
protect a directory in my cgi-bin directory. I have …
Where to find flexi auth function
Programming
Web Development
11 Years Ago
by renierdbruyn
Hi, Can some one tell me where I can find the function `get_user_by_identity_row_array() `in the flexi
auth
system? it is usauly called like : $this->data['user'] = $this->flexi_auth->get_user_by_identity_row_array(); I have looked every where, but maybe I’m missing it.. where can I find this? Thanks in advance.
Re: Where to find flexi auth function
Programming
Web Development
11 Years Ago
by renierdbruyn
@minitauros, I have gone through all flexi
auth
files, I cant find it any where... @flash Thanks I will try this, but I am looking for where the function itself is declared, I want to see how it works and edit it( I want to add fields).
Re: Auth Object
Programming
Software Development
16 Years Ago
by jlm699
Look into [url=http://freshmeat.net/projects/soappy/]SOAPpy[/url].
Re: Auth Object
Programming
Software Development
16 Years Ago
by jlm699
I've never used SOAPpy myself, but there's a chapter about it in my favorite Python learning book: [url=http://www.diveintopython.org/soap_web_services/]Dive Into Python Chapter 11[/url]
Session destroy not working....
Programming
Web Development
17 Years Ago
by lordx78
auth
.php [code=php] <?php // start session session_start(); // convert username …
Auth cookie doesn't work
Programming
Software Development
7 Years Ago
by overwraith
The following lines do not work. The bool is always false. I have been having trouble getting danni's site to work so if the reply is too short it's 'cuz I typed in the longer version three times and got errrors. FormsAuthentication.SetAuthCookie(login.EmailAddress, login.RememberMe); bool isauth = User.Identity.IsAuthenticated;
Re: Auth cookie doesn't work
Programming
Software Development
7 Years Ago
by overwraith
Here is the login controller; /*Author: Cameron Block*/ using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using System.Web.Security; using CameronBlog.Models; namespace CameronBlog.Controllers { public class …
Re: Auth cookie doesn't work
Programming
Software Development
7 Years Ago
by overwraith
Here is the markup; <!-- Author: Cameron Block --> @model CameronBlog.Models.Login @{ ViewBag.Title = "Login"; } <div class="jumbotron"> <h1>Login</h1> <p class="lead">Log into Cameron's Web Blog. </p> </div…
Re: Auth cookie doesn't work
Programming
Software Development
7 Years Ago
by overwraith
Here is the Login Model; /*Author: Cameron Block*/ using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.ComponentModel.DataAnnotations; using CameronBlog.Repositories; namespace CameronBlog.Models { /// <summary> /// The …
Re: Auth cookie doesn't work
Programming
Software Development
7 Years Ago
by overwraith
Here is the User object; /*Author: Cameron Block*/ using System; using System.Collections.Generic; using System.Linq; using System.Security.Cryptography; using System.Text; using System.Web; using System.Configuration; namespace CameronBlog.Models { /// <summary> /// …
Re: Auth cookie doesn't work
Programming
Software Development
7 Years Ago
by overwraith
Your community is lame. I have posted about 3 discussions here about professional programming and no-body could help.
Re: Auth cookie doesn't work
Programming
Software Development
7 Years Ago
by rproffitt
@overwraith. It's a two way street. There are some that demand support but all this is volunteer like other forums. I see you dumped a lot of code so folk may shy away. Be precise with what is broken. Keep it short. Also, read https://www.daniweb.com/programming/threads/435023/read-this-before-posting-a-question I think your post may …
Re: Auth cookie doesn't work
Programming
Software Development
7 Years Ago
by overwraith
I have a workaround of sorts, I will be looking into entity framework Identity framework for future projects, but instead of a cookie I will be using Session variables to store user name on the server. After the user logs in the user will have a session variable populated with their user name/email address, If the variable is null the user is re-…
Re: JSON Auth Request
Programming
Software Development
12 Years Ago
by darkagn
So what do you get back instead? You will need to read from the response stream and deserialize the returned JSON into a list using whatever DataContract is being returned to you. Also, you can check the `response.StatusCode` to see whether the response is a successful response (ie `HttpStatusCode.OK`) or some sort of problem occurred (such as `…
Re: removing server auth breaks connection to database?
Programming
Databases
16 Years Ago
by varmadba
I didn't understand the post completely but from what i got : Access denied for user 'ODBC'@'localhost' (using password: NO). As the Error Say You are trying to access Mysql with out username or Password,for this anonymous should be set in mysql if possible try connecting with a valid username and password to connect to mysql
Re: Where to find flexi auth function
Programming
Web Development
11 Years Ago
by minitauros
Well, have you checked where `$this->flexi_auth` gets defined? It must get defined somewhere ;). If it is not in the current class, it might be in the current class's parent class.
Re: Where to find flexi auth function
Programming
Web Development
11 Years Ago
by flashhtml5
Instead of the code in your post, try: $this->data['user'] = $this->flexi_auth->get_user_by_id_row_array(); This is a known issue with the identity_row_array() function not working in flexi but returning an empty array. Regards - Shawn
Re: Where to find flexi auth function
Programming
Web Development
11 Years Ago
by minitauros
Well, judging from the line of code you provided, `$this->flexi_auth` *must* be an object, as it can execute a function. It is **impossible** that it is not getting defined somewhere *within* the class you are working with or its parent class. Still can't find it, even if you do a thorough search? :o
Re: Where to find flexi auth function
Programming
Web Development
11 Years Ago
by renierdbruyn
nope... still can't find it is it possible that it si a variation of the function: `get_user_by_identity_query`? Because that is the only function I can find that is similar.
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC