Back up From the Command Line (using mysqldump)If you have shell or telnet access to your web server, you can backup your MySQL data by using the mysqldump command. This command connects to the MySQL server and creates an SQL dump file. The dump file contains the SQL statements necessary to ..
How to disable the Enter key on HTML formNormally when you have a form with several text input fields, it is undesirable that the form gets submitted when the user hits ENTER in a field. Some people are pressing the enter key instead of the tab key to get to the next field. They often do that ..
Flash CodeSystem.security.allowDomain("www.tshirtsetc.co.uk"); import flash.net.FileReference; // The listener object listens for FileReference events. var listener:Object = new Object(); listener.onSelect = function(selectedFile:FileReference):Void { upWin._x = 200; ..
Converting mod_rewrite directives Overview The URL Rewriting engine in Abyss Web Server is comparable to the mod_rewrite module in Apache. Both offer similar features but they are not fully equivalent. This article explains how to convert mod_rewrite directives to URL Rewriting ..
If you really want to take a look, check out the mod_rewrite.c and mod_rewrite.h files.Be aware that mod_rewrite (RewriteRule, RewriteBase, and RewriteCond) code is executed for each and every HTTP request that accesses a file in or below the directory where the code resides, so it’s always ..