I'm new to this forum so I hope the general forum is appropriate for this issue.
I'm currently creating an intranet site for my employer (their first) and have the basic design finished. I created a template (a la Dreamweaver) and so far have the index page and a company directory. What information that is being provided has been designed with AJAX and works perfectly.
What I'm stuck on is this:
My employer would like to be able to update all employees on this site as to who's in and who's not working today. Currently this is done via email. I would like to implement a small area on the template (like maybe in the left sidebar; iframe possibly?) that she can update with a simple GUI.
So my question: Is this something that absolutely has to be done with a CMS or is there another route I can take? I'm not versed in PHP yet, so I haven't really looked at that option too much.
Such a system would be fairly easy to impliment with PHP, I would need more information to post any real code.
So I guess a few questions:
Does it need to be password protected/whatever? If so will the password be hard coded, or what?
I'm assuming a DB would be required, do you have MySQL, or would I need to plan to use a text file/XML file for such a thing(which would likely be unsecure).
How will the infomation be input, check boxes? Typing in names and picking matching employee's?
If you are using PHP please use the [PHP] and [/PHP] forum tags for highlighting...
The same applies to HTML and the forums [HTML][/HTML] tags.
Such a system would be fairly easy to impliment with PHP, I would need more information to post any real code.
So I guess a few questions:
Does it need to be password protected/whatever? If so will the password be hard coded, or what?
I'm assuming a DB would be required, do you have MySQL, or would I need to plan to use a text file/XML file for such a thing(which would likely be unsecure).
How will the infomation be input, check boxes? Typing in names and picking matching employee's?
Yes, it would have to be password protected for a few employees with the same access.
We have yet to install a DB to the internet server, so the options are open on that one (for a server with IIS).
The information would be simply typed in.
I'm trying to keep it simple to avoid confusion from the end users that will be utilizing the simple GUI. Thanks!
As I said, this is a basic example, and it should be secure, but you need a database to be completely secure with your passwords stored directly into the file. It also means that to change the password someone needs to use the CMS, and having the passwords in raw text like that is always a bad idea.
If you are using PHP please use the [PHP] and [/PHP] forum tags for highlighting...
The same applies to HTML and the forums [HTML][/HTML] tags.
A database would be the most secure method, failing that a text file would work if you were to employ some form of encryption or hashing, not that any system is particularly secure right now(md5 is having new vulnerabilities found all the time, and the SHA functions, while better, are still vulnerable to several flaws).
Personally I would push the importance of a database, or recommend the use of the latest SHA version(2 at the time of writing, but the competition for version 3 is under way) and a complex salt.
If you are using PHP please use the [PHP] and [/PHP] forum tags for highlighting...
The same applies to HTML and the forums [HTML][/HTML] tags.
Bookmarks