A Login Script is a batch script for fine-tuning computer workstation logins. Please don't use this tag for web site login code, such as PHP.

learn more… | top users | synonyms

0
votes
5answers
36 views

Case sensitive php mysql login

I have a simple authentication script that is working but i discovered that for a user admin with password admin, a user ADMIN with password ADMIN can also log in. How do i make this script case ...
-1
votes
0answers
11 views

facebook does not make me create applications and I do not see those already created [closed]

facebook does not make me create applications and I do not see those already created! it'very important for me have an facebook application for pemict at my user to login in my ip.board forum to login ...
0
votes
3answers
43 views

Displaying username using $_SESSION['username']

When I try to display the username of a logged-in user I get 'Welcome, 1' where 1 should be the username of the person logged in. This is my code in the members.php. The commented out line doesn't ...
0
votes
0answers
25 views

I need to create a logon script that adds registry keys with the following values (P+IPAddress) & (S+IPAddress)

Can you someone help me to make this script work ? powershell -Command "& {[system.net.dns]::gethostaddresses([system.net.dns]::gethostname()) | where { $_.addressfamily -eq 'InterNetwork' } | ...
0
votes
2answers
85 views

actions on several login fail attempts - Captcha

I'm working on login script for a website and I need some orientation. My concern its about security.. There are 2 things involved, the login page and the login class, and I managed security as ...
0
votes
2answers
51 views

PHP $_SESSION Error - Headers already sent [duplicate]

I am trying to learn PHP and I keep running into PHP errors. Here is a link to the site http://projects.jeremyohmann.com/homework. Would it be possible for someone to take a look at my code to see ...
-3
votes
3answers
46 views

First Name from database in php login form [closed]

I have a login form for users and admin and i want my users to be greeted by there first name after they login. i have a table called users with the following columns ID, username, password, admin, ...
0
votes
1answer
68 views

login.php not starting session or setting array

I have a login.php file that after a valid login it does not seem to be starting a session or storing any information in the session array? Any help would be appreciated. Thank you. <?php ...
-1
votes
4answers
114 views

Login pages in php Mysql

I want to create a log in page but it will not work. Can anyone see the error. thank you i have a database where i have 3 rows email - password - custermer_id. <? $email = $_POST['email']; ...
0
votes
1answer
45 views

OS login php script modification

I am trying to modify the following OS login script I found so that when a user has a valid session or "remember me cookie" file A.php is included and if they are not logged in file B.php is included. ...
0
votes
0answers
91 views

PHP Login System 5 Levels Security

I need a login script with user access level for my site and in my search for such a one script I came across PHP Login System script, which has 5 levels. I need help how I can modify this script to ...
1
vote
2answers
57 views

Activate session before expiring if user become active

I am a PHP beginner. I managed to create a user registration/signup system which leads to a dashboard panel. The users is logged in using sessions. I have made a session time script also making the ...
-1
votes
1answer
74 views

PHP login/Register errors

Ok I have been asked by my college lecturer to create a login system using PHP. Now I read up about PHP seeing as Im not familiar to it. I used this code and coded some myself. <?php ...
0
votes
1answer
58 views

ban and user activation system but I have some problems on the login script

I'm new to php. I have a login system, and now I'm trying to implement a ban and user activation system but I have some problems on the login script. Here is the code from my script: <?php ...
0
votes
2answers
200 views

Needing guidance on how to redirect a user if not logged in on admin panel

At the moment I have an extremely basic admin login system. I am able to login in through my admin_login.php page which has a script from my login.php page I can update records from the ...
0
votes
0answers
45 views

Deny TSE session after login script

Is it possible to write a script, executed at the TSE session opening, which check according to user defined Policy if the opening will be granted. If the script return "False", what command should I ...
-3
votes
2answers
142 views

I have created an admin login with PHP but its not working. Can someone guide me through it or offer appropriate amendments?

This is my login form (admin_login.php) with username and password inputs which should then run the login.php script when I hit submit. admin_login.php //the login form <?php $dbhost = ...
-1
votes
2answers
57 views

Protect admin pages

I'm using this login script, but I need a way to protect admin pages. class User{ private $db; public function __construct(){ $this->db = new Connection(); $this->db = ...
0
votes
6answers
273 views

User login script: Users can login with any username and password

I am trying to make a simple user - login system. However, I have everything with sessions, and stuff working but the user login is not working with the database. I can input any username and password ...
1
vote
3answers
186 views

Batch file to copy and launch executable by architecture

I'm trying to create a login batch file to copy 32-bit and 64-bit executable files from a server to a user's local machine then execute those files based on OS type/architecture. This is what I have ...
1
vote
1answer
207 views

Batch Script and Web Certificates

I am trying to install a certificate for a website on multiple machines through a login script. Is this possible or what is the best option? I am most familiar with Batch scripts, if someone has one ...
0
votes
0answers
322 views

Phonegap, PHP server login module error

Hi im getting a error when ever i try to run the following jquery script which tries to connect with the PHP server for authentication. Following is my HTML script: <head ...
-1
votes
2answers
329 views

php login system remember me style

i wrote this code to start session in secure way function sessionStart() { $session_name = 'sec_session_id'; // Set a custom session name $secure = false; // Set to true if using https. ...
0
votes
1answer
41 views

Doing away with Output Buffering

My login script is something like this, usually included on top of the login form: <?php if(isset($_POST['login'])) { require_once("dbconfig.php"); $email=$_POST["username"]; ...
-2
votes
1answer
51 views

Asking about ways to login my account in an embedded web flash game with python? [closed]

It is easy to login my facebook or twitter with python using the urllib module(just do some post/get like the webbrowser). But is there any way to login my account in an embedded web flash game with ...
0
votes
0answers
77 views

Active Directory - ADUC Last Logon not working for Accounts that are automatically logged in

We have 20+ domain accounts that are used to run services... typically email. To prevent them from becoming inactive, i have a script that automatically logs them in. (if i don't do this, i get an ...
1
vote
1answer
94 views

Can I SSH into a machine using expect and interact using a single bash line?

I have a bunch of scripts that do stuff already and I would just like to add this functionality to them. I want to take the following simple expect script and turn it into a bash shell command that I ...
-1
votes
1answer
69 views

php login gives ?>

i was trying to write a php login script. when i upload it to my webpage it show this: ?> I am lost, i tried googling and reading abt php errors and even tried to look at my code many times but i ...
1
vote
1answer
133 views

PHP login script - If statements and arrays

Hello fellow programmers and coders. I am developing an enhanced login script based on the already great login script by zubrag. What i am trying to achieve: If the user is an admin, he will be ...
2
votes
1answer
122 views

Login Form - Unable to Login using php [closed]

I'm trying to code a login script using the following: A Jquery snippet: <script type="text/javascript"> $(function(){ $('div#login-button').click(function(){ var email = ...
1
vote
1answer
207 views

VBS login script using between time ranges

I need to run a vbs script at login that will run a batch script based on a time range of between 22:00 and 06:00 the following day. I have the current script as follows If Hour(Now()) >= 20 AND ...
1
vote
11answers
564 views

PHP Sessions - Login Form - Unable to login

I have a simple script where a user logs in. I am trying to use sessions, so that a user remains logged in on whatever page he browses through the website. I have these scripts: index.php - ...
0
votes
0answers
44 views

What could be the reason login transaction working on Google Chrome. But not working in IE, Firefox etc

Using Adobe Developer ToolBox (Discontinued from Adobe a year ago) I am using adobe Developer tool box to setup a login module for my website. The login module is working fine in Chrome. I am able to ...
1
vote
2answers
94 views

What is the error in this code?..It always go in else

Why is this code not working? It always go in else and set $_SESSION['wronglogin']=1; it is a login script which takes input of email-id and password and then checks that if any such thing exists ...
-2
votes
4answers
225 views

How to check if user entry is already in database? [closed]

I have a database of students in which these fields are available: 1.Name 2.Date of birth 3.Roll number 4.Passing Year 5.Branch Then i am using Register form in which all these fields are involved. ...
0
votes
1answer
82 views

Can i restrict windows login using a java program?

I want to restrict the windows login for a system using a java code so that i can perform a specific number of tasks before the user can logon to the system. Is it possible ?
0
votes
0answers
240 views

Automatically mounting Truecrypt volumes at boot time or user login time [closed]

I need to mount a Truecrypt volume automatically at user login time. This volume is specific for each user. Optionally, I would like users not to be able to see the Truecrypt password being used to ...
-2
votes
1answer
398 views

Create a text file with the logged in user as its filename

I have this script that is creating and updating a text file called Machine.txt and populates it with a list of lines which have this format (username, time and date when the script ran). I’m ...
0
votes
2answers
412 views

login to website using HTMLAgilityPack

In the below code, I can set the value of the username and password using the HTMLAgilitypack but I cannot invoke the click event of the login button (the id in the source code of teh button is "s1"). ...
-2
votes
1answer
377 views

Search for a Login script tutorial not over [closed]

I searched lots of tutorials but no success. I want a login and logout script where username should be email. I tried lots of solutions but there was no sucess. Can anybody help me in with that. Any ...
1
vote
1answer
84 views

Login to Website Requiring Another Website

I've been using the WWW::Mechanize perl module to try to login to a website that requires Steam authentication. So far I've been able to get it to the login page successfully, but once I submit my ...
-1
votes
2answers
164 views

Cookie is set only when checkbox is checked, but not when it's unchecked

My current login script I made with PHP Is working, But when i try to login and uncheck "Remember me" It logs in, But does not set the required cookies, However, If i check the Remember box, It logs ...
1
vote
3answers
259 views

how to logout without logout.php

The php code below is login_successful.php which is obtained after user logs in, in this page i want to display his 'username' and a logout link <html> <head> <?php session_start(); ...
1
vote
0answers
27 views

login with different direct page

Please help me with this code.. :D here is the model mlogin.php db->where('id_user', $this->input->post('username')); $this->db->where('password', $this->input->post('pass')); $query ...
0
votes
1answer
310 views

Flex Builder PHP login

I created a login system for my mobile application, but the moment I press the button nothing happens . When I look at the network monitor, it is connecting, so I am wondering what is going wrong. ...
0
votes
2answers
55 views

problems in checking login form

I do not know why php ignore the if statement and it does not perform the check, <?php require 'default.php'; if(isset($_POST['submit'])){ $username = $_POST['username']; ...
1
vote
0answers
115 views

preg_replace for username and e-mail as one field

I'd like to use a preg_replace for my username/e-mail login. I store it in a SESSION and want to check if that data is inside the database. Since I'd like to give the user the opportunity to log in ...
0
votes
0answers
140 views

Login PHP CURL Script

I have a script to log in to a website and post data... This script uses a cookie.txt in the same folder chmoded to 777... The problem i am facing is i hav many accounts to login... Say if i hav 5 ...
0
votes
3answers
241 views

Problems with PHP, MySQL based log-in system

IMPORTANT After following the advice in the answers below, the client was able to log-in without any problems but did not attempt to actually navigate the secured pages. When he attempted to do so ...
0
votes
6answers
125 views

php login script works locally but not on host

<?php session_start(); include 'db.php'; include 'header.html'; if(!empty($_SESSION['LoggedIn']) && !empty($_SESSION['email'])) { header("location:profile.php"); } ...

1 2 3 4