---
title: "Breaking: #63296 - Deprecated typo3/ files removed"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-63296"
source: "Changelog/7.1/Breaking-63296-Removed-Files.rst"
typo3-version: "7.1"
typo3-major: 7
type: "breaking"
issue: 63296
forge: "https://forge.typo3.org/issues/63296"
tags: ["PHP-API", "Backend"]
rendered: "2026-09-19T12:12:50+00:00"
---

# Breaking: #63296 - Deprecated typo3/ files removed {#breaking-63296}

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

## Description {#description}

The following script entry points have been removed without substitution:

-   typo3/file_edit.php
-   typo3/file_newfolder.php
-   typo3/file_rename.php
-   typo3/file_upload.php
-   typo3/show_rechis.php
-   typo3/listframe_loader.php

The corresponding ListFrameLoaderController class is now marked as deprecated.

## Impact {#impact}

Any script pointing to one of these file resources will trigger a 404 server response.

## Affected installations {#affected-installations}

An extension needs to be adapted in the unlikely case that it uses a link to any of the files.

## Migration {#migration}

The functionality of these scripts (except listframe_loader.php which is not used at all any more) have been moved to "modules".
Use BackendUtility::getModuleUrl() to link to them. The module name is identical to the file name without the ".php" suffix.

e.g. BackendUtility::getModuleUrl('file_edit');
