Project

General

Profile

Actions

Bug #15551

closed

dummy-package misses some typo3temp directories

Added by Axel Jindra over 18 years ago. Updated over 17 years ago.

Status:
Closed
Priority:
Should have
Category:
Install Tool
Target version:
-
Start date:
2006-02-01
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
4.0
PHP Version:
4
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

Upon installation of the dummy-4.0b2-package Typo3 complains about some missing paths within the typo3temp directory.

(issue imported from #M2462)


Files

installdirectories.gif (32.5 KB) installdirectories.gif Administrator Admin, 2006-02-18 13:55
installdirectoriesAfterworking.gif (23 KB) installdirectoriesAfterworking.gif Administrator Admin, 2006-02-18 13:56

Related issues 4 (0 open4 closed)

Related to TYPO3 Core - Bug #16420: Install Tool does not add all needed folders (e.g. typo3temp/pics)ClosedMichael Stucki2006-08-01

Actions
Has duplicate TYPO3 Core - Bug #15814: typo3temp/temp/ directory does not existClosedMichael Stucki2006-03-13

Actions
Has duplicate TYPO3 Core - Bug #16000: fresh rc3 installation misses subdirectory of typo3tempClosed2006-04-06

Actions
Has duplicate TYPO3 Core - Bug #15636: Install Tool doesn't create all required folders in "typo3temp"ClosedMichael Stucki2006-04-07

Actions
Actions #1

Updated by old_gaumondp about 18 years ago

The files uploaded are from the same installation of 4.0b3 under Windows+Apache 2.

installdirectories.gif : Initial screen.
installdirectoriesAfterworking.gif : after working in the BE.

So it looks like some of the directories are created after working a bit with T3 but the initial installation at least should had created those OR change the message as a warning like "Those directories don't exist yet but will be created later on while working on your installation".

Actions #2

Updated by Franz Holzinger about 18 years ago

see also 0002638: typo3temp/pics not writable

Actions #3

Updated by Martin Kutschker about 18 years ago

typo3temp/temp/
typo3temp/llxml/
typo3temp/cs/
typo3temp/GB/

Actions #5

Updated by Allan Jacobsen about 18 years ago

The problem is still in 4.0 final, but this patch could be added to class.tx_install.php:
@ -1714,6 +1714,9 @
foreach ($checkWrite as $relpath => $descr) {
// Check typo3temp/
$general_message = $descr0;
+ if (!@is_dir(PATH_site.$relpath)) { // if the directory is missing, just try to make it
+ @mkdir(PATH_site.$relpath);
+ }
if (!@is_dir(PATH_site.$relpath)) {
if ($descr1) { // required...
$this->message($ext, $relpath.' directory does not exist','

Actions #6

Updated by Allan Jacobsen about 18 years ago

I have been using the patch I send to the list
4 or 5 times now and it seems to work fine.

Actions #7

Updated by Michael Stucki almost 18 years ago

Fixed in TYPO3 4.0.1

Actions

Also available in: Atom PDF