| | I was looking to make a site where people need to create an account, and log in to view the main pages. Is it easy, or do-able, to use msoft access to make a database where people are able to sign up with a username and password via my website? |
|
|
QUOTE(FeedBacker @ Jun 18 2008, 03:56 AM) How to secure information in a form using a login password?AccessI'm trying to make a database of our company's documents where people can view all the information of certain documents but they are not allowed to add, edit or delete information on the database. They can only navigate and view records.I wanted to open the database using two... read more.
I most strongly suggest to not use Microsoft Access. Secondly, I suggest using a simple php login script and a MySQL database to hold all of your data (usernames and passwords)
If you want a "learn-by-example" set of sources, may I suggest that you use your astahost's cpanel and install the phpbb forum, you will then see how they use php and a mysql database in order to let people create their accounts and then login using username and passwords.
I was looking to make a site where people need to create an account, and log in to view the main pages. Is it easy, or do-able, to use msoft access to make a database where people are able to sign up with a username and password via my website? Yes it is easy but i suggest to use MySql or Postgress instead, and also i agree with the others. Best regards,
Not to mention I've had a HELL of a time trying to get my Access pages to come up properly in any browser other than Internet Explorer... Not to mention none of the intended client computers had Microsoft Office... this WAS at a workplace where I tend to avoid using pirated software...
I since converted their databases to XML which was at the time fairly easy... but that's to say.. this was probably like 5 years ago now... In any case... I agree... PHP + MySQL is pretty slick... and of course, free : ) Another alternative is to use password protected directories, with lots of users for it, it can be done with PHP by sending and checking the headers or with CPanel which does this by adding/modifying .htaccess files in that directory, but I don't like this way, usually there are problems logging off and it doesn't look as "cool" as done with a scripting/programming language and a database or a text file.
If you still want to use Access for your site check this topic Connecting Ms Access To Php Using Odbc which explains in a very simple way how to do it with Php, and if you want to start right now your login system, check out this simple tutorial: Creating a PHP Login Script, in this case, it uses Php, MySql and the PEAR:Db library.
Also i recommend you to search here at the forums, there are a lot of topics related to this, like the following ones:
Best regards,
We just learned the basics of Microsoft Access in school and I have no idea of how it is used for other than organize information for companies. It isn't very flexible and is quite confusing to use. I think it is best suited for info that doesn't need to be "accessed" often as adding/editing records are easy enough, but for people logging on and off of it noone can seem to find anything like that.
I highly recommend using MySQL and PHP (or ASP + MSSQL if you are on Windows) and doing a database from there. That's what I use and that is what major companies use.
1. Create a table of Login names and associated passwords. This can easily be incorporated in a table of employees. We will assume this table to be called TblLogin, and the fields called "LoginName" and "Password". The field Password can have a "password" input mask for security. Or those 2 fields could be created in a separate table that can then be hidden.
2. Create a table called "TblLoginRecords" to keep track of passwords entered as well as errors. This table would have the following fields: LogLoginName (text) LogPasswordEntered (text) LogProblem (Y/N) 3. Create a form named "frmLogin" with the table "TblLoginRecords" as record source. 4. On that form, create 2 textboxes with the LogLoginName, LogPasswordEntered fields as Control Source. Also create a check box with the field LogProblem. Change the Visible property of LogPasswordEntered to No. 5. Create a button labeled "CmdLogin" with the following code attached to its OnClick property: On Error GoTo Err_CmdLogin_Click If [LogLoginName] = DLookup("[LoginName]", "TblLogin", "[Password]=forms!frmlogin!LogPasswordEntered") Then DoCmd.OpenForm "FrmPage1" Else Me!LogProblem = -1 DoCmd.Quit End If Forms!frmlogin.Visible = False Exit_CmdLogin_Click: Exit Sub Note: i would just like to say that if you do use this is can be easily be bypassed if they really want to attack you. this will only stop people from making mistakes. but basicly what this is doing is, when someone enters a username/password it opens the the TblLogin and checks the LoginName to see if the username they entered is in the database to begin with then if it is a matching username it will then check to see if the password matches. Thus creating a login form! I hope this helped and feel free to correct me if i made any mistakes Note: i would just like to say that if you do use this is can be easily be bypassed if they really want to attack you. this will only stop people from making mistakes. Can you post more information about this??? I'm a bit interesting on how you could do it. Best regards, Latest EntriesHow to secure information in a form using a login password? Access I'm trying to make a database of our company's documents where people can view all the information of certain documents but they are not allowed to add, edit or delete information on the database. They can only navigate and view records. I wanted to open the database using two usernames such as Controller and Viewer, with their assigned passwords. The Controller can open the database and have all the permissions to add, edit or delete. While the Viewer is limited to what I have described above. Hope you can help me with this. A simple database sample would be very much appreciated. Can this be done without using the User and Groups Security tools? -question by Tony Santos This CAN be done without using users and groups, but, there is no reason not to. The security tools in Access are tried and proven to work leaving no reason to re-invent the wheel. If you have troubles using the tools provided in the application the help files are well written and support.microsoft.com is a wonderful resource. Of course if you have specific questions we can help you here as well. Taking a small risk at offense: if the tools Access provides for securing a database are a bit beyond a designers understanding then creating effective security on his own is well beyond it.
How to secure information in a form using a login password?
Access I'm trying to make a database of our company's documents where people can view all the information of certain documents but they are not allowed to add, edit or delete information on the database. They can only navigate and view records. I wanted to open the database using two usernames such as Controller and Viewer, with their assigned passwords. The Controller can open the database and have all the permissions to add, edit or delete. While the Viewer is limited to what I have described above. Hope you can help me with this. A simple database sample would be very much appreciated. Can this be done without using the User and Groups Security tools? -question by Tony Santos We just learned the basics of Microsoft Access in school and I have no idea of how it is used for other than organize information for companies. It isn't very flexible and is quite confusing to use. I think it is best suited for info that doesn't need to be "accessed" often as adding/editing records are easy enough, but for people logging on and off of it noone can seem to find anything like that. I highly recommend using MySQL and PHP (or ASP + MSSQL if you are on Windows) and doing a database from there. That's what I use and that is what major companies use. I just had to respond to this as it seems your class failed you miserably. As an Access developer I have made applications in Access for several companies that are used for mission critical tasks and data. Access can be used as a Client server system with multiple concurrent users as well. With same VBA Access also makes a nice RAD tool. Though I have used Access as a back end for ASP pages as well it is better suited for desktop applications use. all they would need to do was exploit the database so it could be remotely downloaded, then you would be able to open it up and look at the user name/passwords. Go back to the site and enter them in. I would recommend using php / SQL if you want it to be done securely. Kind Regards - Karmen Hi, i think that you have good knowledge of Access and hope that you may help me with a problem i have with an Access 97 database. I have an Access 97 database that seems to be crashed because i can't work with it, the only posible thing that i can do with it is to open it and view all the tables, queries, etc. that it have, but for example, if i try to open any of its tables or queries either in design or data mode Access shows up an error window with the following message: Couldn't read definitions; no read definitions permissions for table or query 'table_name'. Also, i'm not be able to export any thing of this database, or convert it to another version of Access like Access 2000 or 2003, when i try to do it Access shows up another error window but in this case saying something related with the user permissions, exactly i don't remember right now the complete message but is more or less like the previous one. Another thing that i notice is that when i enter to the security options located on the tools menu i view that this database don't have any owner, it shows up that the owner of the database is unknow. In the topic Access 97 to Access 2003 that i post two weeks ago the user faulty.lee give me a solution to this but unfortunately it doesn't work too. I hope that my explanation is enough and you understand it completely, if not, please ask me whatever you want or need. Best regards, We just learned the basics of Microsoft Access in school and I have no idea of how it is used for other than organize information for companies. It isn't very flexible and is quite confusing to use. I think it is best suited for info that doesn't need to be "accessed" often as adding/editing records are easy enough, but for people logging on and off of it noone can seem to find anything like that. I highly recommend using MySQL and PHP (or ASP + MSSQL if you are on Windows) and doing a database from there. That's what I use and that is what major companies use. I also agree in not using MS Access I have seen some pages with ASP that work with this database and they work very slow. Access is not intended to work in web, it is only useful If you want to create a simple and single user system and you want it to be working in very few time and in a local environment. It is easy to use because it has a graphic environment and wizards to create the user interface. However there are many tool for working with other database systems (like PhpMyAdmin) so I prefer not to work with access in any case, unless is the only option (because of licenses or host configuration). I also agree to use MySQL, Microsoft Sql Server or Oracle that are more scalable and powerful databases. MySQL is free and is going better in each release, so is a very good option for many websites.
Recent Queries:-
Keywords : access, easy, make, login, password,
(5) Hi I am a manager at a trading/wholesaling company (and have no programming background). I Looking to integrate access database into my intranet site (5) Hey guys, im new here and am looking for answers /tongue.gif" style="vertical-align:middle" (15) I need to convert a database that is in Access 97 to Access 2003 but every time i do it using the How do i do this? (5) Hi guys, ive got a registration system that looks something like the one below: Firstname: (5) This may be the stupidest question ever, I don't know, but frankly if this exists it would help Desperate help needed (2) I have to create a whole project using Microfost Access. I have a field which will eventaually Converter (8) I have a problem. Is any program wchich converts database Access to Mysql ??.... (2) Alright, I'm currently creating an interface program for a MS Access database. I've only (5) ok .. i have this little problem i am going through ... Leme explain this project of mine first . I (10) I'm coming up with an error that I can't figure out in my registration page. Below I've (2) Hi anyone can help me with making a form. These are the case; I am using Ms. Access XP, and a (1) On my previous web host, I surpassed my MySQL quota limit. At least, that's what they told me. what is the easiest way to split this? (1) I have 3 differen tables in this database that are basically repeating the same data. How can I Lesons (0) The HP Learning center offers very good free lessons on creating databases with step by step (2) i am using a software to access to mysql remotely but it display error!(Access denied for Ms Access Database (7) I want to know that is php supports MS Access databases. And could anyone told me the complete php transition the database to access (2) i want to transition the records in SQL7 to ACCESS in the condition of VF 6.0 how i can?.... (1) I try to access to a remote mysql owned by my friend , I have the IP and username and password. but (3) Is there any way to convert a mySQL dump (.sql file) to an access file? Problem is, I downloaded and Looking for access, easy, make, login, password,
|
![]() Access - Is this easy to make a login/password? |
| ADD REPLY / Got an Opinion! | a humble request :-) | RAPID SEARCH! | Free Hosting | [X] |
|
Express your Opinions, Thoughts or Contribute your information that might help someone here. Ask your Doubts & Queries to get answers.. "Together, We enlight each other!" |
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP. | 500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE |
|