» Version | » Information |
---|---|
2010-10-01 stable |
|
2010-04-10 stable |
|
0.2.3 |
Easy InstallNot sure? Get more info. pear install Services_GeoNames-0.2.3 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/Services_GeoNames-0.2.3 Release date: 2009-01-23 09:25 UTC Release state: beta Release uploaded by: izi Changelog: * clone the HTTP_Request2 instance instead of the reusing the same instance, * ability to set an array of failover servers, * better doc strings and various cosmetic changes. Important note ============== From http://www.geonames.org/export/ : "We have temporarily removed the domain ws.geonames.org from the dns setting to protect the server from exessive use by an iphone application. You can access the server with the domain ws5.geonames.org" So until ws.geonames.org is not restored, you'll have to do either: <?php require_once 'Services/GeoNames.php'; $geo = new Services_GeoNames(); $geo->url = 'http://ws5.geonames.org'; ?> or: <?php require_once 'Services/GeoNames.php'; $geo = new Services_GeoNames(); $geo->failoverServers[] = 'http://ws5.geonames.org'; ?> Dependencies:
|
2008-12-19 beta |