post Category: Uncategorized post Comments (2) postJuly 15, 2008

One of my friend have sent me this future plan of Madinah Munawara, here I am going to share with all my visitors


Tags:



 
post Category: Uncategorized post Comments (0) postJuly 12, 2008

A boss wondered why one of his most valued employees had not phoned in sick one day. Having an urgent problem with one of the main computers, he dialed the employers home phone number and was greeted with a Child’s’ whisper.

“Hello””Is your daddy home?” he asked

“Yes” whispered the small voice

“May I talk with him?”

“No”

Surprised and wanting to talk with an adult, the boss asked, “Is your Mummy there?”

“Yes”

“May I talk with her?”

Again the small voice whispered, “No”

Hoping there was somebody with whom he could leave a message, the boss Asked, “Is anybody else there?”

“Yes, whispered the boy, “a policeman”

Wondering what a cop would be doing at his employee’s home, the boss asked, “May I speak with the policeman?”

“No, he’s busy”, whispered the child

“Busy doing what?”

Talking to daddy and mommy and the fireman”, came the answer.

Growing more worried as he heard what sounded like a helicopter, through the earpiece on the phone, the boss asked, “What’s that noise?”

“A helicopter” answered the whispering voice.

“What is going on there?!”, demanded the boss, now truly apprehensive.

Again whispering, the child answered, “The search team just landed the helicopter.”

Alarmed, concerned and a little frustrated the boss asked, “What are they searching for?!!.”

Still whispering, the young voice replied with a muffled giggle…

ME


Tags:



 
post Category: Uncategorized post Comments (0) post

As Ivo Jansch , it’s a month until the fateful day that PHP4 will officially die:

It’s July the 8th. Today I realized that we’re exactly one month away from 8-8-8, the final blow to PHP4.

August 8th marks the point when nothing (at all) will be done to any version of PHP4 again. Full support ended back in December of 2007 with no new versions being released. 8-8-08 marks the end of that as well and PHP4 developers that discover bugs may not be able to get them fixed.

Ivo sums it it perfectly:

I’m not trying to scare you. No wait, I am. Don’t let 8-8-8 become the PHP community’s 6-6-6 and abandon PHP4 while you still can.


Tags:



 
post Category: Uncategorized post Comments (0) postJuly 11, 2008

phpBB has released new version of phpBB 3 forum. this is the annoucement they made on release of phpBB 3.0.2.

We are very pleased to announce the availability of the phpBB 3.0.2 package. This version has seen numerous stability fixes, performance tweaks and general bugs fixed. Additionally one minor security-related bug was fixed.

With this release, we also re-introduced the code changes tutorial. Due to the different codebase in phpBB3, these are a lot bigger and a lot more complicated than they ever were in phpBB2 - also the reason why we introduced the automatic update package and automatic updater in phpBB, which is able to handle modded boards too by merging differences. We do not recommend the use of the code changes tutorial - those are meant for professional users and support teams to help assist users having problems while updating.

Please refer to the changelog for a complete list of fixes since 3.0.1:

A short explanation of how to do a conversion, installation or update is included within the provided INSTALL.html file, please be sure to read it.

Minimum Requirements

phpBB3 has a few requirements which must be met before you are able to install and use it.

  • A webserver or web hosting account running on any major Operating System with support for PHP
  • A SQL database system, one of:
    • MySQL 3.23 or above (MySQLi supported)
    • PostgreSQL 7.3+
    • SQLite 2.8.2+
    • Firebird 2.0+
    • MS SQL Server 2000 or above (directly or via ODBC)
    • Oracle
  • PHP 4.3.3+ (>=4.3.3, >4.4.x, >5.x.x, >6.0-dev (compatible)) with support for the database you intend to use.
  • getimagesize() function need to be enabled
  • These optional presence of the following modules within PHP will provide access to additional features, but they are not required.
    • zlib Compression support
    • Remote FTP support
    • XML support
    • Imagemagick support
    • GD Support

The presence of each of these optional modules will be checked during the installation process.

Security

Security issues found should be reported to our in the usual way.

Available packages

If you experience problems with the automatic update (white screens, timeouts, etc.) we recommend using the “changed files only” or “patch” method for updating. We do not recommend the use of the code changes tutorial - this is meant for professional users and support teams to help assist users having problems while updating.

You can of course find this download available on our . As per usual five packages are available to simplify your update.

  • Full Package
    Contains entire phpBB3 source and english language files.
  • Changed Files Only
    Contains only those files changed from previous versions of phpBB3. Please note this archive contains changed files for each previous release.
  • Patch Files
    Contains patch compatible patches from previous versions of phpBB3.
  • Automatic Update Package
    Update package for the automatic updater, containing the changes from previous release to this release. Able to update modified installations without loosing these.
  • Code Changes
    Contains the changes from previous release to this release in MOD template and MODX format.

Select whichever package is most suitable for you.

Please ensure you read the INSTALL and README documents in docs/ before proceeding with installation, updates or conversions!.

Download/Documentation


Tags:



 
post Category: Uncategorized post Comments (0) postJuly 10, 2008

For One of my project I have been searching for regular expression patterns for front-end and back-end validation. I came across many website and found alot of information online. Here I am going to summarise the Regular expression Pattern for my visitors help.

Alphanumeric:

Pattern: ^[a-zA-Z0-9_ ]+$
Description: Allows only ‘A-Z’, ‘a-z’, ‘0-9′, space ( ‘ ‘ ) and underscore ( ‘_’).

Alpha:

Pattern: ^[a-zA-Z_ ]+$
Description: Allows only ‘A-Z’, ‘a-z’, space ( ‘ ‘ ) and underscore ( ‘_’).

Numeric:

Pattern: ^\d+$

Decimal:

Pattern: ^\d+(?:\.\d{0,2})?$

Email:

Pattern: /^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i

Color Code:

Pattern: ^#{1}?([a-f]|[A-F]|[0-9]){3}(([a-f]|[A-F]|[0-9]){3})?$

Date - 1:

Pattern: ^(0[1-9]|[1,2][0-9]|3[0-1])-(0[1-9]|1[0,1,2])-\d{4}$
Description: Date format DD-MM-YYYY

Date - 2:

Pattern: ^(0[1-9]|1[0,1,2])-(0[1-9]|[1,2][0-9]|3[0-1])-\d{4}$
Description: Date format MM-DD-YYYY

US Zip Code:

Pattern: ^\d{5}$

US Telephone Number:

Pattern: ^1?[\-]?\(?\d{3}\)?[\-]?\d{3}[\-]?\d{4}$

Regular Expression Cheat Sheet (PDF) (106)
Regular Expression Cheat Sheet (PNG) (117)

Regular Expressions Cheat Sheet is taken from http://www.addedbytes.com/cheat-sheets/regular-expressions-cheat-sheet/


Tags:



 
Directory of Web Development Blogs