<?php
/**
* This is the base configuration file for phpFlickrSynch.
* You can just copy this file to "phpFlickrSynch_config.php" and fill in the values.
*/
/** Flickr settings - http://www.flickr.com/services/api/keys/ */
// From the phpFlickr documentation (http://phpflickr.com/):
// This is the API key given to you by flickr.com. This argument is required and you can get an API Key at:
// http://www.flickr.com/services/api/keys/
define('PHPFLICKRSYNCH_API_KEY', 'Flickr_api_key');
// From the phpFlickr documentation (http://phpflickr.com/):
// The "secret" is optional because is not required to
// make unauthenticated calls, but is absolutely required for the
// new authentication API (see Authentication section below). You
// will get one assigned alongside your api key.
define('PHPFLICKRSYNCH_SECRET', 'Flickr_api_secret');
// Sets an authentication token to use instead of the session variable
// See http://phpflickr.com/docs/flickr-authentication/ for details how to get token
define('PHPFLICKRSYNCH_TOKEN', 'Flickr token');
/** MySQL settings - You can get this info from your web host */
// MySQL hostname
define('PHPFLICKRSYNCH_MYSQL_HOST', 'localhost');
// MySQL database username
define('PHPFLICKRSYNCH_MYSQL_USER', 'root');
// MySQL database password
define('PHPFLICKRSYNCH_MYSQL_PASSWORD', '');
// The name of the database for WordPress
define('PHPFLICKRSYNCH_MYSQL_DATABASE', 'nicolasleroy');
/** Yahoo GeoPlanet ApplicationID - Create your own at https://developer.apps.yahoo.com/wsregapp/ */
define('PHPFLICKRSYNCH_YAHOO_APPID', 'your_Yahoo_application_id');
?>