Download  |  Search  |  Log in  |  FAQ  |  Memberlist  |  Online  |  TYPO3.org Developer Resource
Home » Installation & Updates » Windows » 3.x
Post new topic   Reply to topic Page 1 of 1 [2 Posts] Installation problem.
Author Message
Sakki



Joined: 18 Jan 2006
Posts: 2

PostPosted: 18 Jan 2006 - 12:44 am    Post subject:  Installation problem.
Subject description: Error in loadcta()
Reply with quote

I downloaded the quickstart package and then uploaded it to my space on www.brinkster.com. (Microsoft IIS 6 PHP 4.3 MySQL 4) After going throught the setup wizard I was able to see most of the FE, but the BE is completely unusable.

The problem seems to be either the loadcta function or the functions calling it. I get a lot of messages like the following:

Warning: loadtca(//premfs6/sites/premium5/sakki/webroot/typo3conf///premfs6/sites/premium5/sakki/webroot/typo3/sysext/cms/tbl_tt_content.php): failed to open stream: No such file or directory in //premfs6\sites\premium5\sakki\webroot\typo3\t3lib\class.t3lib_div.php on line 3269

See also:
www.sakki.net/index.php
Try writing to the guestbook.


Does anyone know how to solve this?[/b]
Back to top
View user's profile Send private message
Sakki



Joined: 18 Jan 2006
Posts: 2

PostPosted: 18 Jan 2006 - 10:09 am    Post subject: Questionable solution Reply with quote

Well, I found a solution, but it seems questionable to me. Especially since i am completely new to php.

I slightly modified the loadTCA function:


function loadTCA($table) {
global $TCA,$LANG_GENERAL_LABELS;
if (isset($TCA[$table]) && !is_array($TCA[$table]['columns']) && $TCA[$table]['ctrl']['dynamicConfigFile']) {
if (!strcmp(substr($TCA[$table]['ctrl']['dynamicConfigFile'],0,6),'T3LIB:')) {
include(PATH_t3lib.'stddb/'.substr($TCA[$table]['ctrl']['dynamicConfigFile'],6));
} elseif (t3lib_div::isAbsPath($TCA[$table]['ctrl']['dynamicConfigFile']) && @is_file($TCA[$table]['ctrl']['dynamicConfigFile'])) { // Absolute path...
include($TCA[$table]['ctrl']['dynamicConfigFile']);
//} else include(PATH_typo3conf.$TCA[$table]['ctrl']['dynamicConfigFile']);
} else include($TCA[$table]['ctrl']['dynamicConfigFile']);
}
}

Any comments?
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic Page 1 of 1 [2 Posts] View previous topic :: View next topic
Home » Installation & Updates » Windows » 3.x
Jump to:  

You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum