Tagged Questions
0
votes
3answers
54 views
Redirecting logged in users
I have created profiles for users so that when a user logs in they are redirected to their own profile page.
login.php (relevant code only)
$MemberID = user_id_from_username($username);
...
2
votes
1answer
110 views
User profile image not updating
On member.php I want the users uploaded profile picture to display.
//$profile_data grabs the users data within the database
<h1><?php echo $profile_data['Name']; ?>'s ...
1
vote
0answers
304 views
How store user ID as session in login.php
I have the following functions in a file called user.php:
function user_id_from_username($username) {
$username = sanitize($username);
return ...
0
votes
1answer
96 views
creating temporary user accounts for a web application in php
I'm building a PHP application where users can design products and then check out to a shopping cart if they want to.
To let the user create a design, I need to assign a user ID and design ID to ...
0
votes
2answers
263 views
Add new page to Magento user account
I've been stuck on the proper way to do this for a while. I want to add a new page to the Magento user account on the front end after log in/creation. There is some information we would like to gather ...
0
votes
3answers
181 views
Disabling user accounts in MediaWiki
I have a wiki family that has several thousand users that I need to manage. We do not have an elegant way of disabling any of the users that have left the program, in the past we have been able to ...
0
votes
1answer
256 views
PHP Admin Account
On my website, I want a few options to be enabled when someone logs in with an admin account. My question is about how to secure that admin account as much as possible. They way login is setup on my ...
1
vote
2answers
102 views
PHP eMailing script
So I wrote a php script that sends a user a temporary password for when the forget their password so they can login and change it. The script works fine, and the email gets sent with all the correct ...
0
votes
1answer
52 views
Website User upload file and status
I have a user registration page where the user signs up for an event and then submits a paper. A reviewer will then read the paper, and approve/decline it. I finished all the registration, validation, ...
-4
votes
1answer
123 views
Login in to website with php and MySQL [closed]
On my website so far a user can add their username, password and email to a MySQL database through php. I want to now let a user type those same credentials (username and password) into forms and then ...
1
vote
1answer
51 views
How should I architect a site with free and premium memberships?
I'm thinking either a column on the user table with a flag (0 or 1), or a separate table with their userID, date purchased etc. The second option would obviously involve doing joins to determine a ...
0
votes
2answers
829 views
PHP Admin Approval For User Registration
I've been hunting forever for a simple php/mysql solution for a user to register an account - which sends a request to the administrator for approval before they can log in.
Is this possible to do, ...
0
votes
3answers
108 views
user data database structure
I'm running a basic website with some user accounts (no cookies, php session system.).
I'd like to store some data generated by the user only visible for themselves.
For the moment I store the data ...
0
votes
4answers
242 views
Updating relational database in PHP/MySQL
I am teaching myself about web programming. I am trying to create a user account for a website. I have two databases - first one (db_users - userid (auto increment), username, password) to store user ...
0
votes
4answers
966 views
How Do I Create a Account Email Confirmation in Php?
I am trying to send the user an email with a link (like many sites do) and when they click this link, their account will be activated. How exactly would I do this in Php?
0
votes
3answers
210 views
mod_rewrite with user account in URL best method
I'm in the process of developing a site that handles user accounts in the following manner:
www.mysite.com/username
www.mysite.com/username/user-action
I understand the basics with mod_rewrite and ...
2
votes
2answers
83 views
Is it possible to use server side PHP scripts for Specific Linux user accounts
I choose not to post this on SeverFault b/c that site seems to be only for the most experienced server administrators. I started a discussion about it over at MetaStackOverflow
A while back I asked a ...
3
votes
1answer
343 views
security concerns regarding accessing shadow password file from php
I wrote this function in php to check user/pass against account on linux server. It works fine, but I am concerned a little about security.
/* Need to add www-data to group shadow (and restart ...
2
votes
3answers
370 views
How can I make sure that a user cannot login twice with the same account in PHP?
I have a PHP application with sessions, and want to make sure that the users don't give their credentials to third persons, which could use the account at the same time.
Is there any way to make sure ...
0
votes
2answers
128 views
Stopping Account Sharing
I am trying to figure out a way to stop account sharing on a site that requires a login. To solve this I would want to base it on an individuals machine or ip. I know I could base this on a cookies, ...
0
votes
0answers
572 views
Simplest, smallest PHP account system [duplicate]
Possible Duplicate:
Simplest, smallest PHP account system
Can anyone recommend any robust and well-tested small PHP scripts which could handle user account systems. I'm thinking each ...
0
votes
1answer
1k views
Simplest, smallest PHP account system
There's an interesting example of someone managing to create a PHP script for a forum which only takes up 1kb: http://www.nerdparadise.com/blogs/blake/6034/
I wonder if there a similar tiny script(s) ...
0
votes
2answers
579 views
User uploading images to specific directories
So basically I have a site in which certain members are allowed to upload images (comic pages) to their own image galleries (to a specific comic). I have a successful image uploading script that I ...
1
vote
2answers
332 views
Check user account settings in Facebook
I am developing a facebook application for phototagging. I need to send e-mail notifications to users who has been tagged. For that I need to check the user account ...
12
votes
12answers
899 views
create account then verify (or verify then create account)
Most of the examples I see on the web create user accounts in this sequence: user comes to the site, they choose a username and password and enter their email. A confirmation email to sent to this ...
1
vote
2answers
431 views
Handling user account usage with PHP and MySQL
I'm building an application that'll let users have a basic account with the ability to buy more usage for their account. For example, a user can only have 50mb of data after which they can buy more ...
2
votes
2answers
359 views
How to create an account system like 37Signals?
How can I create an account system like 37signals, which is:
Each user gets an independent URL. user.domain.com
Each user gets to add a certain amount of users:
And when they allocate resources for ...
0
votes
2answers
333 views
Ways to retrieve user accounts' last signed in date with provisioning API
There are currently 90,000 user accounts under my domain, and I have been manually deleting inactive accounts but it seems unproductive and a waste of time. I want to make use of provisioning API to ...
2
votes
3answers
2k views
PHP Count Logged-In Users
I'm having trouble figuring out how I can count the number of logged-in users in my application.
What I have: When a user logs in, they get a session (which is used when the user wants to visit a ...
1
vote
4answers
1k views
When you auto-create subdomains on user signup does it create a new website or gives appearance of a website?
I am wondering if subdomains that are created upon signup become websites or do they just give the illusion that they are websites sort of like example.com/username?
I am trying to create something ...
0
votes
2answers
679 views
How to create sub.domain for user opon sign up
I am using php/mysql on linux servers. I want to create a user sub domain for each user upon sign up. For instance, john doe --> johndoe.example.com
The issue is, we are going to allow ...
17
votes
9answers
796 views
Build a Better Access Control System
I'm in the process of a building an access control system as part of a web framework I am developing. I want to make it super flexible and awesome. Can you help me by providing input and insight on my ...
8
votes
1answer
1k views
Facebook Login as supplement to existing login?
I am developing a PHP/MySQL e-commerce site with some social aspects, and am looking to integrate it with Facebook. I already have a native user registration/session handling system. I have managed to ...
0
votes
1answer
379 views
How to create user-accounts' separate folders to save user data in--PHP
How would I save each user's 'default photo' onto a website? This same photo may be used during some of their interactions on the site(maybe in a chat session), and it may be displayed on their ...
1
vote
2answers
997 views
How to create member 'profiles' in PHP?
What is the best way to create member profiles in PHP? For instance, some websites read in the address bar: profile.php?id=11233 and then profile.php?id=13563. How is this actually done? As of now, I ...
1
vote
1answer
77 views
Best way to handle server-side user files?
I'm trying to make a webapp. The application I am making for myself to help with foreign language translations for classes at my college, and I am hoping to make it available online. All the data that ...
5
votes
4answers
2k views
Creating a webpage with user accounts, what do I need to keep in mind?
I am trying to write a website that has user accounts. There isn't much sensitive information other than the password and email address. But I don't really understand what I'm doing; I'm kind of ...
0
votes
3answers
1k views
User accounts in Symfony?
I'm new to Symfony. Is my understanding correct that the User class is actually for controlling sessions? But is there built-in login and account creation? I'm not finding it. But if there's an admin ...
2
votes
4answers
873 views
Secure authentication in PHP
Let me rephrase my last question, what PHP library or framework can I use for professional and secure authentication? Extra points if your idea helps implement account Control Panel features (change ...
2
votes
4answers
255 views
Best Practices for Non-loggable Accounts
I am wondering what the best practices are for creating non-loggable accounts. On StackOverflow, there is a Community Wiki account that I'm assuming can't be logged into.
How should I go about ...

