0
votes
1answer
35 views

How to make database entries stick to a User's account if those entries were created before the User account was

I'm trying to think of the best way to allow users to create database objects without creating an account but then associating those objects with a user's account when they decide to sign up. I will ...
-1
votes
1answer
21 views

How are accounts created on websites [closed]

It's not something I really need to focus on since I'm still kind of in a low stage of learning, I was just curious what language is used to store accounts to a database. Like if I was to make a ...
0
votes
0answers
34 views

Framework/Approach to organize and store user accounts?

What is a good way to store users, with roles and stuff. Should I use just a SQL database or something like Active Directory, or something else? What are their pros/cons? Requirements Shall be ...
0
votes
3answers
434 views

SQL server 2008, issue with attaching a database

everybody. My question is about SQL Server 2008(i run Win 7). Whenever I try to attach a Norhtwind database(locally), it gives me an error. I think that it is something to do with my account and ...
0
votes
1answer
51 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, ...
0
votes
0answers
43 views

Registration User Account Status

I am creating a registration page for people who want to attend a conference. For the conference they can choose to give a lecture but to do so they have to submit a proposal that will be approved or ...
3
votes
3answers
413 views

Using node.js for my server, need to setup user accounts, which database program should I use?

I'm pretty new to the whole node.js thing (as well as servers, javascript and the internet in general). I'm setting up a node.js server and I want to be able to create user accounts. Assumption 1: ...
1
vote
2answers
114 views

Include Account info in Users Database

I'm building my first Rail App and are beginning to setup my database. I have a simpel Users table containg name, e-mail (login), password and so on. The site lets the users bet each other (with ...
14
votes
8answers
9k views

What's the easiest way to get a user's full name on a Linux/POSIX system?

I could grep through /etc/passwd but that seems onerous. 'finger' isn't installed and I'd like to avoid that dependency. This is for a program so it would be nice if there was some command that let ...
1
vote
2answers
1k views

Modifying my website to allow anonymous comments

I write the code for my own website as an educational/fun exercise. Right now part of the website is a blog (like every other site out there :-/) which supports the usual basic blog features, ...