How to get help with svn?
If you are looking for svn reference in man pages, you have gone to the wrong place. To check the references of svn commands, simple do this:
svn help
Posted on June 30th, 2009 by Denie
Filed under: BASH, Linux, SVN | No Comments »
Easy part, just create like below .htaccess file on your web folder :
AuthName “My Protected Site”
AuthUserFile /home/apache/.htpasswd
AuthType basic
Require valid-user
Order Deny,Allow
Deny from all
Allow from 192.168.1. 192.168.2.
Satisfy Any
Good luck!
Posted on June 22nd, 2009 by Denie
Filed under: Apache, Tutorials | No Comments »
You can use below simple PHP scripting to check IP address
<?php
if(!empty($_SERVER["HTTP_X_FORWARDED_FOR"])){
echo “<title>”.$_SERVER["HTTP_X_FORWARDED_FOR"].” via “.$_SERVER["REMOTE_ADDR"].”</title>\n\n”;
echo “Your IP: “.$_SERVER["HTTP_X_FORWARDED_FOR"] . “<br />\n”;
echo “Proxy IP: “.$_SERVER["REMOTE_ADDR"] . “<br />\n”;
$ip = $_SERVER["HTTP_X_FORWARDED_FOR"];
}else{
echo “<title>”.$_SERVER["REMOTE_ADDR"].”</title>\n\n”;
echo “Your IP: “.$_SERVER["REMOTE_ADDR"] . “<br />\n”;
$ip = $_SERVER["REMOTE_ADDR"];
}
echo “Date Time: ” . date(”Y-m-d H:i:s”) . “<br />\n”;
?>
Posted on June 16th, 2009 by Denie
Filed under: PHP, Scripting | No Comments »
Hello TELKOM SPEEDY!
Its been (almost) 1 month, the connections were like this.
I NEED MY FAST CONNECTION BACK!!!!!!
Posted on June 9th, 2009 by Denie
Filed under: Internet | No Comments »
To setup Master-Slave Replication the first thing you need to do is create a user on the Master server that allows replication.
Posted on June 8th, 2009 by Denie
Filed under: MySQL | 2 Comments »
We have 2 ways, to get this done. You just need to choose, which way is suitable for you
Posted on June 1st, 2009 by Denie
Filed under: Internet, SSL, Tutorials | No Comments »