Hi everyone, I have a problem with my sharepoint site, when I go to the home page the log in box keeps popping up, I have to click about 3 to 4 times before it goes away, and it does that everytime I go to the home page, all the other pages does not do that.
Can any one please help me out here.
Thank you.
...
I have an administrator and a guest user...
When the administrator logs in he should be redirected to the default.aspx but if the guest logs in he should be redirected to the guest.aspx page... Currently it is being redirected to Default.aspx...
here is my code
web.config
authentication mode="Forms">
<forms loginUrl="Login.aspx"...
Im writting a RH system witch consist in two "services":
Web App - For RH recruiting management companies
Web site - For people and companies to seek/register CV
The two things use the same databases for all data... my question is about the users... im the WebApp, the user HAVE to be attached in a Company (my clients).. .but in the w...
I was hoping someone could help me with a question I've come up on.
I have a Session object that handles storage of general session data, I also have a Authentication object which validates a users credentials.
Initially I passed the desired Authentication class name to my Session object then had a login method that created an instance...
I'm using DNN 5. When a user logs in, I want to load some data into the session. Where should I add my code? Should I intervene into the login.aspx's code behind?
...
I just started learning AJAX and Yiiframework. What are the steps to create AJAX login form in Yii?
Thank you.
...
how to make a login form in php. I just need to validate a user stored in the database. Please, I don't have any idea on how to make it.
...
Hi, I have a little problem with my simple login system.
this is the code
static class Program
{
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
bool loginSuccessful;
bool loginRetry;
...
I'm building a basic CodeIgniter site that requires a login before you can access any of the site.
If a user visits some site url, something like this:
http://www.mysite.com/project/detail/2049
AND they are current logged out, I have it set to automatically kick them back to the login page.
My question is, after they login, what is ...
I have a normal HTML page in a normal Apache http server (http://yyy.yyy.yyy.yyy/index.html ), with an authentication form, with that form I need to access with the credentials to an application located in other server with diferent IP , that server have a secured application with tomcat: here is the login form in the apache http server:...
This is an odd issue.
We have forms auth for a site, and we recently adjusted the forms auth in web.config to include:
<authorization>
<deny users="?" />
</authorization>
<authentication mode="Forms">
<forms name="ourCookie"
loginUrl="~/../Default.aspx"
protection="All"
path="/"
domain="ourdomain.com"/>
</authentication>
...
Good morning,
for an existing web application I need to implement "time based login constraints". It means that for each user, later maybe each group, I can define timeslots when they are (not) allowed to log in into the system. As all data for the application is stored in database tables, I need to somehow create a way to model this id...
<?php
session_start();
if(isset($_POST['username']) && ($_POST['password']))
{
$con=mysql_connect("localhost","root","");
if(!$con)
{
die('Could Not Connect:'.mysql_error());
}
mysql_select_db("tcs",$con);
$usr=$_POST["...
Hello All,
I am very experienced with PHP etc but a Drupal newbie. I would like to know if there is a way I could put in some additional PHP code once a user has logged in to a Drupal site. The reason I need to do this - to update fields in a different database (not the MySQL Drupal DB). I would need to have access to the Drupal site lo...
I am at the start of A GOOGLE APP PROJECT. Its tempting to dive straight in and use google accounts as the drive behind security and users. But this would super glue my app to google.
I want a fast means to re-secure the pages/site with a users system that works with big page. I want to use RPX for mt poen id - this should be a synch an...
Sometime we get link from a site, when we click the invitation link, it just send us to the index page for login(as we are not logged in in that site), when the login finishes, the site just redirect us to the link on which we clicked.
How this can be achieved in php?
...
How should I design a login system so that each username can only be logged on in one place at a time? I want to keep users from giving their username to someone else to login so they can avoid paying for each user.
If a user is already logged in and tries to log in on another machine should I block the 2nd login (which could be a prob...
Looking for something similar to Mechanize for .NET C#.
If you don't know what Mechanize is.. http://search.cpan.org/dist/WWW-Mechanize/
I will maintain a list of suggestions here. Anything for browsing/posting/screen scraping (Other than WebRequest and WebBrowser Control).
Parsing
HTMLAgilityPack - http://www.codeplex.com/htmlagil...
the html looks like below or you can find it here http://www.vbulletin.org/forum/index.php
<!-- login form -->
<form action="login.php?do=login" method="post" onsubmit="md5hash(vb_login_password, vb_login_md5password, vb_login_md5password_utf, 0)">
<script type="text/javascript" src="clientscript/vbulletin_md5.js?v=3612">...
Hi everyone,
I have been almost finished (well i thought i finished) writing this login page in php. Everything works fine when the user enter in the details and presses the login button.
But after the user logins once they are able to use the forward and back buttons on the browser to go between the 2 pages.
Is there a...