http://108.128.120.37/robots.txt

Query Metrics

15 Database Queries
8 Different statements
29.52 ms Query time
22 Invalid entities

Grouped Statements

Show all queries

Time Count Info
11.56 ms
(39.15%)
1
SELECT       c.COLUMN_NAME        AS field,
           IF(
        x.CHECK_CLAUSE IS NOT NULL AND c.COLUMN_TYPE = 'longtext',
        'json',
        c.COLUMN_TYPE
    )       AS type,
       c.IS_NULLABLE        AS `null`,
       c.COLUMN_KEY         AS `key`,
       c.COLUMN_DEFAULT     AS `default`,
       c.EXTRA,
       c.COLUMN_COMMENT     AS comment,
       c.CHARACTER_SET_NAME AS characterset,
       c.COLLATION_NAME     AS collation
FROM information_schema.COLUMNS c
    INNER JOIN information_schema.TABLES t
        ON t.TABLE_NAME = c.TABLE_NAME
    LEFT JOIN information_schema.CHECK_CONSTRAINTS x
    ON (
        c.TABLE_SCHEMA = x.CONSTRAINT_SCHEMA
        AND c.TABLE_NAME = x.TABLE_NAME
        AND x.CHECK_CLAUSE = CONCAT('json_valid(`', c.COLUMN_NAME , '`)')
    ) WHERE c.TABLE_SCHEMA = ? AND t.TABLE_SCHEMA = ? AND t.TABLE_TYPE = 'BASE TABLE' AND t.TABLE_NAME = ? ORDER BY ORDINAL_POSITION
Parameters:
[
  "tatildukkani"
  "tatildukkani"
  "doctrine_migration_versions"
]
5.41 ms
(18.33%)
2
SELECT TABLE_NAME
FROM information_schema.TABLES
WHERE TABLE_SCHEMA = ?
  AND TABLE_TYPE = 'BASE TABLE'
ORDER BY TABLE_NAME
Parameters:
[
  "tatildukkani"
]
4.28 ms
(14.48%)
6
SELECT DATABASE()
Parameters:
[]
3.57 ms
(12.08%)
1
SELECT DISTINCT            k.CONSTRAINT_NAME,
            k.COLUMN_NAME,
            k.REFERENCED_TABLE_NAME,
            k.REFERENCED_COLUMN_NAME,
            k.ORDINAL_POSITION /*!50116,
            c.UPDATE_RULE,
            c.DELETE_RULE */
FROM information_schema.key_column_usage k /*!50116
INNER JOIN information_schema.referential_constraints c
ON c.CONSTRAINT_NAME = k.CONSTRAINT_NAME
AND c.TABLE_NAME = k.TABLE_NAME */ WHERE k.TABLE_SCHEMA = ? AND k.TABLE_NAME = ? AND k.REFERENCED_COLUMN_NAME IS NOT NULL /*!50116 AND c.CONSTRAINT_SCHEMA = 'tatildukkani' */ ORDER BY k.ORDINAL_POSITION
Parameters:
[
  "tatildukkani"
  "doctrine_migration_versions"
]
2.11 ms
(7.14%)
2
SELECT t0.id AS id_1, t0.name AS name_2, t0.logo_white AS logo_white_3, t0.logo AS logo_4, t0.is_edit AS is_edit_5, t0.mail_logo AS mail_logo_6, t0.mail_logo_background AS mail_logo_background_7, t0.site_address AS site_address_8, t0.phone AS phone_9, t0.mail AS mail_10, t0.address AS address_11, t0.panel_site_address AS panel_site_address_12, t0.language AS language_13, t0.is_domestic_hotel AS is_domestic_hotel_14, t0.is_abroad_hotel AS is_abroad_hotel_15, t0.is_cyprus_hotel AS is_cyprus_hotel_16, t0.is_domestic_tour AS is_domestic_tour_17, t0.is_abroad_tour AS is_abroad_tour_18, t0.is_domestic_flight AS is_domestic_flight_19, t0.is_abroad_flight AS is_abroad_flight_20, t0.is_domestic_transfer AS is_domestic_transfer_21, t0.is_abroad_transfer AS is_abroad_transfer_22, t0.noreply_mail AS noreply_mail_23, t0.user_id AS user_id_24 FROM sites t0 WHERE t0.name = ? LIMIT 1
Parameters:
[
  "PUZZLEBOOKING"
]
1.11 ms
(3.77%)
1
SELECT t.TABLE_NAME,
           t.ENGINE,
           t.AUTO_INCREMENT,
           t.TABLE_COMMENT,
           t.CREATE_OPTIONS,
           t.TABLE_COLLATION,
           ccsa.CHARACTER_SET_NAME
      FROM information_schema.TABLES t
        INNER JOIN information_schema.COLLATION_CHARACTER_SET_APPLICABILITY ccsa
            ON ccsa.COLLATION_NAME = t.TABLE_COLLATION WHERE t.TABLE_SCHEMA = ? AND t.TABLE_NAME = ? AND t.TABLE_TYPE = 'BASE TABLE'
Parameters:
[
  "tatildukkani"
  "doctrine_migration_versions"
]
0.76 ms
(2.57%)
1
SELECT        NON_UNIQUE  AS Non_Unique,
        INDEX_NAME  AS Key_name,
        COLUMN_NAME AS Column_Name,
        SUB_PART    AS Sub_Part,
        INDEX_TYPE  AS Index_Type
FROM information_schema.STATISTICS WHERE TABLE_SCHEMA = ? AND TABLE_NAME = ? ORDER BY SEQ_IN_INDEX
Parameters:
[
  "tatildukkani"
  "doctrine_migration_versions"
]
0.73 ms
(2.49%)
1
SELECT * FROM doctrine_migration_versions
Parameters:
[]

Database Connections

Name Service
default doctrine.dbal.default_connection

Entity Managers

Name Service
default doctrine.orm.default_entity_manager

Second Level Cache

Second Level Cache is not enabled.

Entities Mapping

Class Mapping errors
App\Entity\Sites No errors.
App\Entity\User
  • The association App\Entity\User#puzzleForwardingLogs refers to the owning side field App\Entity\PuzzleForwardingLogs#user which does not exist.
App\Entity\Hotel
  • The field App\Entity\Hotel#hotelHotelCategories is on the inverse side of a bi-directional relationship, but the specified mappedBy association on the target-entity App\Entity\HotelHotelCategory#hotel does not contain the required 'inversedBy="hotelHotelCategories"' attribute.
  • The association App\Entity\Hotel#hotel_concept refers to the owning side field App\Entity\HotelConcept#hotel which does not exist.
App\Entity\Tour
  • The field App\Entity\Tour#seoPage is on the inverse side of a bi-directional relationship, but the specified mappedBy association on the target-entity App\Entity\SeoPage#tour does not contain the required 'inversedBy="seoPage"' attribute.
  • The mappings App\Entity\Tour#firstFlightDeparture and App\Entity\Airport#tourPrices are inconsistent with each other.
  • The mappings App\Entity\Tour#endFlightAirline and App\Entity\Airline#tourPrices are inconsistent with each other.
  • The mappings App\Entity\Tour#endFlightOrigin and App\Entity\Airport#tourPrices are inconsistent with each other.
  • The mappings App\Entity\Tour#endFlightDeparture and App\Entity\Airport#tourPrices are inconsistent with each other.
  • The mappings App\Entity\Tour#defaultCategory and App\Entity\TourCategory#toursDefault are inconsistent with each other.
  • The field App\Entity\Tour#tourTourCategories is on the inverse side of a bi-directional relationship, but the specified mappedBy association on the target-entity App\Entity\TourTourCategory#tour does not contain the required 'inversedBy="tourTourCategories"' attribute.
App\Entity\Agency No errors.
App\Entity\HotelDestination
  • The association App\Entity\HotelDestination#searchLogHotels refers to the owning side field App\Entity\SearchLogHotel#destination which does not exist.
  • The association App\Entity\HotelDestination#seoPages refers to the owning side field App\Entity\SeoPage#hotelDestination which does not exist.
  • The association App\Entity\HotelDestination#prePaymentCampaigns refers to the owning side field App\Entity\PrePaymentCampaign#HotelDestination which does not exist.
App\Entity\TourDestination
  • The field App\Entity\TourDestination#seoPage is on the inverse side of a bi-directional relationship, but the specified mappedBy association on the target-entity App\Entity\SeoPage#tour_destination does not contain the required 'inversedBy="seoPage"' attribute.
  • The association App\Entity\TourDestination#hotelMinuteDeals refers to the owning side field App\Entity\HotelMinuteDeals#tourDestination which does not exist.
  • The association App\Entity\TourDestination#searchSuggestions refers to the owning side field App\Entity\SearchSuggestion#tourDestination which does not exist.
App\Entity\Landmarks No errors.
App\Entity\BankAccount No errors.
App\Entity\SeoMenuCategory No errors.
App\Entity\Reservation
  • The mappings App\Entity\Reservation#reservationInvoices and App\Entity\ReservationInvoice#reservation are inconsistent with each other.
  • The association App\Entity\Reservation#currencyRate refers to the inverse side field App\Entity\CurrencyRate#reservation which does not exist.
  • The association App\Entity\Reservation#reservationDayPrices refers to the owning side field App\Entity\ReservationDayPrice#reservation which does not exist.
App\Entity\LogoAccountingCode No errors.
App\Entity\HotelMinuteDeals No errors.
App\Entity\PrePaymentCampaign
  • The mappings App\Entity\PrePaymentCampaign#hotelDestination and App\Entity\HotelDestination#prePaymentCampaigns are inconsistent with each other.
App\Entity\MarketingCampaign
  • The association App\Entity\MarketingCampaign#campaignsTours refers to the inverse side field App\Entity\Tour#marketingCampaigns which does not exist.
App\Entity\PaymentPartialSetting No errors.
App\Entity\PackageProfit No errors.
App\Entity\SearchSuggestion No errors.
App\Entity\BannerArea No errors.
App\Entity\Request No errors.
App\Entity\SeoPageSites No errors.
App\Entity\HotelSite No errors.
App\Entity\TourSite No errors.
App\Entity\HotelDestinationSite No errors.
App\Entity\HotelCategorySite No errors.
App\Entity\TourDestinationSite No errors.
App\Entity\PosInstallment No errors.
App\Entity\Discount No errors.
App\Entity\SearchLogHotel
  • The mappings App\Entity\SearchLogHotel#hotel_destination and App\Entity\HotelDestination#searchLogHotels are inconsistent with each other.
App\Entity\Contract No errors.
App\Entity\PuzzleForwardingLogs No errors.
App\Entity\Refund No errors.
App\Entity\Comment No errors.
App\Entity\HotelProvider No errors.
App\Entity\SeoPage
  • The field App\Entity\SeoPage#coverImages is on the inverse side of a bi-directional relationship, but the specified mappedBy association on the target-entity App\Entity\Image#coverImageSeoPage does not contain the required 'inversedBy="coverImages"' attribute.
App\Entity\Image
  • The mappings App\Entity\Image#coverImageHotelCategory and App\Entity\HotelCategory#images are inconsistent with each other.
App\Entity\HotelFacality No errors.
App\Entity\HotelEvent No errors.
App\Entity\HotelInstallment No errors.
App\Entity\ReservationHotel
  • The association App\Entity\ReservationHotel#reservationHotelExtras refers to the owning side field App\Entity\ReservationHotelExtra#reservationHotel which does not exist.
App\Entity\DiscountHotel No errors.
App\Entity\HotelHotelCategory No errors.
App\Entity\HotelHotelDestination No errors.
App\Entity\HotelConcept No errors.
App\Entity\HotelHotelRoom No errors.
App\Entity\LandmarksHotelHotel No errors.
App\Entity\AvailableHotelRoomPrice
  • The association App\Entity\AvailableHotelRoomPrice#hotelProvider refers to the inverse side field App\Entity\HotelProvider#availableHotelRoomPrices which does not exist.
App\Entity\HotelRoomProvider No errors.
App\Entity\HotelRoomFeatsheet No errors.
App\Entity\HotelRoomImage No errors.
App\Entity\HotelTranslation No errors.
App\Entity\HotelCommission No errors.
App\Entity\TourDay No errors.
App\Entity\TourPrice No errors.
App\Entity\TourExtraService No errors.
App\Entity\TourNotes No errors.
App\Entity\TourProvider No errors.
App\Entity\ReservationTour No errors.
App\Entity\DiscountTour No errors.
App\Entity\TourType No errors.
App\Entity\Airline
  • The association App\Entity\Airline#tourPrices refers to the owning side field App\Entity\TourPrice#firstFlightAirline which does not exist.
App\Entity\Airport
  • The association App\Entity\Airport#tourPrices refers to the owning side field App\Entity\TourPrice#firstFlightOrigin which does not exist.
App\Entity\TourSuppliers No errors.
App\Entity\TourTranslation No errors.
App\Entity\TourCategory
  • The field App\Entity\TourCategory#seoPage is on the inverse side of a bi-directional relationship, but the specified mappedBy association on the target-entity App\Entity\SeoPage#tour_category does not contain the required 'inversedBy="seoPage"' attribute.
  • The association App\Entity\TourCategory#toursDefault refers to the owning side field App\Entity\Tour#default_category which does not exist.
  • The field App\Entity\TourCategory#tourTourCategories is on the inverse side of a bi-directional relationship, but the specified mappedBy association on the target-entity App\Entity\TourTourCategory#tourCategory does not contain the required 'inversedBy="tourTourCategories"' attribute.
App\Entity\TourTourCategory No errors.
App\Entity\AgencyProduct No errors.
App\Entity\Transfer No errors.
App\Entity\ReservationTransfer No errors.
App\Entity\DiscountHotelDestination No errors.
App\Entity\HotelCategory
  • The association App\Entity\HotelCategory#hotels refers to the inverse side field App\Entity\Hotel#hotel_category which does not exist.
  • The field App\Entity\HotelCategory#hotelHotelCategories is on the inverse side of a bi-directional relationship, but the specified mappedBy association on the target-entity App\Entity\HotelHotelCategory#hotel_category does not contain the required 'inversedBy="hotelHotelCategories"' attribute.
  • The mappings App\Entity\HotelCategory#coverImages and App\Entity\Image#coverImageHotelCategory are inconsistent with each other.
App\Entity\LandmarksHotelDestination No errors.
App\Entity\HotelDestinationTranslation No errors.
App\Entity\DiscountTourDestination No errors.
App\Entity\TourDestinationTranslation No errors.
App\Entity\LandmarksTranslation No errors.
App\Entity\BankAccountTranslation No errors.
App\Entity\SeoMenu No errors.
App\Entity\SeoMenuCategoryTranslation No errors.
App\Entity\PuzzleReservationForwarding No errors.
App\Entity\Payment
  • The mappings App\Entity\Payment#transactions and App\Entity\PaymentTransactions#payment are inconsistent with each other.
App\Entity\ReservationPayment No errors.
App\Entity\ReservationPax No errors.
App\Entity\ReservationTourExtra No errors.
App\Entity\ReservationFlight No errors.
App\Entity\ReservationInvoice
  • The association App\Entity\ReservationInvoice#reservation refers to the inverse side field App\Entity\Reservation#reservationInvoice which does not exist.
App\Entity\DiscountCoupons No errors.
App\Entity\Review
  • The association App\Entity\Review#reviewAttribute refers to the inverse side field App\Entity\ReviewAttribute#review which does not exist.
App\Entity\HotelProfit No errors.
App\Entity\CurrencyRate
  • The mappings App\Entity\CurrencyRate#yes and App\Entity\Reservation#currencyRate are inconsistent with each other.
  • The association App\Entity\CurrencyRate#reservations refers to the owning side field App\Entity\Reservation#currancyRate which does not exist.
  • The mappings App\Entity\CurrencyRate#reservationHotelExtras and App\Entity\ReservationHotelExtra#currency_rate are inconsistent with each other.
App\Entity\ReservationLogo No errors.
App\Entity\ReservationConversion No errors.
App\Entity\ReservationDayPrice No errors.
App\Entity\ReservationHotelExtra
  • The association App\Entity\ReservationHotelExtra#currency_rate refers to the inverse side field App\Entity\CurrencyRate#reservationHotelsExtras which does not exist.
App\Entity\HotelMinuteDealsTranslation No errors.
App\Entity\MarketingCampaignTranslation No errors.
App\Entity\PaymentPartialSettingTranslation No errors.
App\Entity\PaymentPartial No errors.
App\Entity\BannerAreaTranslation No errors.
App\Entity\RequestHistory No errors.
App\Entity\SeoPageSitesTranslation No errors.
App\Entity\HotelSiteTranslation No errors.
App\Entity\TourSiteTranslation No errors.
App\Entity\HotelDestinationSiteTranslation No errors.
App\Entity\HotelCategorySiteTranslation No errors.
App\Entity\TourDestinationSiteTranslation No errors.
App\Entity\Pos No errors.
App\Entity\DiscountHotelCategory No errors.
App\Entity\DiscountTourCategory No errors.
App\Entity\DiscountTourType No errors.
App\Entity\DiscountTranslation No errors.