•June 1, 2009 •
2 Comments
Web 2.0 for R&R. Campus Technology, January 2009
- Common theme of (1) connecting with students and allowing students to connect with each other and building (2) relationships.
- “only as much technology as is necessary to create a real-life relationship”
- Usual list of tools: Facebook, chat/IM, YouTube, iTunes (podcasts), Ning and to a lesser extent Twitter.
- New jobs, titles and roles: Web Communications, Electronic Media
- Customizing portal (starting) pages based on student’s preferences and providing contact information for the school administrators who the student has made contact with.
- Internal issues: having administrators who “realize how essential these tools are now,” addressing issues with feelings of lack of control, protecting the “image of their institution.”
Posted in reference, social media, web 2.0
•January 26, 2009 •
6 Comments
There seem to be a bunch of errors that appear to be session expirations. When this happens, the application loses data and throws an error.
I finally got a call from someone who experienced this. Unfortunately I haven’t been able to replicate the problem. I added some tracking code and it seems that people who are encountering the error are eventually getting a successful submission.
I’ll be keeping an eye on things, but without any solid leads, this may take a while to resolve.
Posted in Student Housing
Tags: application
•January 8, 2009 •
Leave a Comment
The application is up.
I hope this application is able to meet your expectations and simplifies the overall application process. Your feedback is welcome and improvements will be made as issues arise. You can post comments to this blog, direct message me on twitter (chipster621), AIM (alvinatuhmsh), email (cabating@hawaii.edu) or through the Student Housing Office.
del.icio.us Tags:
application
Posted in Student Housing
•January 6, 2009 •
1 Comment
The housing application for 2009-2010 terms will be an on-line application. I’m finalizing payment processing piece of the application. Once that piece is done, we’ll do some final testing and release the application to students with valid UH numbers.
A link to the application (as well as a PDF copy of the brochure) will appear on http://www.housing.hawaii.edu/apply. A notice and link to this page will also appear on the housing’s site’s home page.
Posted in Student Housing, Uncategorized
Tags: application
•February 25, 2008 •
Leave a Comment
•February 13, 2006 •
Leave a Comment
Ben Forta’s blog has an entry about SQL injection attacks when using ColdFusion. Manuals and tutorials never talk about preventing these types of attacks, so I’m not surprised that there are still vulnerable sites.
In short, the vulnerability occurs when a site uses data in the URL to dynamically alter the SQL statement. Using a semicolon, allows a hacker to append another sql statement. This vulnerability occurs mostly with non-text fields. So anytime you’re referring to a key field which is usaually numeric.
The solution: (1) use cfparam to define the variable’s type, (2) the page should check that the url variable exists and makes sure it’s the expected type and (3) use cfqueryparam to explicitly define the varaiable’s value.
Resources:
Ben’s Post: SQL Injection Attacks, Easy to Prevent, But Apparently Still Ignored.
CF Cookbook post: How can I prevent SQL injection attacks?
Macromedia Security bulletin ASB99-04 Multiple SQL statments in dynamic queries.
Posted in ColdFusion, WebDevelopment