Top Ten Most Critical Web Application Security Vulnerabilities

Web application security is often viewed incorrectly as a set of server and host-based security issues, rather than code-level and configuration-based security vulnerabilities. Although servers and hosts may still be the cause for exploitations, it is critical that security professionals recognize the major impact of poorly written web applications as well as how their applications [...]

Combining Javascript And PHP Programming In Web Pages

PHP Programmers will discover that combining Javascript and PHP Programming can be a challenge. The first thing they discover is that PHP tags do not work inside Javascript tags. The general purpose of combining Javascript and PHP is to control the structure and variables that Javascript is intended to handle on the client side. Following [...]

CLI Commands References

This is just a list of Command Line Interface CLI commands and strings for easy team reference. This is not a source for learning!

To unlock multiple files on a Mac: This will unlock the entire directory, unless you filter the directory first…
chflags -R nouchg ./

What Is Deprecated Code And Why Should I Upgrade My Server?

By definition, “deprecate” means to look upon something in a poor light, or as lower quality. In reference to code, deprecation refers to code that is not considered up to date and is likely to lose community or company support. The deprecation process applies to all code languages, including PHP Programming. Understanding the deprecation process [...]

PHP Headers: Status Code Definitions (Reference List)

The following list is taken from W3 and posted here for easy reference. These are to be used for various situations when you want to override the default status sent by the server. Situations include when your content is deleted, but you do not want the search engine to see a broken link or missing [...]

Automating Image Uploads And MySQL Database Tracking

These days everyone wants to upload their images to a web application. Whether it’s a free public site like Photobucket, or an eCommerce Web Site like Shutterstock or Flickr, the concepts are the same. The intent is to provide a system for web users with no web programming skills, which lets them upload a single [...]

Finding Longitude & Latitude From Google Maps

This is a really simple problem to solve. Simply navigate to the map position you want the Google Maps longitude and latitude for. Make sure your focal point is at the center of the map frame. Into your browser’s address field type and enter the following string:

javascript:void(prompt(‘‘,gApplication.getMap().getCenter()));

The quote marks after “prompt(” should be two single [...]