Severity: Warning
Message: session_start(): Failed to decode session object. Session has been destroyed
Filename: Session/Session.php
Line Number: 143
Backtrace:
File: /home/grktapf/public_html/application/core/MY_Controller.php
Line: 13
Function: __construct
File: /home/grktapf/public_html/application/controllers/Fundraising.php
Line: 9
Function: __construct
File: /home/grktapf/public_html/index.php
Line: 315
Function: require_once
Severity: Warning
Message: Cannot modify header information - headers already sent by (output started at /home/grktapf/public_html/system/core/Exceptions.php:271)
Filename: core/Common.php
Line Number: 570
Backtrace:
File: /home/grktapf/public_html/application/models/Campaigns_model.php
Line: 263
Function: get
File: /home/grktapf/public_html/application/controllers/Fundraising.php
Line: 91
Function: highest_paid_campaigns
File: /home/grktapf/public_html/index.php
Line: 315
Function: require_once
Error Number: 1055
Expression #3 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'grktapf_apdemo_test.g.campaign_type' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
SELECT SUM(d.donation_amount) as donation_amount, `g`.`campaign_id`, `g`.`campaign_type`, `g`.`campaign_name`, `g`.`campaign_slug`, `g`.`start_date`, `g`.`end_date`, `g`.`campaign_short_desc`, `g`.`image_path`, `g`.`video_path`, `g`.`goal_amount`, `g`.`redirection_link`, `u`.`salutation`, `u`.`first_name`, `s`.`state_name`, `u`.`city`, `u`.`province`, `cs`.`country_name` FROM `campaigns` as `g` LEFT JOIN `donations` as `d` ON `g`.`campaign_id` = `d`.`campaign_id` LEFT JOIN `users` as `u` ON `g`.`user_id` = `u`.`user_id` LEFT JOIN `states` as `s` ON `u`.`state_id` = `s`.`state_id` LEFT JOIN `countries` as `cs` ON `u`.`country_id` = `cs`.`country_id` WHERE `g`.`status_ind` = '1' AND `g`.`completed_ind` = '0' AND `d`.`amount_status` = '1' AND `g`.`unlock_campaign` = '0' GROUP BY `g`.`campaign_id` ORDER BY `donation_amount` DESC LIMIT 10
Filename: models/Campaigns_model.php
Line Number: 263