Yes, I did that.
Here is my config file:
Code:
// Database local connection using sockets
$phpAds_config['dblocal'] = false;
// Database hostname
$phpAds_config['dbhost'] = 'localhost';
// Database port
$phpAds_config['dbport'] = 3306;
// Database username
$phpAds_config['dbuser'] = 'xxxxx';
// Database password
$phpAds_config['dbpassword'] = 'xxxxx';
// Database name
$phpAds_config['dbname'] = 'thephoto_adserver';
// Database table name prefix
$phpAds_config['table_prefix'] = 'phpads_';
// Database table type
$phpAds_config['table_type'] = 'MYISAM';
// Use persistent connections to the database
$phpAds_config['persistent_connections'] = true;
// Use INSERT DELAYED in logging functions?
$phpAds_config['insert_delayed'] = true;
// Database compatibility mode to insure phpAdsNew
// won't disturb an available database connection
$phpAds_config['compatibility_mode'] = true;
/*********************************************************/
/* phpAdsNew configuration */
/*********************************************************/
// The URL to your phpAds-installation
$phpAds_config['url_prefix'] = 'http://www.thephotostation.net/adsever/';
// Is the admin interface enabled
$phpAds_config['ui_enabled'] = true;
// Only allow access to the admin interface if SSL is used
$phpAds_config['ui_forcessl'] = false;