#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)#14369 (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: 13
Total time: 0.08745813369751
timesincestartcallerannotatebtdesc
0.000528
instantiate query log (0Q - total module time: 0.00061011s)
""
0.001144
boot (0Q - total module time: 0.00010204s)
""
0.001249
translation-init (1Q - total module time: 0.00099015s)
""
0.000293020.001933/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\/psv"}
0.002243
controller::teams/psv (11Q - total module time: 0.07318997s)
""
0.000456090.002815/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
["psv","nl"]
0.000142100.003926/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 (?)
[[305]]
0.000055070.004162/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.002326970.004467/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":"2025-12-09 20:35:00.000000","timezone_type":3,"timezone":"Europe\/Amsterdam"},["Nieuws","LiveRaceReport","Liveblog"],[305]]
0.000095840.007274/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 (?)
[[305]]
0.000128030.007446/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.001006130.007714/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":"2025-12-09 20:35:00.000000","timezone_type":3,"timezone":"Europe\/Amsterdam"},["OrganisationPersonBiography"],[305]]
0.000251050.008822/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
[305]
0.000121830.009203/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 = ?
[75]
0.000079870.009447/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.001328950.009817/var/www/dev-priyantha.gptoday.net/public_html/app/Repository/PersonCareer.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/PersonCareer.php:154(getResult)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/Team.php:41(findActiveCareersByTeam)
{"function":"F1T\\Controllers\\{closure}","class":"F1T\\Controllers\\Team","object":{"current_page":"teams"},"type":"->","args":[]}
/var/www/dev-priyantha.gptoday.net/public_html/app/Services/Cache.php:144(call_user_func)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/Team.php:81(lazyFetch)
/var/www/dev-priyantha.gptoday.net/public_html/app/Controllers/Team.php:132(getTeamMembers)
/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_.PersonCareerId AS PersonCareerId_0, p0_.StartDate AS StartDate_1, p0_.EndDate AS EndDate_2, p0_.ProfilePhoto AS ProfilePhoto_3, p0_.StartNumber AS StartNumber_4, p1_.PersonId AS PersonId_5, p1_.LastName AS LastName_6, p1_.FirstName AS FirstName_7, p1_.Birthdate AS Birthdate_8, p1_.DateOfDeath AS DateOfDeath_9, p1_.Residence AS Residence_10, p1_.BirthCity AS BirthCity_11, p1_.ProfilePhoto AS ProfilePhoto_12, p1_.Height AS Height_13, p1_.Website AS Website_14, p1_.Weight AS Weight_15, p1_.InternalNotes AS InternalNotes_16, p1_.InHeaderList AS InHeaderList_17, p1_.InFooterList AS InFooterList_18, p2_.PersonRoleId AS PersonRoleId_19, d3_.iso AS iso_20, d3_.iso3 AS iso3_21, d3_.numcode AS numcode_22, p4_.PersonRolesTranslationId AS PersonRolesTranslationId_23, p4_.LanguageCode AS LanguageCode_24, p4_.Name AS Name_25, o5_.OrganisationHistoryId AS OrganisationHistoryId_26, o5_.Name AS Name_27, o5_.StartDate AS StartDate_28, o5_.EndDate AS EndDate_29, o5_.Photo AS Photo_30, o5_.SmallLogo AS SmallLogo_31, o5_.City AS City_32, o5_.Website AS Website_33, o6_.OrganisationRoleId AS OrganisationRoleId_34, o7_.OrganisationRolesTranslationId AS OrganisationRolesTranslationId_35, o7_.LanguageCode AS LanguageCode_36, o7_.Name AS Name_37, o8_.OrganisationId AS OrganisationId_38, o8_.Name AS Name_39, o8_.FoundingDate AS FoundingDate_40, o8_.Photo AS Photo_41, k9_.KeywordId AS KeywordId_42, k9_.Keyword AS Keyword_43, k9_.RewriteUrl AS RewriteUrl_44, k9_.Category AS Category_45, k9_.CommentCount AS CommentCount_46, p0_.PersonRoleId AS PersonRoleId_47, p0_.OrganisationHistoryId AS OrganisationHistoryId_48, p0_.PersonId AS PersonId_49, p1_.Nationality AS Nationality_50, p1_.KeywordId AS KeywordId_51, p1_.PrimaryCareerId AS PrimaryCareerId_52, p1_.SiteId AS SiteId_53, p4_.PersonRoleId AS PersonRoleId_54, o5_.OrganisationRoleId AS OrganisationRoleId_55, o5_.PrimaryOrganisationId AS PrimaryOrganisationId_56, o5_.RacingSerieId AS RacingSerieId_57, o7_.OrganisationRoleId AS OrganisationRoleId_58, o8_.KeywordId AS KeywordId_59, o8_.Nationality AS Nationality_60, k9_.ParentId AS ParentId_61 FROM PersonCareer p0_ INNER JOIN Persons p1_ ON p0_.PersonId = p1_.PersonId INNER JOIN PersonRoles p2_ ON p0_.PersonRoleId = p2_.PersonRoleId INNER JOIN db_countries d3_ ON p1_.Nationality = d3_.iso INNER JOIN PersonRolesTranslations p4_ ON p2_.PersonRoleId = p4_.PersonRoleId AND (p4_.LanguageCode = 'nl') INNER JOIN OrganisationHistory o5_ ON p0_.OrganisationHistoryId = o5_.OrganisationHistoryId INNER JOIN OrganisationRoles o6_ ON o5_.OrganisationRoleId = o6_.OrganisationRoleId INNER JOIN OrganisationRolesTranslations o7_ ON o6_.OrganisationRoleId = o7_.OrganisationRoleId AND (o7_.LanguageCode = 'nl') INNER JOIN OrganisationOrganisationHistory o10_ ON o5_.OrganisationHistoryId = o10_.OrganisationHistoryId INNER JOIN Organisations o8_ ON o8_.OrganisationId = o10_.OrganisationId INNER JOIN Keywords k9_ ON p1_.KeywordId = k9_.KeywordId WHERE (p0_.OrganisationHistoryId IN (?) AND p4_.LanguageCode = ?) AND o7_.LanguageCode = ? ORDER BY p2_.PersonRoleId ASC, p0_.EndDate DESC, p1_.FirstName ASC, p1_.LastName ASC, p0_.StartNumber ASC
[[209,211],"nl","nl"]
0.075438 cacheAble: no
module:Sidebar (0Q - total module time: 0.00039816s)
""
0.075838
sidebar:ads-header-just-before-closing-head-tag::ads (0Q - total module time: 0.00001097s)
""
0.075851
module:Ads (0Q - total module time: 0.00011706s)
""
0.075970
sidebar:ads-header-just-before-closing-head-tag::ads (0Q - total module time: 0.00000501s)
""
0.075975
module:Ads (0Q - total module time: 0.00000191s)
""
0.075979
sidebar:ads-header-just-before-closing-head-tag::ads (0Q - total module time: 0.00000119s)
""
0.075981
module:Ads (0Q - total module time: 0.00000095s)
""
0.075982
sidebar:ads-header-just-before-closing-head-tag::ads (0Q - total module time: 0.00000095s)
""
0.075984
module:Ads (0Q - total module time: 0.00000119s)
""
0.075985
sidebar:ads-header-just-before-closing-head-tag::ads (0Q - total module time: 0.00000095s)
""
0.075987
module:Ads (0Q - total module time: 0.00000906s)
""
0.075997 cacheAble: no
module:Sidebar (0Q - total module time: 0.01048303s)
""
0.086486 cacheAble: no
module:Sidebar (0Q - total module time: 0.00000906s)
""
0.086497
sidebar:ads-header-leaderboard::ads (0Q - total module time: 0.00000906s)
""
0.086507
module:Ads (0Q - total module time: 0.00000405s)
""
0.086511
sidebar:ads-header-leaderboard::ads (0Q - total module time: 0.00000095s)
""
0.086514
module:Ads (0Q - total module time: 0.00000119s)
""
0.086516
sidebar:ads-header-leaderboard::ads (0Q - total module time: 0.00000095s)
""
0.086517
module:Ads (0Q - total module time: 0.00000095s)
""
0.086519
sidebar:ads-header-leaderboard::ads (0Q - total module time: 0.00000215s)
""
0.086521
module:Ads (0Q - total module time: 0.00000095s)
""
0.086523
sidebar:ads-header-leaderboard::ads (0Q - total module time: 0.00000191s)
""
0.086525
module:Ads (0Q - total module time: 0.00000501s)
""
0.086531 cacheAble: no
module:Sidebar (1Q - total module time: 0.00092292s)
""
0.000293970.086846/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.087456
done
""