- Added a new field to display the cron URL plan in user settings. - Updated JavaScript to handle the new plan data. refactor: Unify product model and migrate data - Migrated product data from `products_data` to `products` table. - Added new columns to `products` for better data organization. - Created `products_aggregate` table for storing aggregated product metrics. chore: Drop deprecated products_data table - Removed `products_data` table as data is now stored in `products`. feat: Add merchant URL flags to products - Introduced flags for tracking merchant URL status in `products` table. - Normalized product URLs to handle empty or invalid values. feat: Link campaign alerts to specific products - Added `product_id` column to `campaign_alerts` table for better tracking. - Created an index for efficient querying of alerts by product. chore: Add debug scripts for client data inspection - Created debug scripts to inspect client data from local and remote databases. - Included error handling and output formatting for better readability.
17 lines
609 B
PHP
17 lines
609 B
PHP
<?php
|
|
$database['name'] = 'host700513_adspro';
|
|
$database['host'] = 'localhost';
|
|
$database['user'] = 'host700513_adspro';
|
|
$database['password'] = '2Ug7DvBy5MCAJtKmkCRs';
|
|
$database['remote_host'] = 'host700513.hostido.net.pl';
|
|
|
|
$settings['email_host'] = 'mail.project-pro.pl';
|
|
$settings['email_port'] = 25;
|
|
$settings['email_login'] = 'www@project-pro.pl';
|
|
$settings['email_password'] = 'ProjectPro2025!';
|
|
|
|
$settings['cron_products_clients_per_run'] = 1;
|
|
$settings['cron_campaigns_clients_per_run'] = 1;
|
|
$settings['cron_products_urls_limit_per_client'] = 100;
|
|
$settings['google_ads_conversion_window_days'] = 7;
|