| 1234567891011121314151617181920212223242526272829 |
- <?php
- //This file is intentionally left blank so that you can add your own global settings
- //and includes which you may need inside your services. This is generally considered bad
- //practice, but it may be the only reasonable choice if you want to integrate with
- //frameworks that expect to be included as globals, for example TextPattern or WordPress
- //Set start time before loading framework
- list($usec, $sec) = explode(" ", microtime());
- $amfphp['startTime'] = ((float)$usec + (float)$sec);
-
- $servicesPath = "services/";
- $voPath = "services/vo/";
-
- //As an example of what you might want to do here, consider:
-
- define("IP_HOST", "37.187.89.74");
-
- /*
- if(!PRODUCTION_SERVER)
- {
- define("DB_HOST", "localhost");
- define("DB_USER", "root");
- define("DB_PASS", "");
- define("DB_NAME", "amfphp");
- }
- */
-
- ?>
|