summaryrefslogtreecommitdiff
path: root/documentation/your-first-extension.html
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-05 15:56:10 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-05 15:56:10 +0100
commita9862c7de793b7aa679a64b41de443e01245b831 (patch)
tree4bd6388cce8b9ea83bb859db79119dcba3069da8 /documentation/your-first-extension.html
parent5d5892dbbf42deb4eb4c6e9b85befb0d7a59f1f3 (diff)
update documentation
Diffstat (limited to 'documentation/your-first-extension.html')
-rw-r--r--documentation/your-first-extension.html9
1 files changed, 5 insertions, 4 deletions
diff --git a/documentation/your-first-extension.html b/documentation/your-first-extension.html
index 8ee3a60..02d85cd 100644
--- a/documentation/your-first-extension.html
+++ b/documentation/your-first-extension.html
@@ -11,13 +11,14 @@
is run "make" and "make install".
</p>
<p>
- And that's not all. You also have to make changes to the system wide php.ini
- file to actually enable your extension. The best way to do that is create
+ But creating a Makefile is not the only thing that you have to do. You
+ will also have to make changes to the system wide php.ini
+ file to actually enable the extension. The best way to do that is create
your own small yourextension.ini file, and copy that to the PHP config file
directory of your webserver.
</p>
<p>
- To help you out with that, we have created an almost empty extension with
+ To help you out with these steps, we have created an almost empty extension with
all the required utilities for starting up a new extension. It contains a
sample Makefile, a sample configuration file, and a first main.cpp file
in which the get_module() call is already implemented. This gives you a
@@ -178,7 +179,7 @@ clean:
<h2>Yourextension.ini</h2>
<p>
Your extension should not only have a Makefile, but also an initial
- yourextension.ini file. This file is much simpler that the Makefile. You
+ yourextension.ini file. This file is much simpler than the Makefile. You
should also modify this file to refer to the real name of your extension
(instead of yourextension.so).
</p>