typo3

How to automatically reload TYPO3 calendar from external ics

Hi I'm using the calendar base extension (cal) for displaying my calendar in a TYPO3 website. I configured an external calendar and it imports all events correctly. How can I automatically reload the events from this external ics-calendar? thanks! ...

TYPO3: Use TCA.php to build Frontend Forms?

Hi! I'm searching for a solution, to build a frontend form from the TCA.php of my TYPO3 extension. Is there any way, to select TCA.php values, from my extension Class? I want to build a select-element with values of the TCA.php file. Would be amazing, if someone could give me some advice :) ...

Typo3 sitemap with images?

How can my Sitemap content element include images? ...

Typo3 extensions and symlinks

Can I create a symlink to the local extension from aonther project folder? I have a common local-server and i need to implement same extension on all local project-installations. I tried to put the symlink, but some times i do not get expected output. I get it only after clearing the cache of that perticular project. ...

Import RSS feed into a Typo3 template

Hi, I'm a total beginner with Typo3 and would like to show a RSS feed in a Typo3 template using typoscript. And I have no idea how to do this ! Is there any way to do this quite easily ? Calling an external PHP script maybe ? Thx ! ...

Typo3 produces wrong moved location

Hi there, we are running a typo3 host with realurl and typo3 version 4.4.0 - now something strange happens, if a page isn't found typo3 throws a 302 (moved) - which seems the normal behaviour of typo3 - but the location for the moved document isn't my domain something like this is produced http://otherdomain.com/servlet/domain/myrealdo...

URL not found error at my localhost setup of TYPO3 website.

I have setup TYPO3 successfully at my localserver. ANd having problem while clicking on any menu item and its showing url not found on server. While if i write url by myself in browser it shows the page, but just having problem in redirection by clicking mouse on that page item at frontend website page. ...

Typo3: get a javascript included by "headerData" to load before one included by "includeJS"

Hi, I'm loading JQuery into my T3 page by : page.headerData.10.value = <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"&gt;&lt;/script&gt; and I'm including my javascript like this : page.includeJS { file20 = fileadmin/templates/myjq.js } Point is, i need the JQuery to be l...

Generating correct URLs with tt_news, RealURL and RSS in TYPO3

I already asked this question in a German TYPO3 community but no one had any answer for me. I used the following two articles to get my tt_news with RealURL up and running and to later add a RSS feed for my tt_news articles: http://www.typo3forum.net/forum/suchmaschinenfreundliche-urls-seo/4785-rss-realurl.html I hope that even non Ge...

Serverdown when site is online

Hi, I have an typo3 site. When I access the site only (.htaccess allow only for my ip), then everything is working fine. When I get free the site for all users and bots, then the RAM is getting up to 100% used only for 30 seconds. Does any one has an idea where should I look? In this time in the Mysql are only opened connections many, b...

typo3 loops or something eats my RAM

Hi, I have an typo3 syte. And after a hack there is somenthing strange. The site is moved on a new server. But when I start the site, then anythig loops or does somethings, that my 4GB ram is used to 100% in 30 seconds. Does anyone has an indea where to look, or how to see where the problem is? Is there any software where I can install t...

How do I edit the actual content of this typo3 plugin object?

I've inherited a site using typo3 and I don't have that much experience with it. I have a page with a left column in the layout. In that left column is an object using an "insert" plugin. On the actual page is a graphic map. I'm just wondering how to edit the actual content that this is referring to. Here is a screenshot: Here it...

(Dis)advantages between Typo3, Joomla, Drupal and Wordpress

I'm about to switch from manual programming to using a CMS like the above ones. So my concern is, which one is the "best"...I know, the question which is best ist just very subjective, but maybe you can give me objective reasons for your oppinion. Maybe I just have to tell something about the projects I'm about to realise in those CMS: ...

File doesn't show up in TYPO3 Fileadmin

Hey, is TYPO3 doing some indexing of the filesystem into database? We try to add a video to our page here, but video isn't selecable from the file window altough its put into the right directory. The Fileadmin says "9 records found" in the folder and is displaying only 7 Files, because someone might have deleted two of the files out of t...

Typo3 references

Hi, I'm working recently on many Typo3 Projects and I'd like to have a good tutorial/reference to work my way up. I'm looking for something like Agile Web Development with Rails but for Typo3 if you like. The documentation of Typo3 is good but not incredible so I was wondering if there was a better option out there. ...

typo3 menu and article issue

Hi all I ve created a new menu item with a text content . Also i changed one menu position . But both these things not affected in front end . if i call page by calling directly(siteurl/index.php?id=26) it showing the content but no menu. Please help me to find the solution. ...

How can I get rid of "No XCLASS inclusion code found in file 'pi1/class.tx_xxxxx_pi1.php''"?

Typo3 - Question: In the extensionmanager when you click on "Information" there often is a (red) error which reads like this: "No XCLASS inclusion code found in file xxxxx". Especially when developing an extension I am looking for a way to fix this this. Any ideas? ...

typo3 problem with content templates rendering

Hi, I've got a strange problem connected with content rendering. I use following code to grab the content: lib.otherContent = CONTENT lib.otherContent { table = tt_content select { pidInList = this orderBy = sorting where = colPos=0 languageField = sys_language_uid } renderObj = COA renderObj { 10 = TEXT...

Typo3: How to count page impressions on every page with an extension

I need to count the page impressions of every page on a typo3 site into the db. So I think I need an extension which is called on every page impression and increase a column 'impressions' in the db of the specific page. I'm new to typo3 and new to extension development as well. Is there a way to include an extbase-extension on every pa...

extbase mapping to an existing table doesn't work

I've extended the pages table and now I want to use some of the data in a domain object called "Tags". So I tried the following in the /Configuration/TypoScript/setup.txt: plugin.myextension.persistence.classes.Tx_myextension_Domain_Model_Tag { mapping { tableName = pages recordType = Tx_myextension_Domain_Model_Tag ...