ashok Posted October 29, 2018 Report Posted October 29, 2018 HI IN my adserver i am not able to see statistics of advertisers & campaigns Quote
paule Posted October 30, 2018 Report Posted October 30, 2018 Is your maintenance script working fine? You can check it here: /www/admin/maintenance-maintenance.php And here are the settings for it: /www/admin/account-settings-maintenance.php Maybe you have set it up to be run by Cron but the cronjob is not being executed by the server? However, on the settings page you can pick to be run by your invocation script. Quote
ashok Posted October 31, 2018 Author Report Posted October 31, 2018 (edited) Hi I checked it, still it is not working Edited October 31, 2018 by ashok Content i added had some mistakes Quote
paule Posted October 31, 2018 Report Posted October 31, 2018 9 minutes ago, ashok said: I checked it, still it is not working Do you see the message "Scheduled maintenance is running correctly." there? Are banners delivering properly? What settings do you see here? /www/admin/account-settings-banner-logging.php Quote
ashok Posted October 31, 2018 Author Report Posted October 31, 2018 Hi Paule, This is code i am having in the file <?php /* +---------------------------------------------------------------------------+ | Revive Adserver | | http://www.revive-adserver.com | | | | Copyright: See the COPYRIGHT.txt file. | | License: GPLv2 or later, see the LICENSE.txt file. | +---------------------------------------------------------------------------+ */ // Require the initialisation file require_once '../../init.php'; // Required files require_once MAX_PATH . '/lib/OA/Admin/Option.php'; require_once MAX_PATH . '/lib/OA/Admin/Settings.php'; require_once MAX_PATH . '/lib/max/Plugin/Translation.php'; require_once MAX_PATH . '/www/admin/config.php'; require_once LIB_PATH . '/OperationInterval.php'; // Security check OA_Permission::enforceAccount(OA_ACCOUNT_ADMIN); // Create a new option object for displaying the setting's page's HTML form $oOptions = new OA_Admin_Option('settings'); $prefSection = "maintenance"; // Prepare an array for storing error messages $aErrormessage = array(); // If the settings page is a submission, deal with the form data if (isset($_POST['submitok']) && $_POST['submitok'] == 'true') { // Prepare an array of the HTML elements to process, and the // location to save the values in the settings configuration // file $aElements = array(); // Maintenance Settings $aElements += array( 'maintenance_autoMaintenance' => array( 'maintenance' => 'autoMaintenance', 'bool' => true ), 'maintenance_operationInterval' => array('maintenance' => 'operationInterval') ); // Priority Settings $aElements += array( 'priority_instantUpdate' => array( 'priority' => 'instantUpdate', 'bool' => true ), 'priority_intentionalOverdelivery' => array('priority' => 'intentionalOverdelivery') ); // Create a new settings object, and save the settings! $oSettings = new OA_Admin_Settings(); $result = $oSettings->processSettingsFromForm($aElements); if ($result) { // Queue confirmation message $setPref = $oOptions->getSettingsPreferences($prefSection); $title = $setPref[$prefSection]['name']; $translation = new OX_Translation (); $translated_message = $translation->translate($GLOBALS['strXSettingsHaveBeenUpdated'], array(htmlspecialchars($title))); OA_Admin_UI::queueMessage($translated_message, 'local', 'confirm', 0); // The settings configuration file was written correctly, OX_Admin_Redirect::redirect(basename($_SERVER['SCRIPT_NAME'])); } // Could not write the settings configuration file, store this // error message and continue $aErrormessage[0][] = $strUnableToWriteConfig; } // Set the correct section of the settings pages and display the drop-down menu $setPref = $oOptions->getSettingsPreferences($prefSection); $title = $setPref[$prefSection]['name']; // Display the settings page's header and sections $oHeaderModel = new OA_Admin_UI_Model_PageHeaderModel($title); phpAds_PageHeader('account-settings-index', $oHeaderModel); // Prepare an array of HTML elements to display for the form, and // output using the $oOption object $aSettings = array ( array ( 'text' => $strMaintenanceSettings, 'items' => array ( array ( 'type' => 'checkbox', 'name' => 'maintenance_autoMaintenance', 'text' => $strEnableAutoMaintenance ), array ( 'type' => 'break' ), array ( 'type' => 'select', 'name' => 'maintenance_operationInterval', 'text' => $strMaintenanceOI, 'size' => 12, 'items' => array( 60 => 60, 30 => 30, 20 => 20, 15 => 15, 10 => 10, 5 => 5 ) ) ) ), array ( 'text' => $strPrioritySettings, 'items' => array ( array ( 'type' => 'checkbox', 'name' => 'priority_instantUpdate', 'text' => $strPriorityInstantUpdate ), array ( 'type' => 'break' ), array ( 'type' => 'text', 'name' => 'priority_intentionalOverdelivery', 'text' => $strPriorityIntentionalOverdelivery, 'check' => 'wholeNumber' ), ) ) ); $oOptions->show($aSettings, $aErrormessage); // Display the page footer phpAds_PageFooter(); ?> Everything is working fine but i am not able to see statistics. this is message i am getting There are currently no statistics available for the period 31-10-2018 to 31-10-2018 Quote
paule Posted October 31, 2018 Report Posted October 31, 2018 I don't mean the file source code but the output, when you go to the URL using your admin account. Quote
ashok Posted October 31, 2018 Author Report Posted October 31, 2018 Hi This is my Url:https://acd.com.au/adserver/www/admin can you check please. Quote
paule Posted October 31, 2018 Report Posted October 31, 2018 1 minute ago, ashok said: Hi This is my Url:https://acd.com.au/adserver/www/admin can you check please. Sorry, but I can't check since it's your private access area. Please login with your credentials and go to: https://acd.com.au/adserver/www/admin/account-settings-banner-logging.php Quote
ashok Posted October 31, 2018 Author Report Posted October 31, 2018 Hi Paule, Next what i need to do.I logged in Quote
paule Posted October 31, 2018 Report Posted October 31, 2018 Change into Administrator Mode and then go to the link I provided you. What does it say about Maintenance? Quote
andrewatfornax Posted November 1, 2018 Report Posted November 1, 2018 On 10/29/2018 at 5:43 PM, ashok said: IN my adserver i am not able to see statistics of advertisers & campaigns Please also see: https://documentation.revive-adserver.com/display/DOCS/No+Statistics Quote
ashok Posted November 1, 2018 Author Report Posted November 1, 2018 Hi Paule, This is what i am able to see in when i login has administrator. Please check the screen shot of the page. https://ibb.co/cZuP7f Quote
paule Posted November 1, 2018 Report Posted November 1, 2018 4 hours ago, ashok said: This is what i am able to see in when i login has administrator. Please check the screen shot of the page. https://ibb.co/cZuP7f These settings are OK, go to the "Maintenance" tab on the left, please. Quote
ashok Posted November 1, 2018 Author Report Posted November 1, 2018 Hi Paule, This is what i am able to see in when i login has administrator and see on maintenance screen. Please check the screen shot of the page. https://ibb.co/me7d00https://ibb.co/eKPDYL Quote
ashok Posted November 2, 2018 Author Report Posted November 2, 2018 Hi Paule, I resolved the issue.Thanks for your support . Quote
paule Posted November 2, 2018 Report Posted November 2, 2018 Hey ashok, how did you do that and what was the problem? Maybe your solution can help others with a similar problem in the future... Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.