---
title: "Deprecation: #64922 - Deprecated entry points"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:deprecation-64922"
source: "Changelog/7.1/Deprecation-64922-DeprecatedEntryPoints.rst"
modified: "2026-09-14T09:47:36+00:00"
---

# Deprecation: #64922 - Deprecated entry points

See [forge#64922](https://forge.typo3.org/issues/64922)

## Description

The following entry points have been marked as deprecated:

-   typo3/tce_file.php
-   typo3/move_el.php
-   typo3/tce_db.php
-   typo3/login_frameset.php
-   typo3/sysext/cms/layout/db_new_content_el.php
-   typo3/sysext/cms/layout/db_layout.php

## Impact

Using one of the entry points in a backend module will throw a deprecation message.

## Migration

Use `TYPO3CMSBackendUtilityBackendUtility::getModuleUrl()` instead with the according module name.

typo3/tce_file.php
`TYPO3CMSBackendUtilityBackendUtility::getModuleUrl('tce_file')`

typo3/move_el.php
`TYPO3CMSBackendUtilityBackendUtility::getModuleUrl('move_element')`

typo3/tce_db.php
`TYPO3CMSBackendUtilityBackendUtility::getModuleUrl('tce_db')`

typo3/login_frameset.php
`TYPO3CMSBackendUtilityBackendUtility::getModuleUrl('login_frameset')`
