SHOW TABLES LIKE 'Member'
0.0006ms

SHOW TABLES LIKE 'Group'
0.0005ms

SHOW TABLES LIKE 'Permission'
0.0005ms

SHOW FULL FIELDS IN `Permission`
0.0012ms

SHOW COLLATION LIKE 'utf8_general_ci'
0.0007ms

SHOW COLLATION LIKE 'utf8_general_ci'
0.0003ms

SHOW FULL FIELDS IN `Member`
0.0018ms

SHOW COLLATION LIKE 'utf8_general_ci'
0.0007ms

SHOW COLLATION LIKE 'utf8_general_ci'
0.0003ms

SHOW COLLATION LIKE 'utf8_general_ci'
0.0003ms

SHOW COLLATION LIKE 'utf8_general_ci'
0.0003ms

SHOW COLLATION LIKE 'utf8_general_ci'
0.0003ms

SHOW COLLATION LIKE 'utf8_general_ci'
0.0003ms

SHOW COLLATION LIKE 'utf8_general_ci'
0.0003ms

SHOW COLLATION LIKE 'utf8_general_ci'
0.0003ms

SHOW COLLATION LIKE 'utf8_general_ci'
0.0003ms

SHOW COLLATION LIKE 'utf8_general_ci'
0.0003ms

SELECT `Member`.*, `Member`.ID, if(`Member`.ClassName,`Member`.ClassName,'Member') AS RecordClassName FROM `Member` WHERE (Member.ID = 1) ORDER BY Surname, FirstName LIMIT 1
0.0005ms

UPDATE Member SET LastVisited = NOW() WHERE ID = 1
0.0003ms

SELECT `SiteTree`.*, `GhostPage`.*, `ErrorPage`.*, `RedirectorPage`.*, `VirtualPage`.*, `UserDefinedForm`.*, `HomePage`.*, `NewsPage`.*, `SubscribeForm`.*, `SiteTree`.ID, if(`SiteTree`.ClassName,`SiteTree`.ClassName,'SiteTree') AS RecordClassName FROM `SiteTree` LEFT JOIN `GhostPage` ON `GhostPage`.ID = `SiteTree`.ID LEFT JOIN `ErrorPage` ON `ErrorPage`.ID = `SiteTree`.ID LEFT JOIN `RedirectorPage` ON `RedirectorPage`.ID = `SiteTree`.ID LEFT JOIN `VirtualPage` ON `VirtualPage`.ID = `SiteTree`.ID LEFT JOIN `UserDefinedForm` ON `UserDefinedForm`.ID = `SiteTree`.ID LEFT JOIN `HomePage` ON `HomePage`.ID = `SiteTree`.ID LEFT JOIN `NewsPage` ON `NewsPage`.ID = `SiteTree`.ID LEFT JOIN `SubscribeForm` ON `SubscribeForm`.ID = `SiteTree`.ID WHERE (HomepageForDomain REGEXP '(,|^) *olct\.dev *(,|$)') ORDER BY Sort LIMIT 1
0.001ms

SELECT `SiteTree_Live`.*, `GhostPage_Live`.*, `ErrorPage_Live`.*, `RedirectorPage_Live`.*, `VirtualPage_Live`.*, `UserDefinedForm_Live`.*, `HomePage_Live`.*, `NewsPage_Live`.*, `SubscribeForm_Live`.*, `SiteTree_Live`.ID, if(`SiteTree_Live`.ClassName,`SiteTree_Live`.ClassName,'SiteTree') AS RecordClassName FROM `SiteTree_Live` LEFT JOIN `GhostPage_Live` ON `GhostPage_Live`.ID = `SiteTree_Live`.ID LEFT JOIN `ErrorPage_Live` ON `ErrorPage_Live`.ID = `SiteTree_Live`.ID LEFT JOIN `RedirectorPage_Live` ON `RedirectorPage_Live`.ID = `SiteTree_Live`.ID LEFT JOIN `VirtualPage_Live` ON `VirtualPage_Live`.ID = `SiteTree_Live`.ID LEFT JOIN `UserDefinedForm_Live` ON `UserDefinedForm_Live`.ID = `SiteTree_Live`.ID LEFT JOIN `HomePage_Live` ON `HomePage_Live`.ID = `SiteTree_Live`.ID LEFT JOIN `NewsPage_Live` ON `NewsPage_Live`.ID = `SiteTree_Live`.ID LEFT JOIN `SubscribeForm_Live` ON `SubscribeForm_Live`.ID = `SiteTree_Live`.ID WHERE (`SiteTree_Live`.URLSegment = 'home') ORDER BY Sort LIMIT 1
0.001ms

SHOW TABLES LIKE 'Member'
0.0007ms

SHOW TABLES LIKE 'Group'
0.0005ms

SHOW TABLES LIKE 'Permission'
0.0005ms

SHOW FULL FIELDS IN `Permission`
0.0012ms

SHOW COLLATION LIKE 'utf8_general_ci'
0.0007ms

SHOW COLLATION LIKE 'utf8_general_ci'
0.0003ms

SHOW FULL FIELDS IN `Member`
0.0018ms

SHOW COLLATION LIKE 'utf8_general_ci'
0.0007ms

SHOW COLLATION LIKE 'utf8_general_ci'
0.0003ms

SHOW COLLATION LIKE 'utf8_general_ci'
0.0003ms

SHOW COLLATION LIKE 'utf8_general_ci'
0.0003ms

SHOW COLLATION LIKE 'utf8_general_ci'
0.0003ms

SHOW COLLATION LIKE 'utf8_general_ci'
0.0003ms

SHOW COLLATION LIKE 'utf8_general_ci'
0.0003ms

SHOW COLLATION LIKE 'utf8_general_ci'
0.0003ms

SHOW COLLATION LIKE 'utf8_general_ci'
0.0003ms

SHOW COLLATION LIKE 'utf8_general_ci'
0.0003ms

[Warning] Cookie 'PastMember' can't be set. The site started outputting was content at line 164 in /lemon8/webroot/www.olct.dev/sapphire/dev/Debug.php

GET /?showqueries=1

Line 21 in /lemon8/webroot/www.olct.dev/sapphire/core/Cookie.php

Source

12 	 * @param name The variable name
13 	 * @param value The variable value.  May be an array or object if you wish.
14 	 * @param expiryDays The expiry time, in days.  Defaults to 90.
15 	 */
16 	static function set($name, $value, $expiryDays = 90) {
17 		if(!headers_sent($file, $line)) {
18 			$expiry = $expiryDays > 0 ? time()+(86400*$expiryDays) : 0;
19 			setcookie($name, $value, $expiry, Director::baseURL());
20 		} else {
21 			if(self::$report_errors) user_error("Cookie '$name' can't be set. The site started outputting was content at line $line in $file", E_USER_WARNING);
22 		}
23 		$_COOKIE[$name] = $value;
24 	}
25 	
26 	/**
27 	 * Get a cookie variable

Trace