@@ -17,34 +17,28 @@ Installation Instructions
1717
1818The assumption is that PHP is already installed and configured on the machine where the OData SDK for PHP is installed.
1919The SDK does not have any dependency on the host OS so it can run on Windows, Linux or Mac OSX machines.
20- The instructions below are written for Debian (verified for on Jessie / 8.1).
20+ The instructions below are written for Debian (verified on Debian Jessie / 8.1).
2121
22221 . Create a folder that should contian the SDK, for instance, ``` /usr/local/lib/php5/odataphp ``` .
23232 . Copy the all files and folders in the SDK to the folder created above.
2424 In particular, the folder ``` /usr/local/lib/php5/odataphp/framework ``` should have the
2525 content seen at bottom of this file (in the directory structure section).
26263 . Add the path to the framework folder (created in step 1/2) to the 'include_path' directive in php.ini e.g.
2727
28- ```
2928 include_path = ".:/usr/local/lib/php5/odataphp/framework"
30- ```
31294 . Create a variable called 'ODataphp_path' in the php.ini file and set it to the
3230 path where the OData SDK for PHP was installed (step 1).
3331 Open php.ini and search for 'Paths and Directories' section. Just below the definition
3432 of 'include_path' directive, add the following two lines:
3533
36- ```
3734 ; OData SDK for PHP Library Path
3835 ODataphp_path = "/usr/local/lib/php5/odataphp/framework"
39- ```
40365 . Make sure you that the curl, xml and xsl modules are installed and enabled in PHP.
4137 In Deian the xml module is always included in PHP. The curl and xsl modules can be
4238 installed (and enabled) using apt-get as follows,
4339
44- ```
4540 apt-get install php5-curl php5-xsl
46- ```
47-
41+
4842Usage Instructions
4943==================
5044After the installation is completed, you can generate the proxy class for any OData Service
0 commit comments