diff --git a/README b/README
index 8fc3c77af518c1de173399c4c2919cb323955c23..b6cf296c8ced4e524a8bee1a7f632e88ffde9843 100644
--- a/README
+++ b/README
@@ -2,8 +2,14 @@ slodps - Simple Linked Open Data Publishing System
 author: Alvaro Graves (alvaro@graves.cl)
 version: 20110717
 
-Installation
-------------
+Simple Installation
+-------------------
+
+* Download the source or clone the repository from http://github.com/alangrafu/slodps
+* Inside slodps, run ./install.sh
+
+Manual Installation
+--------------------
 
 * Download the source or clone the repository from http://github.com/alangrafu/slodps
 
diff --git a/example.ttl b/example.ttl
index be63f747050d5408084ae0249b94d044263ae6da..144899e1a7379c4b7016340f47a645d920e4560b 100644
--- a/example.ttl
+++ b/example.ttl
@@ -1,4 +1,4 @@
-@prefix : <http://shai-hulud/testCMS/> .
+@prefix : <http://changeToYouOwnSite.com/> .
 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
 @prefix dcterms: <http://purl.org/dc/terms/> .
 
diff --git a/install.sh b/install.sh
index 839bf408355ae66817c06c72e87e3d5f887733fa..c77641528022d81db048f7320ea9010a7c1d73a9 100755
--- a/install.sh
+++ b/install.sh
@@ -20,10 +20,11 @@ if [ -e "$parent_htaccess" ]
 then
   echo ".htaccess file found in parent directory."
   echo "Please remove it or add the content of $root_htaccess in it"
-  exit(0)
+  exit
 fi
 
-echo "Copying $root_htaccess as .htacess in parent directory"
+echo "WARNING: Copying $root_htaccess as .htacess in parent directory"
+echo ""
 cp $root_htaccess $parent_htaccess
 
 while [ "$everything_ok" != "y" ]