#0 /var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Environment.php(418) : eval()'d code(62): Twig\Template->displayBlock()
#1 /var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Template.php(182): __TwigTemplate_7cadfa4cc8e0597cd666c7f51b9ecb8970de1fc216bde37023794e111eb4d32c->block_content()
#2 /var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Environment.php(418) : eval()'d code(715): Twig\Template->displayBlock()
#3 /var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Template.php(405): __TwigTemplate_604f21f4961bdf846178afacaeb2cda290b7afdf9f793b65c989a9d0fb969f7b->doDisplay()
#4 /var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Template.php(378): Twig\Template->displayWithErrorHandling()
#5 /var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Environment.php(418) : eval()'d code(45): Twig\Template->display()
#6 /var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Template.php(405): __TwigTemplate_7cadfa4cc8e0597cd666c7f51b9ecb8970de1fc216bde37023794e111eb4d32c->doDisplay()
#7 /var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Template.php(378): Twig\Template->displayWithErrorHandling()
#8 /var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Environment.php(418) : eval()'d code(44): Twig\Template->display()
#9 /var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Template.php(405): __TwigTemplate_ed003c5bd48f32ef8c8c308b5d0d15abf65a3bf1d22cfe82bd90d9c2dbdf5c4e->doDisplay()
#10 /var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Template.php(378): Twig\Template->displayWithErrorHandling()
#11 /var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Template.php(390): Twig\Template->display()
#12 /var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/TemplateWrapper.php(45): Twig\Template->render()
#13 /var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Environment.php(318): Twig\TemplateWrapper->render()
#14 /var/www/dev-priyantha.gptoday.net/public_html/app/Services/ViewRenderer/TwigRenderer.php(115): Twig\Environment->render()
#15 /var/www/dev-priyantha.gptoday.net/public_html/app/ViewTrait.php(98): F1T\Services\ViewRenderer\TwigRenderer->render()
#16 /var/www/dev-priyantha.gptoday.net/public_html/app/ViewTrait.php(79): F1T\Controllers\BaseController->renderViewFile()
#17 /var/www/dev-priyantha.gptoday.net/public_html/app/website.php(261): F1T\Controllers\BaseController->render()
#18 /var/www/dev-priyantha.gptoday.net/public_html/index.php(11): require_once('...')
#19 {main}
An exception has been thrown during the rendering of a template ("Entity of type 'F1T\Entities\Photoalbums' for IDs PhotoAlbumId(2752) was not found").
object(stdClass)#14021 (13) {
  ["__CLASS__"]=>
  string(23) "Twig\Error\RuntimeError"
  ["lineno:Twig\Error\Error:private"]=>
  int(283)
  ["name:Twig\Error\Error:private"]=>
  string(18) "team/specific.twig"
  ["rawMessage:Twig\Error\Error:private"]=>
  string(151) "An exception has been thrown during the rendering of a template ("Entity of type 'F1T\Entities\Photoalbums' for IDs PhotoAlbumId(2752) was not found")."
  ["sourcePath:Twig\Error\Error:private"]=>
  string(79) "/var/www/dev-priyantha.gptoday.net/public_html/views/gptoday/team/specific.twig"
  ["sourceCode:Twig\Error\Error:private"]=>
  string(21306) "{% extends "structure/content.twig" %}

{% block topContent %}
    {#{ module('Sidebar', 'ads_configuration_ros') }#}

    {% if UserAdsEnabled() %}
        
            {{ module('Sidebar', 'ads-header-leaderboard') }}
        
    {% endif %}

    
        {% if UserAdsEnabled() %}
            {{ module('Sidebar', 'ads-skyscraper-ros') }}
        {% endif %}

        
            ‹ {{ 'Back to teams'|trans }}
            {#F1{{ 'Teams'|trans }} {{ 'now'|date('Y') }} - #}{{ teamInfo.getName() }}
        
        
    
{% endblock %}

{% block mainContent %}

    {
        "@context": "http://schema.org",
        "@type": "SportsTeam",
        "name": "{{ teamInfo.Name }}",
        "sport": "Auto racing",
        "athlete": [
            {% for personCareer in driverList %}
                {% set person=personCareer.person %}
                {
                    "@type": "Person",
                    "givenName": "{{ person.FirstName }}",
                    "familyName": "{{ person.LastName }}",
                    "birthDate":"{{ person.Birthdate.format('Y-m-d H:i:s') }}",
                    "birthPlace":{
                        "@type": "Place",
                        "name": "{{ person.BirthCity }}"
                    },
                    "height": "{{ person.Height }} m",
                    "weight": "{{ person.Weight }} kg",
                    "jobTitle": "Driver",
                    "url": "{{ person.Website }}"
                    {% if loop.last %}
                }
                    {% else %}
                },
                    {% endif %}
            {% endfor %}
        ]
    }

    {% set orgHistory = teamInfo.getHistory[0] %}

    
        
            
                {#volgend#}
                {% if page_url is defined %}
                    
                        
                            
                                
                                
                                
                            
                        
                        
                    
                {% endif %}
                {% if orgHistory.getPhoto() is not empty %}
                    
                        {{
                            img_tag(
                                imglink_artlg(orgHistory.getPhoto()), {
                                    'alt' : teamInfo.getName(),
                                    'title' : teamInfo.getName()
                                }
                            )|raw
                        }}
                    
                {% endif %}
            
            
                {{ country_flag_gp(teamInfo.getCountry()) }} {{ teamInfo.getName() }}
                
                    
                        {{ biography is not empty ? biography.getContent()|parsebb|raw : '' }}
                    
                    
                        
                            
                                {{ 'Team name'|trans }}
                                {{ teamInfo.getName() is not empty ? teamInfo.getName() : '-' }}
                            
                            
                                {{ 'Base'|trans }}
                                {{ orgHistory.getCity() is not empty ? orgHistory.getCity() ~ ', ' : '-' }}
                                {{ teamInfo.getCountry() is not empty ? teamInfo.getCountry().getName(constant('SITE_LANG'))|raw : '-' }}
                            
                            
                                {{ 'Team principal'|trans }}
                                {#{{ teamInfo.getPrincipal() is not empty ? teamInfo.getPrincipal() : '-' }}#}
                                -
                            
                            
                                {{ 'Technical manager'|trans }}
                                {#{{ teamInfo.getTechnicalManager() is not empty ? teamInfo.getTechnicalManager() : '-' }}#}
                                -
                            
                            
                                {{ 'Chassis'|trans }}
                                {#{{ chassis is not empty ? chassis : '-' }}#}
                                -
                            
                            
                                {{ 'Engine'|trans }}
                                {#{{ chassis.getName() is not chassis.getName() : '-' }}#}
                                -
                            
                            
                                {{ 'Founding date'|trans }}
                                {{ teamInfo.getFoundingDate() is not empty ? teamInfo.getFoundingDate()|i8n_date : '-' }}
                            
                            
                                {{ 'Podiums'|trans }}
                                {{ (teamStats is not empty and teamStats['PodiumCount'] is not empty) ? teamStats['PodiumCount']|i8n_number : '-' }}
                            
                            
                                {{ 'World Championship'|trans }}
                                {#{{ teamStats['WorldChampionCount'] is not empty ? teamStats['WorldChampionCount']|i8n_number : '-' }}#}
                                -
                            
                            
                                {{ 'Pole positions'|trans }}
                                {{ teamStats is not empty and teamStats['PoleCount'] is not empty ? teamStats['PoleCount']|i8n_number : '-' }}
                            
                            
                                {{ 'Fastest race laps'|trans }}
                                {#{{ teamStats['FastestLapCount'] is not empty ? teamStats['FastestLapCount']|i8n_number : '-' }}#}
                                -
                            
                        
                        
                        
                            
                                
                                    
                                    {{ commentcount|i8n_number }} {{ 'comments on'|trans }} {{ teamInfo.getName() }}
                                
                                
                                    
                                    {{ teamFavouriteCount }} {{ 'members have this team as their favourite'|trans }}
                                
                                
                                    
                                    
                                        {{ 'Tweets about'|trans }} {{ teamInfo.getName() }}
                                    
                                
                            
                        
                    
                
                
                    
                        {% for driverCareer in activePersonList['driver'] %}
                            
                                
                                    
                                        
                                            {% if driverCareer.getProfilePhoto() is not empty %}
                                                {{
                                                    img_tag(
                                                        imglink_medium(driverCareer.getProfilePhoto()), {
                                                            'alt' : driverCareer.getPerson().getFullName(),
                                                            'title' : driverCareer.getPerson().getFullName()
                                                        }
                                                    )|raw
                                                }}
                                            {% endif %}
                                        
                                        
                                            {{ driverCareer.getStartNumber() }}
                                            
                                                
                                                    {{ country_flag_gp(driverCareer.getPerson().getNationality()) }}
                                                

                                                {{ driverCareer.getPerson().getFullName() }}
                                            
                                            
                                        
                                    
                                
                            
                        {% endfor %}
                    
                    
                
            
        

        {% if photoList is not empty %}
            
                {{ 'Photo gallery'|trans }}
                

                    

                        
                            {% for photo in photoList %}
                                {{ loop.index }}
                            {% endfor %}
                             / {{ photoList|length }}
                        
                        
                            {% for photo in photoList %}
                                
                                    
                                        {{ 'On screen'|trans }}:
                                        {{ photo.getTitle()|snip(50)|raw }}
                                        {{ photo.getPhotoDate()|i8n_date }}
                                        {{ 'Album'|trans }}
                                    
                                    
                                        {{
                                            img_tag(
                                                imglink_potw(photo.getFileName()), {
                                                    'alt' : photo.getTitle()|snip(50),
                                                    'title' : photo.getTitle()|snip(50)
                                                }
                                            )|raw
                                        }}
                                    
                                    
                                
                            {% endfor %}
                        
                        
                             
                             
                        
                    
                
            

            
                {{ 'Photo gallery'|trans }}
                
                    
                        
                            {% for photo in photoList %}
                                {{ loop.index }}
                            {% endfor %}
                             / {{ photoList|length }}
                        
                        
                            {% for photo in photoList|slice(0,10) %}
                                
                                    
                                        {{
                                            img_tag(
                                                imglink_potw(photo.getFileName()), {
                                                    'alt' : photo.getTitle(),
                                                    'title' : photo.getTitle()
                                                }
                                            )|raw
                                        }}
                                    
                                    
                                        {{ 'On screen'|trans }}:
                                        {{ photo.getTitle() }}
                                        {{ photo.getPhotoDate()|i8n_date }}
                                        {{ 'Album'|trans }}
                                    
                                    
                                
                            {% endfor %}
                        
                        
                             
                             
                        
                    
                
            
        {% endif %}

        
            
                {{ 'Driver statistics'|trans }}
                
            
            
                
                    
                        
                        {{ 'Driver'|trans }}
                        {{ 'Points'|trans }}
                        {{ 'Started'|trans }}
                        {{ 'Not finished'|trans }}
                        {{ 'Not started'|trans }}
                        {{ 'Pole positions'|trans }}
                        {{ 'Podiums'|trans }}
                        {{ 'Race wins'|trans }}
                    
                    {% for driverCareer in activePersonList['driver'] %}
                        {% set careerId = driverCareer.PersonCareerId %}
                        {% if( personStats[careerId] is not empty ) %}
                            
                                 
                                {{ personStats[careerId].DriverName }}
                                {{ personStats[careerId].TotalPoints }}
                                {{ personStats[careerId].ParticipatedInRacesCount }}
                                {{ personStats[careerId].DidNotFinishCount }}
                                {{ personStats[careerId].DidNotStartCount }}
                                {{ personStats[careerId].PoleCount}}
                                {{ personStats[careerId].PodiumCount}}
                                {{ personStats[careerId].RaceWinCount}}
                            
                        {% endif %}
                    {% endfor %}
                
            

            {##}
                {##}
                    {##}
                        {#2018#}
                        {##}
                            {##}
                                {##}
                                    {#{{ 'Driver'|trans }}#}
                                    {#Max Verstappen#}
                                    {#Daniel Ricciardo#}
                                {##}
                                {##}
                                    {#{{ 'Not finished'|trans }}#}
                                    {#7#}
                                    {#7#}
                                {##}
                                {##}
                                    {#{{ 'Crashed'|trans }}#}
                                    {#0#}
                                    {#0#}
                                {##}
                                {##}
                                    {#{{ 'Not started'|trans }}#}
                                    {#0#}
                                    {#0#}
                                {##}
                                {##}
                                    {#{{ 'Engine problems'|trans }}#}
                                    {#5#}
                                    {#5#}
                                {##}
                                {##}
                                    {#{{ 'Pole positions'|trans }}#}
                                    {#0#}
                                    {#0#}
                                {##}
                                {##}
                                    {#{{ 'Race wins'|trans }}#}
                                    {#0#}
                                    {#0#}
                                {##}
                            {##}
                        {##}
                    {##}
                {##}
            {##}
        

        
            
                {{ 'Latest news'|trans }}
                
            

            {{ module('StaticView', 'news/newslisting') }}
        
    
{% endblock %}

{% block rightContent %}
    {% if not is_mobile() %}
        
            {{ include('team/specific/team-history.twig') }}
            {{ module('Sidebar', 'sidebar-team-specific') }}
        
    {% endif %}
{% endblock %}
"
  ["message:protected"]=>
  string(151) "An exception has been thrown during the rendering of a template ("Entity of type 'F1T\Entities\Photoalbums' for IDs PhotoAlbumId(2752) was not found")."
  ["string:Exception:private"]=>
  string(0) ""
  ["code:protected"]=>
  int(0)
  ["file:protected"]=>
  string(79) "/var/www/dev-priyantha.gptoday.net/public_html/views/gptoday/team/specific.twig"
  ["line:protected"]=>
  int(283)
  ["trace:Exception:private"]=>
  array(19) {
    [0]=>
    string(8) "Array(5)"
    [1]=>
    string(8) "Array(5)"
    [2]=>
    string(8) "Array(5)"
    [3]=>
    string(8) "Array(5)"
    [4]=>
    string(8) "Array(5)"
    [5]=>
    string(8) "Array(5)"
    [6]=>
    string(8) "Array(5)"
    [7]=>
    string(8) "Array(5)"
    [8]=>
    string(8) "Array(5)"
    [9]=>
    string(8) "Array(5)"
    [10]=>
    string(8) "Array(5)"
    [11]=>
    string(8) "Array(5)"
    [12]=>
    string(8) "Array(5)"
    [13]=>
    string(8) "Array(5)"
    [14]=>
    string(8) "Array(5)"
    [15]=>
    string(8) "Array(5)"
    [16]=>
    string(8) "Array(5)"
    [17]=>
    string(8) "Array(5)"
    [18]=>
    string(8) "Array(4)"
  }
  ["previous:Exception:private"]=>
  object(stdClass)#113 (8) {
    ["__CLASS__"]=>
    string(36) "Doctrine\ORM\EntityNotFoundException"
    ["message:protected"]=>
    string(82) "Entity of type 'F1T\Entities\Photoalbums' for IDs PhotoAlbumId(2752) was not found"
    ["string:Exception:private"]=>
    string(0) ""
    ["code:protected"]=>
    int(0)
    ["file:protected"]=>
    string(111) "/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/EntityNotFoundException.php"
    ["line:protected"]=>
    int(33)
    ["trace:Exception:private"]=>
    string(9) "Array(25)"
    ["previous:Exception:private"]=>
    NULL
  }
}

Total queries: 12
Total time: 0.8170440196991
timesincestartcallerannotatebtdesc
0.000471
instantiate query log (0Q - total module time: 0.00057197s)
""
0.001051
boot (0Q - total module time: 0.00010395s)
""
0.001158
translation-init (1Q - total module time: 0.00110102s)
""
0.000401970.001845/var/www/dev-priyantha.gptoday.net/public_html/index.php/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/dbal/lib/Doctrine/DBAL/Statement.php:189(stopQuery)
/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Redirect.php:105(execute)
/var/www/dev-priyantha.gptoday.net/public_html/app/Entities/Redirect.php:112(findByOrigin)
/var/www/dev-priyantha.gptoday.net/public_html/app/Services/Redirects.php:108(getRedirectOrFalse)
/var/www/dev-priyantha.gptoday.net/public_html/app/Router.php:115(checkForDBRedirects)
/var/www/dev-priyantha.gptoday.net/public_html/app/website.php:260(execute)
/var/www/dev-priyantha.gptoday.net/public_html/index.php:11(require_once)
SELECT redirects.id, redirects.origin, redirects.referer FROM redirects WHERE redirects.origin = :origin ORDER BY id
{"origin":"\/nl\/teams\/ajax"}
0.002262
controller::teams/ajax (10Q - total module time: 0.64915895s)
""
0.006376980.002749/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Organisation.php/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:1323(stopQuery)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php:31(executeQuery)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:325(execute)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1212(_doExecute)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1166(executeIgnoreQueryCache)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:953(execute)
/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Organisation.php:120(getOneOrNullResult)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/Team.php:106(findByUrl)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/Team.php:26(action_listSpecificTeam)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/BaseController.php:39(action_Index)
/var/www/dev-priyantha.gptoday.net/public_html/app/Router.php:269(dispatch)
/var/www/dev-priyantha.gptoday.net/public_html/app/Router.php:195(_load)
/var/www/dev-priyantha.gptoday.net/public_html/app/website.php:260(execute)
/var/www/dev-priyantha.gptoday.net/public_html/index.php:11(require_once)
SELECT o0_.OrganisationId AS OrganisationId_0, o0_.Name AS Name_1, o0_.FoundingDate AS FoundingDate_2, o0_.Photo AS Photo_3, o0_.OrganisationId AS OrganisationId_4, o0_.Name AS Name_5, o0_.FoundingDate AS FoundingDate_6, o0_.Photo AS Photo_7, k1_.KeywordId AS KeywordId_8, k1_.Keyword AS Keyword_9, k1_.RewriteUrl AS RewriteUrl_10, k1_.Category AS Category_11, k1_.CommentCount AS CommentCount_12, o2_.OrganisationHistoryId AS OrganisationHistoryId_13, o2_.Name AS Name_14, o2_.StartDate AS StartDate_15, o2_.EndDate AS EndDate_16, o2_.Photo AS Photo_17, o2_.SmallLogo AS SmallLogo_18, o2_.City AS City_19, o2_.Website AS Website_20, d3_.iso AS iso_21, d3_.iso3 AS iso3_22, d3_.numcode AS numcode_23, d4_.cntnlang AS cntnlang_24, d4_.printable_name AS printable_name_25, o0_.KeywordId AS KeywordId_26, o0_.Nationality AS Nationality_27, k1_.ParentId AS ParentId_28, o2_.OrganisationRoleId AS OrganisationRoleId_29, o2_.PrimaryOrganisationId AS PrimaryOrganisationId_30, o2_.RacingSerieId AS RacingSerieId_31, d4_.ISO AS ISO_32 FROM Organisations o0_ INNER JOIN Keywords k1_ ON o0_.KeywordId = k1_.KeywordId INNER JOIN OrganisationOrganisationHistory o5_ ON o0_.OrganisationId = o5_.OrganisationId INNER JOIN OrganisationHistory o2_ ON o2_.OrganisationHistoryId = o5_.OrganisationHistoryId INNER JOIN db_countries d3_ ON o0_.Nationality = d3_.iso INNER JOIN db_countries_trnsl d4_ ON d3_.iso = d4_.ISO WHERE k1_.RewriteUrl = ? AND d4_.cntnlang = ? ORDER BY o2_.EndDate DESC
["ajax","nl"]
0.000132080.009748/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Keyword.php/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:1323(stopQuery)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php:31(executeQuery)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:325(execute)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1212(_doExecute)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1166(executeIgnoreQueryCache)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:901(execute)
/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Keyword.php:40(getResult)
/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Article.php:239(getKeywordIdListForParent)
/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Article.php:215(findByKeywordForType)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/Team.php:119(findByKeyword)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/Team.php:26(action_listSpecificTeam)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/BaseController.php:39(action_Index)
/var/www/dev-priyantha.gptoday.net/public_html/app/Router.php:269(dispatch)
/var/www/dev-priyantha.gptoday.net/public_html/app/Router.php:195(_load)
/var/www/dev-priyantha.gptoday.net/public_html/app/website.php:260(execute)
/var/www/dev-priyantha.gptoday.net/public_html/index.php:11(require_once)
SELECT k0_.KeywordId AS KeywordId_0, k0_.Keyword AS Keyword_1, k0_.RewriteUrl AS RewriteUrl_2, k0_.Category AS Category_3, k0_.CommentCount AS CommentCount_4, k0_.ParentId AS ParentId_5 FROM Keywords k0_ WHERE k0_.KeywordId IN (?)
[[319]]
0.000200030.009964/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Article.php/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:1323(stopQuery)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php:31(executeQuery)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:325(execute)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1212(_doExecute)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1166(executeIgnoreQueryCache)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:937(execute)
/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Article.php:124(getScalarResult)
/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Article.php:247(commonCriteria)
/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Article.php:215(findByKeywordForType)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/Team.php:119(findByKeyword)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/Team.php:26(action_listSpecificTeam)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/BaseController.php:39(action_Index)
/var/www/dev-priyantha.gptoday.net/public_html/app/Router.php:269(dispatch)
/var/www/dev-priyantha.gptoday.net/public_html/app/Router.php:195(_load)
/var/www/dev-priyantha.gptoday.net/public_html/app/website.php:260(execute)
/var/www/dev-priyantha.gptoday.net/public_html/index.php:11(require_once)
SELECT c0_.ContentLanguage AS ContentLanguage_0 FROM ContentLanguageMapping c0_ WHERE (c0_.ContentType = ? AND c0_.ContentSubType IN (?) AND c0_.SiteLanguage = ?) AND (c0_.SiteId IN ('1'))
["Articles",["Nieuws","LiveRaceReport","Liveblog"],"nl"]
0.016271110.010420/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Article.php/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:1323(stopQuery)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php:31(executeQuery)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:325(execute)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1212(_doExecute)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1166(executeIgnoreQueryCache)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:901(execute)
/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Article.php:251(getResult)
/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Article.php:215(findByKeywordForType)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/Team.php:119(findByKeyword)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/Team.php:26(action_listSpecificTeam)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/BaseController.php:39(action_Index)
/var/www/dev-priyantha.gptoday.net/public_html/app/Router.php:269(dispatch)
/var/www/dev-priyantha.gptoday.net/public_html/app/Router.php:195(_load)
/var/www/dev-priyantha.gptoday.net/public_html/app/website.php:260(execute)
/var/www/dev-priyantha.gptoday.net/public_html/index.php:11(require_once)
SELECT a0_.ArticleId AS ArticleId_0, a0_.RewriteUrl AS RewriteUrl_1, a0_.Title AS Title_2, a0_.SeoDescription AS SeoDescription_3, a0_.SeoTitle AS SeoTitle_4, a0_.coAuthor AS coAuthor_5, a0_.Icon AS Icon_6, a0_.Category AS Category_7, a0_.Content AS Content_8, a0_.PublishDate AS PublishDate_9, a0_.CreateDate AS CreateDate_10, a0_.CreateTime AS CreateTime_11, a0_.CommentType AS CommentType_12, a0_.AllowNewComments AS AllowNewComments_13, a0_.cntnlang AS cntnlang_14, a0_.LastUpdateDate AS LastUpdateDate_15, a0_.ArticleType AS ArticleType_16, a0_.CommentCount AS CommentCount_17, a0_.Activated AS Activated_18, a0_.StickyUntil AS StickyUntil_19, a0_.ViewCount AS ViewCount_20, a0_.PushEnabled AS PushEnabled_21, a0_.PushTitle AS PushTitle_22, a0_.PushMessage AS PushMessage_23, a0_.breaking AS breaking_24, a0_.breaking_title AS breaking_title_25, a0_.TestMode AS TestMode_26, r1_.RacingSerieId AS RacingSerieId_27, r1_.RewriteUrl AS RewriteUrl_28, r1_.IsDefault AS IsDefault_29, r2_.RacingSeriesTranslationId AS RacingSeriesTranslationId_30, r2_.LanguageCode AS LanguageCode_31, r2_.ShortName AS ShortName_32, r2_.LongName AS LongName_33, a0_.SiteId AS SiteId_34, a0_.RaceTrackHistoryId AS RaceTrackHistoryId_35, a0_.RacingSerieId AS RacingSerieId_36, a0_.PhotoAlbumId AS PhotoAlbumId_37, a0_.CmsAccountId AS CmsAccountId_38, a0_.PollId AS PollId_39, a0_.RaceSessionId AS RaceSessionId_40, r1_.SiteId AS SiteId_41, r1_.CountryIso AS CountryIso_42, r2_.RacingSerieId AS RacingSerieId_43 FROM Articles a0_ INNER JOIN RacingSeries r1_ ON a0_.RacingSerieId = r1_.RacingSerieId AND (r1_.SiteId IN ('1')) INNER JOIN RacingSeriesTranslations r2_ ON r1_.RacingSerieId = r2_.RacingSerieId AND (r2_.LanguageCode = 'nl') INNER JOIN keyword_combinations k3_ ON (k3_.nieuwsID = a0_.ArticleId) WHERE (((((a0_.cntnlang IN (?) AND a0_.SiteId IN (?)) AND a0_.Activated = ?) AND a0_.PublishDate < ?) AND a0_.ArticleType IN (?)) AND k3_.keywordID IN (?)) AND (a0_.SiteId IN ('1')) ORDER BY a0_.PublishDate DESC LIMIT 70
[["nl"],["1"],true,{"date":"2026-02-04 15:05:00.000000","timezone_type":3,"timezone":"Europe\/Amsterdam"},["Nieuws","LiveRaceReport","Liveblog"],[319]]
0.000062940.027104/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Keyword.php/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:1323(stopQuery)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php:31(executeQuery)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:325(execute)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1212(_doExecute)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1166(executeIgnoreQueryCache)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:901(execute)
/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Keyword.php:40(getResult)
/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Article.php:239(getKeywordIdListForParent)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/Team.php:121(findByKeywordForType)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/Team.php:26(action_listSpecificTeam)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/BaseController.php:39(action_Index)
/var/www/dev-priyantha.gptoday.net/public_html/app/Router.php:269(dispatch)
/var/www/dev-priyantha.gptoday.net/public_html/app/Router.php:195(_load)
/var/www/dev-priyantha.gptoday.net/public_html/app/website.php:260(execute)
/var/www/dev-priyantha.gptoday.net/public_html/index.php:11(require_once)
SELECT k0_.KeywordId AS KeywordId_0, k0_.Keyword AS Keyword_1, k0_.RewriteUrl AS RewriteUrl_2, k0_.Category AS Category_3, k0_.CommentCount AS CommentCount_4, k0_.ParentId AS ParentId_5 FROM Keywords k0_ WHERE k0_.KeywordId IN (?)
[[319]]
0.000123980.027237/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Article.php/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:1323(stopQuery)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php:31(executeQuery)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:325(execute)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1212(_doExecute)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1166(executeIgnoreQueryCache)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:937(execute)
/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Article.php:124(getScalarResult)
/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Article.php:247(commonCriteria)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/Team.php:121(findByKeywordForType)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/Team.php:26(action_listSpecificTeam)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/BaseController.php:39(action_Index)
/var/www/dev-priyantha.gptoday.net/public_html/app/Router.php:269(dispatch)
/var/www/dev-priyantha.gptoday.net/public_html/app/Router.php:195(_load)
/var/www/dev-priyantha.gptoday.net/public_html/app/website.php:260(execute)
/var/www/dev-priyantha.gptoday.net/public_html/index.php:11(require_once)
SELECT c0_.ContentLanguage AS ContentLanguage_0 FROM ContentLanguageMapping c0_ WHERE (c0_.ContentType = ? AND c0_.ContentSubType IN (?) AND c0_.SiteLanguage = ?) AND (c0_.SiteId IN ('1'))
["Articles",["OrganisationPersonBiography"],"nl"]
0.000950100.027482/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Article.php/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:1323(stopQuery)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php:31(executeQuery)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:325(execute)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1212(_doExecute)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1166(executeIgnoreQueryCache)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:901(execute)
/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Article.php:251(getResult)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/Team.php:121(findByKeywordForType)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/Team.php:26(action_listSpecificTeam)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/BaseController.php:39(action_Index)
/var/www/dev-priyantha.gptoday.net/public_html/app/Router.php:269(dispatch)
/var/www/dev-priyantha.gptoday.net/public_html/app/Router.php:195(_load)
/var/www/dev-priyantha.gptoday.net/public_html/app/website.php:260(execute)
/var/www/dev-priyantha.gptoday.net/public_html/index.php:11(require_once)
SELECT a0_.ArticleId AS ArticleId_0, a0_.RewriteUrl AS RewriteUrl_1, a0_.Title AS Title_2, a0_.SeoDescription AS SeoDescription_3, a0_.SeoTitle AS SeoTitle_4, a0_.coAuthor AS coAuthor_5, a0_.Icon AS Icon_6, a0_.Category AS Category_7, a0_.Content AS Content_8, a0_.PublishDate AS PublishDate_9, a0_.CreateDate AS CreateDate_10, a0_.CreateTime AS CreateTime_11, a0_.CommentType AS CommentType_12, a0_.AllowNewComments AS AllowNewComments_13, a0_.cntnlang AS cntnlang_14, a0_.LastUpdateDate AS LastUpdateDate_15, a0_.ArticleType AS ArticleType_16, a0_.CommentCount AS CommentCount_17, a0_.Activated AS Activated_18, a0_.StickyUntil AS StickyUntil_19, a0_.ViewCount AS ViewCount_20, a0_.PushEnabled AS PushEnabled_21, a0_.PushTitle AS PushTitle_22, a0_.PushMessage AS PushMessage_23, a0_.breaking AS breaking_24, a0_.breaking_title AS breaking_title_25, a0_.TestMode AS TestMode_26, r1_.RacingSerieId AS RacingSerieId_27, r1_.RewriteUrl AS RewriteUrl_28, r1_.IsDefault AS IsDefault_29, r2_.RacingSeriesTranslationId AS RacingSeriesTranslationId_30, r2_.LanguageCode AS LanguageCode_31, r2_.ShortName AS ShortName_32, r2_.LongName AS LongName_33, a0_.SiteId AS SiteId_34, a0_.RaceTrackHistoryId AS RaceTrackHistoryId_35, a0_.RacingSerieId AS RacingSerieId_36, a0_.PhotoAlbumId AS PhotoAlbumId_37, a0_.CmsAccountId AS CmsAccountId_38, a0_.PollId AS PollId_39, a0_.RaceSessionId AS RaceSessionId_40, r1_.SiteId AS SiteId_41, r1_.CountryIso AS CountryIso_42, r2_.RacingSerieId AS RacingSerieId_43 FROM Articles a0_ INNER JOIN RacingSeries r1_ ON a0_.RacingSerieId = r1_.RacingSerieId AND (r1_.SiteId IN ('1')) INNER JOIN RacingSeriesTranslations r2_ ON r1_.RacingSerieId = r2_.RacingSerieId AND (r2_.LanguageCode = 'nl') INNER JOIN keyword_combinations k3_ ON (k3_.nieuwsID = a0_.ArticleId) WHERE (((((a0_.cntnlang IN (?) AND a0_.SiteId IN (?)) AND a0_.Activated = ?) AND a0_.PublishDate < ?) AND a0_.ArticleType IN (?)) AND k3_.keywordID IN (?)) AND (a0_.SiteId IN ('1')) ORDER BY a0_.PublishDate DESC LIMIT 70
[["nl"],["1"],true,{"date":"2026-02-04 15:05:00.000000","timezone_type":3,"timezone":"Europe\/Amsterdam"},["OrganisationPersonBiography"],[319]]
0.183387040.028499/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Photo.php/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:1323(stopQuery)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php:31(executeQuery)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:325(execute)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1212(_doExecute)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1166(executeIgnoreQueryCache)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:901(execute)
/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Photo.php:239(getResult)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/Team.php:122(findByKeyword)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/Team.php:26(action_listSpecificTeam)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/BaseController.php:39(action_Index)
/var/www/dev-priyantha.gptoday.net/public_html/app/Router.php:269(dispatch)
/var/www/dev-priyantha.gptoday.net/public_html/app/Router.php:195(_load)
/var/www/dev-priyantha.gptoday.net/public_html/app/website.php:260(execute)
/var/www/dev-priyantha.gptoday.net/public_html/index.php:11(require_once)
SELECT p0_.id AS id_0, p0_.name AS name_1, p0_.UploadDate AS UploadDate_2, p0_.title AS title_3, p0_.fotoDatum AS fotoDatum_4, p0_.FileSize AS FileSize_5, p0_.Height AS Height_6, p0_.Width AS Width_7, p0_.ImageFormat AS ImageFormat_8, p0_.album_id AS album_id_9 FROM photos p0_ INNER JOIN photo_keyword_combi p1_ ON (p1_.photoID = p0_.id) WHERE p1_.keywordID = ? ORDER BY p0_.fotoDatum DESC LIMIT 25
[319]
0.018656970.212174/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:1323(stopQuery)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php:31(executeQuery)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:325(execute)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1212(_doExecute)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1166(executeIgnoreQueryCache)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:991(execute)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1020(getSingleResult)
/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Organisation.php:154(getSingleScalarResult)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/Team.php:125(countUsersWhichHaveFavourite)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/Team.php:26(action_listSpecificTeam)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/BaseController.php:39(action_Index)
/var/www/dev-priyantha.gptoday.net/public_html/app/Router.php:269(dispatch)
/var/www/dev-priyantha.gptoday.net/public_html/app/Router.php:195(_load)
/var/www/dev-priyantha.gptoday.net/public_html/app/website.php:260(execute)
/var/www/dev-priyantha.gptoday.net/public_html/index.php:11(require_once)
SELECT COUNT(1) AS sclr_0 FROM Users u0_ WHERE u0_.FavouriteTeamId = ?
[76]
0.000113010.231016/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Photo.php/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:1323(stopQuery)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php:31(executeQuery)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:325(execute)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1212(_doExecute)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1166(executeIgnoreQueryCache)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:953(execute)
/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/Photo.php:127(getOneOrNullResult)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/Team.php:129(findByName)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/Team.php:26(action_listSpecificTeam)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/BaseController.php:39(action_Index)
/var/www/dev-priyantha.gptoday.net/public_html/app/Router.php:269(dispatch)
/var/www/dev-priyantha.gptoday.net/public_html/app/Router.php:195(_load)
/var/www/dev-priyantha.gptoday.net/public_html/app/website.php:260(execute)
/var/www/dev-priyantha.gptoday.net/public_html/index.php:11(require_once)
SELECT p0_.id AS id_0, p0_.name AS name_1, p0_.UploadDate AS UploadDate_2, p0_.title AS title_3, p0_.fotoDatum AS fotoDatum_4, p0_.FileSize AS FileSize_5, p0_.Height AS Height_6, p0_.Width AS Width_7, p0_.ImageFormat AS ImageFormat_8, p0_.album_id AS album_id_9 FROM photos p0_ WHERE p0_.name = ?
[null]
0.651426 cacheAble: no
module:Sidebar (0Q - total module time: 0.00042295s)
""
0.651853
sidebar:ads-header-just-before-closing-head-tag::ads (0Q - total module time: 0.00001216s)
""
0.651867
module:Ads (0Q - total module time: 0.00013900s)
""
0.652009
sidebar:ads-header-just-before-closing-head-tag::ads (0Q - total module time: 0.00000501s)
""
0.652014
module:Ads (0Q - total module time: 0.00000310s)
""
0.652017
sidebar:ads-header-just-before-closing-head-tag::ads (0Q - total module time: 0.00000095s)
""
0.652020
module:Ads (0Q - total module time: 0.00000095s)
""
0.652021
sidebar:ads-header-just-before-closing-head-tag::ads (0Q - total module time: 0.00000095s)
""
0.652023
module:Ads (0Q - total module time: 0.00000095s)
""
0.652024
sidebar:ads-header-just-before-closing-head-tag::ads (0Q - total module time: 0.00000095s)
""
0.652026
module:Ads (0Q - total module time: 0.00001001s)
""
0.652036 cacheAble: no
module:Sidebar (0Q - total module time: 0.00999379s)
""
0.662035 cacheAble: no
module:Sidebar (0Q - total module time: 0.00000787s)
""
0.662045
sidebar:ads-header-leaderboard::ads (0Q - total module time: 0.00000906s)
""
0.662054
module:Ads (0Q - total module time: 0.00000405s)
""
0.662058
sidebar:ads-header-leaderboard::ads (0Q - total module time: 0.00000095s)
""
0.662061
module:Ads (0Q - total module time: 0.00000095s)
""
0.662062
sidebar:ads-header-leaderboard::ads (0Q - total module time: 0.00000095s)
""
0.662065
module:Ads (0Q - total module time: 0.00000095s)
""
0.662066
sidebar:ads-header-leaderboard::ads (0Q - total module time: 0.00000095s)
""
0.662069
module:Ads (0Q - total module time: 0.00000095s)
""
0.662070
sidebar:ads-header-leaderboard::ads (0Q - total module time: 0.00000215s)
""
0.662072
module:Ads (0Q - total module time: 0.00000501s)
""
0.662077 cacheAble: no
module:Sidebar (1Q - total module time: 0.15495801s)
""
0.154140950.662512/var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Extension/CoreExtension.php/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:1323(stopQuery)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php:750(executeQuery)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php:768(load)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/doctrine/orm/lib/Doctrine/ORM/Proxy/ProxyFactory.php:207(loadById)
/var/www/dev-priyantha.gptoday.net/public_html/app/OrmProxies/__CG__F1TEntitiesPhotoalbums.php:186(Doctrine\ORM\Proxy\{closure})
/var/www/dev-priyantha.gptoday.net/public_html/app/OrmProxies/__CG__F1TEntitiesPhotoalbums.php:186(__invoke)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Extension/CoreExtension.php:1570(getPhotoAlbumId)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Environment.php(418) : eval()'d code:733(twig_get_attribute)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Template.php:182(block_mainContent)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Environment.php(418) : eval()'d code:62(displayBlock)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Template.php:182(block_content)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Environment.php(418) : eval()'d code:715(displayBlock)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Template.php:405(doDisplay)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Template.php:378(displayWithErrorHandling)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Environment.php(418) : eval()'d code:45(display)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Template.php:405(doDisplay)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Template.php:378(displayWithErrorHandling)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Environment.php(418) : eval()'d code:44(display)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Template.php:405(doDisplay)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Template.php:378(displayWithErrorHandling)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Template.php:390(display)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/TemplateWrapper.php:45(render)
/var/www/dev-priyantha.gptoday.net/public_html/vendor/twig/twig/src/Environment.php:318(render)
/var/www/dev-priyantha.gptoday.net/public_html/app/Services/ViewRenderer/TwigRenderer.php:115(render)
/var/www/dev-priyantha.gptoday.net/public_html/app/ViewTrait.php:98(render)
/var/www/dev-priyantha.gptoday.net/public_html/app/ViewTrait.php:79(renderViewFile)
/var/www/dev-priyantha.gptoday.net/public_html/app/website.php:261(render)
/var/www/dev-priyantha.gptoday.net/public_html/index.php:11(require_once)
SELECT t0.id AS id_1, t0.year AS year_2, t0.uservisible AS uservisible_3, t0.PhotoCount AS PhotoCount_4, t0.SiteId AS SiteId_5 FROM photoalbums t0 WHERE t0.id = ? AND ((t0.SiteId IN ('1')))
[2752]
0.817042
done
""