October 02, 2009
User and web administration pages are in place. new users are now notified via email of their login credentials. Error management and display page in effect and logging enabled.
- Images
- Uploader
- image object (orig file name, path, db saved file, permissions, etc)
- viewing page
- editor form to display data on file.. (name, date taken, etc.)
public DateTime GetDateTaken(Image targetImg) { //Property Item 306 corresponds to the Date Taken PropertyItem propItem = targetImg.GetPropertyItem(306); DateTime dtaken; //Convert date taken metadata to a DateTime object string sdate = Encoding.UTF8.GetString(propItem.Value).Trim(); string secondhalf = sdate.Substring(sdate.IndexOf(" "), (sdate.Length - sdate.IndexOf(" "))); string firsthalf = sdate.Substring(0, 10); firsthalf = firsthalf.Replace(":", "-"); sdate = firsthalf + secondhalf; dtaken = DateTime.Parse(sdate); return dtaken; }
- Contacts aka Address Book:
- creat contacts object:
- name
- address(es!)
- Email (s)
- Phone (s)
- permissions:
- viewable to collection of users
- image(s)
- create list
- create form/editor
- create csv downloader (does that mean excel management thus an uploader?)
- News:
- rss news (ny times etc)
- website news (this stuff!)
- user news
September 17, 2009
- Email setting configured and set up!
- Username and Password recovery procedures in place.
- Send Mail test page set up.
- Still To Do:
- create user names and passwords for initial batch of users
- define roles administrator vs public
- define user, in anticipation of address book.
- Start creating basic controls for file uploading etc.
September 16, 2009
Hooray, Web Site Deployed!
- Test Email Functionality
- Research security methods, SSL certificate is 40$/yr...
- Start creating basic controls for file uploading etc.
September 15, 2009
- Web template created.
- Web site hosting plan payed for and set up!
- Next steps:
- Deploy to production servers.
- Create login procedure, users and basic security.
- test email functionality.
|
This is a PRIVATE website and access limited to friends, family and invited guests of Anubhav Shah.
Hi guys, this website is intended for basic file (images and documents like resumes) storage, calendar and address book. I know its not the most attractive and i dont have the time to work on that, if anyone wants to help out it would be greatly appreciated. the site is 150$ a yr and currently limited to i believe 200Gb which we are going to have to share at the moment.
Please keep in mind that currently the site is highly un-secure, in that nothing is being encrypted. I will post when this has been addressed. But please limit this site to yourselves and dont share with anyone.
there are two known reasons why the site is currently so frickin slow: 1) because i have packed the pages with a lot of scripts and other files which initially take a long time to load but are eventually cached (kept in memory) so the next time you visit it will be faster, and 2) because the initial connection to data and etc takes some time. I wont be doing anything on the latter reason.
Finally, if anyone has any other ideas please share.
- Munna aka tony.
|