# Prevent Apache from serving .htaccess files:
<FilesMatch "^\.htaccess">
Order allow,deny
Deny from all
</FilesMatch>
Html, JAVA,DOTNET,Javascript, PHP, and JQuery Scripts and its issues with solutions
Thursday, 9 October 2014
How to protect your file content using htaccess?
How to enable and disable the PHP magic quotes directive?
When the magic quotes directive is enabled, PHP automatically escapes data from HTTP GET and POST requests and cookie data. For example, if a user types “hello” (with the quotation marks) in a form, PHP automatically escapes the quotation marks and stores the value as \“hello\”. To enable this functionality, use a text editor to modify the magic quotes directive in the php.ini file as follows: magic_quotes_gpc = on To disable this functionality, modify the magic quotes directive in the php.ini file as follows: magic_quotes_gpc = off
How to enable and disable the PHP register_globals directive?
When the register_globals directive is enabled, PHP creates variables automatically from HTML form parameters and cookie data. To enable this functionality, use a text editor to modify the register_globals directive in the php.ini file as follows: register_globals = on To disable this functionality, modify the register_globals directive in the php.ini file as follows: register_globals = off
Subscribe to:
Comments (Atom)
Feet/Inches to Meters Converter & Lbs to Kgs Converter
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Feet/Inches ⇄...
-
<?php $to = "somebody@example.com, somebodyelse@example.com"; $subject = "HTML email"; $message = " <h...
-
document.onkeydown = myKeyDownHandler; function myKeyDownHandler(event){ alert(event.keyCode) }
-
Input array= array("test"=>array("s1"=>array(),"s2"=>array())) foreach(array_keys($free_tim) as ...