Category Archives: Web Development

Creating Javascript Widgets

Creating widgets in javascript is not a new idea and is becomming more or less of a wide spread technology thanks to well used web aps like facebook, myspace and even google apps. A widget is basically a simple graphical … Continue reading

Posted in Javascript Development | Leave a comment

Javascript css float attribute

FYI for those of you trying to perform css float style updates programmatically, you have a little hurdle in order to apply this style correctly. Like the other style that have javascript counterparts through the use of element.style, the float … Continue reading

Posted in Javascript Development | Leave a comment

Remoting Technologies for javascript

There are a few remoting technologies available for javascript, and with the html5 spec will come greater possibilities. The 4 most popular technologies I can think of other than proprietary formats would be xml, json, urlencoded, yaml.

Posted in Javascript Development, Web Development | Leave a comment

Listing Files in a directory with too many files for ftp

I ran into an issue last week trying to list files in an ftp folder with over 100,000 files in it. This is a no-brainer because what happens is the data retrieval takes too long to build and spit out … Continue reading

Posted in Web Development | 1 Comment

Php Memory Issues when Downloading Files

There have been known to be issues in some download scripts when allowing large downloads – say in the 400mb range.

Posted in Web Development | 1 Comment

Javascript Closures and Code

Some times it&squo;s hard to find information that is really important to development. I thought that I would include a link to a very important web page in regards to understanding the proper implementation of closures in javascript.

Posted in Web Development | Leave a comment

Recursively Deleting a Directory and Files

I&squo;ve recently had to write a PHP script that needed to delete a directory and all sub directories and files within the directory. With PHP, there are functions available to delete a directory and delete a file.

Posted in Web Development | Leave a comment

How to ZIP files with PHP

Most web servers these days run on a LAMP configuration (Linux, Apache, MySQL, PHP). Because the Operating System is Linux, the default archival and compression utilities are TAR and GZIP resulting in files like “filename.tar.gz”. There is nothing wrong with … Continue reading

Posted in php development, Web Development | Tagged , , , | Leave a comment

Restoring MySQL Dump with PHP

As web developers, we are usually tasked with deploying a project to a production server that we don&squo;t always have access to. And in most cases the projects require a database. The usual plan of action consists of running a … Continue reading

Posted in php development, Web Development | Tagged , , , , | 1 Comment

What is remv.php

What is remv.php The file remv.php is a script that MAY be found inside your website regardless if you have a CMS or not and is a popular script used to inject code into your site. This is definately not … Continue reading

Posted in Web Development | Leave a comment