From cryangel at gmail.com Sat Sep 1 12:23:28 2007 From: cryangel at gmail.com (Cray Flatline) Date: Sat, 01 Sep 2007 13:23:28 +0300 Subject: [TYPO3] template and Javascript problem Message-ID: I have some problem with javascript in tempate. I have such button code in my template: ========================= ========================= But when I look in the browser's "View source code..." I see really strange thing: ========================= ========================= So it changes " to " and writes in the end. I can't understand what I have to do. Can anybody help me with it? Any suggestions? Or I need to forget about it and insert it with TS? P.s.: I'm using Templavoila. -- W BR, Cray Flatline From tapio.markula at xetpoint.fi Sat Sep 1 12:53:06 2007 From: tapio.markula at xetpoint.fi (Tapio Markula) Date: Sat, 01 Sep 2007 13:53:06 +0300 Subject: [TYPO3] template and Javascript problem In-Reply-To: References: Message-ID: Cray Flatline kirjoitti: > > I have some problem with javascript in tempate. I have such button code > in my template: > > ========================= > > ========================= > > > But when I look in the browser's "View source code..." I see really > strange thing: > > ========================= > > > > ========================= > > So it changes " to " and writes in the end. I can't understand > what I have to do. Can anybody help me with it? Any suggestions? Or I > need to forget about it and insert it with TS? > > P.s.: I'm using Templavoila. > > set that using some TS Template object - and take that off from from the actual HTML-template From franz at fholzinger.com Sat Sep 1 14:05:34 2007 From: franz at fholzinger.com (Franz Holzinger) Date: Sat, 01 Sep 2007 14:05:34 +0200 Subject: [TYPO3] template and Javascript problem In-Reply-To: References: Message-ID: Hello Cray, > > I have some problem with javascript in tempate. I have such button code > in my template: > > > ========================= > > > But when I look in the browser's "View source code..." I see really > strange thing: > > ========================= > > > > ========================= > > So it changes " to " and writes in the end. I can't understand > what I have to do. Can anybody help me with it? Any suggestions? Or I > need to forget about it and insert it with TS? In your example you did not escape your quotes. document.write.(" opens a quote. But you cannot use the same " inside of it! This must be escaped. \" There is a similar bug of TYPO3 since 2005. http://bugs.typo3.org/view.php?id=1477 Please test these patches. I hope this will be fixed in TYPO3 4.2. - Franz From jsegars at alumni.rice.edu Sat Sep 1 16:20:06 2007 From: jsegars at alumni.rice.edu (Jeff Segars) Date: Sat, 1 Sep 2007 14:20:06 +0000 (UTC) Subject: [TYPO3] wec_map directions References: Message-ID: Robert, Did you add the static Typoscript template? See THanks, Jeff From dmitry at typo3.org Sat Sep 1 19:07:03 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Sat, 01 Sep 2007 20:07:03 +0300 Subject: [TYPO3] Flashfile in templavoila - local processing xml for the TO? In-Reply-To: References: Message-ID: Warning: crosspost with TV list. Sebastian Sch?n wrote: > in the local processing xml for the TO (input field image) I ?ve the > following TS- Code: -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From info at bednarik.org Sat Sep 1 21:02:23 2007 From: info at bednarik.org (Jan Bednarik) Date: Sat, 01 Sep 2007 21:02:23 +0200 Subject: [TYPO3] Value from extension to TypoScript Message-ID: Hey, is it possible to transfer a value from extension to TypoScript? If I have in ext sth. like $GLOBALS['FOO']['boo'] = 'value'; and in TS: sth = TEXT sth.data = global : FOO|boo it doesn't work, because TEXT is rendered before the extension, that means, the value is set after it's rendered by TEXT element. Any ideas on how to make this work? Thanks -- Jan Bednarik www.bednarik.org - web about Typo3 in czech From bedlamhotel at gmail.com Sat Sep 1 21:08:13 2007 From: bedlamhotel at gmail.com (Christopher Torgalson) Date: Sat, 1 Sep 2007 12:08:13 -0700 Subject: [TYPO3] Value from extension to TypoScript In-Reply-To: References: Message-ID: Hi, On 9/1/07, Jan Bednarik wrote: > Hey, > > is it possible to transfer a value from extension to TypoScript? > > If I have in ext sth. like > > $GLOBALS['FOO']['boo'] = 'value'; > > and in TS: > > sth = TEXT > sth.data = global : FOO|boo > > it doesn't work, because TEXT is rendered before the extension, that > means, the value is set after it's rendered by TEXT element. > > Any ideas on how to make this work? You can use LOAD_REGISTER [1] from inside the extension, and access that register from TS--I've done similar things in extensions. -- Christopher Torgalson http://www.typo3apprentice.com/ [1] http://typo3.org/documentation/document-library/references/doc_core_tsref/4.1.0/view/8/18/ From info at bednarik.org Sat Sep 1 21:13:41 2007 From: info at bednarik.org (Jan Bednarik) Date: Sat, 01 Sep 2007 21:13:41 +0200 Subject: [TYPO3] Value from extension to TypoScript In-Reply-To: References: Message-ID: > You can use LOAD_REGISTER [1] from inside the extension, and access > that register from TS--I've done similar things in extensions. But if the value is rendered before the extension, than the register is loaded after the value. I mean COA 10 = value 20 = extension then when rendering value, the register, which is loaded inside the extension, will be empty, right? -- Jan Bednarik www.bednarik.org - web about Typo3 in czech From cryangel at gmail.com Sat Sep 1 21:45:01 2007 From: cryangel at gmail.com (Cray Flatline) Date: Sat, 01 Sep 2007 22:45:01 +0300 Subject: [TYPO3] template and Javascript problem In-Reply-To: References: Message-ID: Tapio Markula wrote: Can you give some direction, which way will be best to it? I'm still newbie to Typo3 (: > Cray Flatline kirjoitti: >> >> I have some problem with javascript in tempate. I have such button >> code in my template: >> >> ========================= >> >> ========================= >> >> >> But when I look in the browser's "View source code..." I see really >> strange thing: >> >> ========================= >> >> >> >> ========================= >> >> So it changes " to " and writes in the end. I can't >> understand what I have to do. Can anybody help me with it? Any >> suggestions? Or I need to forget about it and insert it with TS? >> >> P.s.: I'm using Templavoila. >> >> > set that using some TS Template object - and take that off from from the > actual HTML-template -- W BR, Cray Flatline From typo3 at rvt.dds.nl Sun Sep 2 04:44:51 2007 From: typo3 at rvt.dds.nl (ries van Twisk) Date: Sat, 1 Sep 2007 21:44:51 -0500 Subject: [TYPO3] Getting all users in a number of groups (MM possible??) Message-ID: Hey Guys, I need to find all users in one group, or in a number of groups. Now normally I don't mind to do it 'traditionally TYPO3' but we talk on quite a number of users (+10.000 needs to perform ok). of course we do pose restrictions on the number of records to be retrieved, it's just that the table is large... But I don't like the idea of the comma separated list here for the number of users. Now before I make this all MM aware, did anybody do some performance measurements on getting data out of a fair large enough table using the IN SQL clause where the table size is close (75-90%) of the number of items in my IN clause? Preferred tested on +10.000 records. Ries From dmitry at typo3.org Sun Sep 2 09:26:18 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Sun, 02 Sep 2007 10:26:18 +0300 Subject: [TYPO3] template and Javascript problem In-Reply-To: References: Message-ID: Franz Holzinger wrote: > In your example you did not escape your quotes. Hm, I ran script through jslint and it does not complain... So syntax should be ok. May be he uses tidy or xhtml converion, which corrupts javascript? I think moving this JS to an external file may help. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From tapio.markula at xetpoint.fi Sun Sep 2 09:55:33 2007 From: tapio.markula at xetpoint.fi (Tapio Markula) Date: Sun, 02 Sep 2007 10:55:33 +0300 Subject: [TYPO3] template and Javascript problem In-Reply-To: References: Message-ID: Cray Flatline kirjoitti: > > > Tapio Markula wrote: > > Can you give some direction, which way will be best to it? I'm still > newbie to Typo3 (: page.headerData.xx= TEXT page.headerData.xx.value( // put here desired code ) From zed.leppelin at mal-null.de Sun Sep 2 11:47:18 2007 From: zed.leppelin at mal-null.de (zed_leppelin) Date: Sun, 2 Sep 2007 02:47:18 -0700 (PDT) Subject: [TYPO3] tcdirectmail: no content in emailbody Message-ID: I have a problem with tcdirectmail, which i could not solve with the help of different user groups. I have no problems with the extension by itself. It works. The transmission of the newsletter is correct, but the mail arrives without content. If i look at "mail validity" i found following two messages: Warning: file_get_contents() [function.file-get-contents.html]: URL file-access is disabled in the server configuration in /home/pafschwe/public_html/typo3/typo3conf/ext/tcdirectmail/mod1/index.php on line 385 Warning: file_get_contents(http://www.paf-schweiz.ch/index.php?id=102&no_cache=1) [function.file-get-contents.html]: failed to open stream: no suitable wrapper could be found in /home/pafschwe/public_html/typo3/typo3conf/ext/tcdirectmail/mod1/index.php on line 385 Does anybody know what is going wrong here? Could this be a problem with RealURL? Thank you for your help. Zed -- View this message in context: http://www.nabble.com/tcdirectmail%3A-no-content-in-emailbody-tf4359126.html#a12423276 Sent from the TYPO3 English mailing list archive at Nabble.com. From typo3.vincnet at gmail.com Sun Sep 2 12:21:05 2007 From: typo3.vincnet at gmail.com (Vincent Mans) Date: Sun, 2 Sep 2007 12:21:05 +0200 Subject: [TYPO3] itemsProcFunc problem In-Reply-To: References: Message-ID: It's partly solved, thanks to gupf http://www.typo3.net/index.php?id=13&action=list_post&tid=64410, and see code listing below. I manage now to fetch string values from the foreign table to this table. It works for "maxitems" => 1 and for "maxitems" => more than 1. This table gets filled nicely, and if more than 1, values are comma separated. However: - in case of 1, the selected item is nicely marked in the BE select box - in case of more than 1, nothing is returned to the BE selected items field, so from there I see no selection once the record is saved I know the maxitems definition (1 or more than 1) decides which selectbox is used, and that it's basic handled differently. Does anyone have an idea to solve this last detail? I tried several things already, no results. Of course I try further. Config part in the TCA: "config" => Array ( "type" => "select", "size" => 9, "minitems" => 0, "maxitems" => 2, // works 100% only with => 1 "itemsProcFunc" => "tx_ttnews_itemsProcFunc->user_select", "itemsProcFunc_config" => array( "table" => "tt_news_xsign", "sortField" => "title", "indexField" => "title", ), "allowNonIdValues" => 1, In the class: function user_select($params) { global $TCA, $TYPO3_DB, $LANG; $items = $params['items']; $config = $params['config']; $table = $config['itemsProcFunc_config']['table']; $sortField = $config['itemsProcFunc_config']['sortField']; $indexField = $config['itemsProcFunc_config']['indexField']; $query = 'SELECT uid, '.$sortField.', '.$indexField.' FROM '.$table.' ORDER BY '.$sortField.t3lib_pageSelect::enableFields($table); $res = mysql(TYPO3_db,$query); while($row=$GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)) { $params['items'][$row['uid']]=array($row[$sortField],$row[$indexField]); } } From olivier.dobberkau at dkd.de Sun Sep 2 12:39:57 2007 From: olivier.dobberkau at dkd.de (Olivier Dobberkau) Date: Sun, 02 Sep 2007 12:39:57 +0200 Subject: [TYPO3] Getting all users in a number of groups (MM possible??) In-Reply-To: References: Message-ID: ries van Twisk schrieb: > Hey Guys, > > I need to find all users in one group, or in a number of groups. > Now normally I don't mind to do it 'traditionally TYPO3' > but we talk on quite a number of users (+10.000 needs to perform ok). > > of course we do pose restrictions on the number of records to be retrieved, > it's just that the table is large... > > But I don't like the idea of the comma separated list here for the > number of users. > > Now before I make this all MM aware, did anybody do some > performance measurements on getting data out of a fair large > enough table using the IN SQL clause where the table size > is close (75-90%) of the number of items in my IN clause? > Preferred tested on +10.000 records. > > Ries > > Hi Ries. Have you used tc_beuser yet? Olivier From typo3 at rvt.dds.nl Sun Sep 2 15:05:16 2007 From: typo3 at rvt.dds.nl (ries van Twisk) Date: Sun, 2 Sep 2007 08:05:16 -0500 Subject: [TYPO3] Getting all users in a number of groups (MM possible??) In-Reply-To: References: Message-ID: Jeu Olivier, the user manual is in german but from what I understand is that the extension is about user management, that is currently 'under control'. I am working on a little FE plugin that needs to do the below item, and the more users I have... the bigger the SQL gets... Ries On Sep 2, 2007, at 5:39 AM, Olivier Dobberkau wrote: > ries van Twisk schrieb: >> Hey Guys, >> >> I need to find all users in one group, or in a number of groups. >> Now normally I don't mind to do it 'traditionally TYPO3' >> but we talk on quite a number of users (+10.000 needs to perform ok). >> >> of course we do pose restrictions on the number of records to be >> retrieved, >> it's just that the table is large... >> >> But I don't like the idea of the comma separated list here for the >> number of users. >> >> Now before I make this all MM aware, did anybody do some >> performance measurements on getting data out of a fair large >> enough table using the IN SQL clause where the table size >> is close (75-90%) of the number of items in my IN clause? >> Preferred tested on +10.000 records. >> >> Ries >> >> > > Hi Ries. > > Have you used tc_beuser yet? > > Olivier > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english From olivier.dobberkau at dkd.de Sun Sep 2 19:39:41 2007 From: olivier.dobberkau at dkd.de (Olivier Dobberkau) Date: Sun, 02 Sep 2007 19:39:41 +0200 Subject: [TYPO3] Getting all users in a number of groups (MM possible??) In-Reply-To: References: Message-ID: ries van Twisk schrieb: > Jeu Olivier, > > the user manual is in german but from > what I understand is that the extension is about user management, > that is currently 'under control'. > > > I am working on a little FE plugin that needs to do > the below item, and the more users I have... the bigger the SQL gets... > > > Ries OK. Now I understand. Olivier From kevin at dauphin-mm.nl Sun Sep 2 23:52:47 2007 From: kevin at dauphin-mm.nl (Kevin Renskers) Date: Sun, 02 Sep 2007 23:52:47 +0200 Subject: [TYPO3] Value from extension to TypoScript In-Reply-To: References: Message-ID: Jan Bednarik wrote: >> You can use LOAD_REGISTER [1] from inside the extension, and access >> that register from TS--I've done similar things in extensions. > > But if the value is rendered before the extension, than the register is > loaded after the value. I mean > > COA > 10 = value > 20 = extension > > then when rendering value, the register, which is loaded inside the > extension, will be empty, right? > Completely true, so make sure the extension is loaded before using the register value. Kevin From elmar07 at googlemail.com Mon Sep 3 00:08:28 2007 From: elmar07 at googlemail.com (Elmar Hinz) Date: Mon, 03 Sep 2007 00:08:28 +0200 Subject: [TYPO3] Value from extension to TypoScript References: Message-ID: Jan Bednarik wrote: > Hey, > > is it possible to transfer a value from extension to TypoScript? > > If I have in ext sth. like > > $GLOBALS['FOO']['boo'] = 'value'; > > and in TS: > > sth = TEXT > sth.data = global : FOO|boo > > it doesn't work, because TEXT is rendered before the extension, that > means, the value is set after it's rendered by TEXT element. > > Any ideas on how to make this work? > > Thanks > Hi Jan, the file ext_localconf.php is executed before the TS tree is rendered. If possible place it there. If that is not possible and you have to set the value within a plugin script: The plugins are triggert directly from the rendered TS. Here it depends on the order in which the objects occur in TS/in the page. If the order is wrong you need to find a way to change the order. If the output needs a different order from inclusion, you can store the output in a global variable for the point where the output is needed. I call this for myself a 'pipe' or a 'tunnel'. You can use an additional plugin that is nothing else than the output of the tunnel. Regards Elmar From cryangel at gmail.com Mon Sep 3 02:59:45 2007 From: cryangel at gmail.com (Cray Flatline) Date: Mon, 03 Sep 2007 03:59:45 +0300 Subject: [TYPO3] URGENT: no rendering definition error Message-ID: I have two domains installed on the one typo3 installation. Both of sites multilangual. I'm using Templavoila. Problem appeared with sr_language_menu. In the first domain (inter-faceskazakhstan.com) I created in the it's own General storage sysfolder record with sr_language_menu. and inserted it with lib.langsel = COA lib.langsel { 10 = RECORDS 10.tables = tt_content 10.source = 7 } and it works well. After it I created new domain (actionartsmanagement.com) and make it working. In the it's own (another from first one) General storage sysfolder I created same record but with another languages. and inserted it with lib.langsel = COA lib.langsel { 10 = RECORDS 10.tables = tt_content 10.source = 7 } but it gives me ERROR: Content Element type "sr_language_menu_pi1" has no rendering definition! If i change records' content from sr_language_menu to something else (for example text or text with image) - all works and shows it correctly. I tried everything, tried to find any solution in the google. Please help me somebody, because in a couple of days I have deadline. ((: -- W BR, Cray Flatline From bnitaa at gmail.com Mon Sep 3 03:12:14 2007 From: bnitaa at gmail.com (Denise Jacobs) Date: Sun, 2 Sep 2007 21:12:14 -0400 Subject: [TYPO3] Looking for someone to implement a small Typo3 website by end of the month In-Reply-To: References: Message-ID: Hi All -- (cross-posted to English and US lists) I am new to the lists and Typo3. I have a vestigial freelance job from last year that I do not have the time nor desire to finish, but must finish for the client. I have decided to use Typo3 as the CMS because of the rich feature set, however, I really don't have the time to learn how to implement the website in the amount of time that I need to launch it. So, I am looking to outsource the development of the site. Here is the overview of where I am in the project and what I need. I will project manage it and oversee its completion. - small website of about 20 pages for a local social justice organization - needs to be built with standards-compliant XHTML and CSS (NO tables! must use a div-based layout) - homepage needs to be launched by September 10th (hence my asking for help!) - completed so far: Information Architecture and Wireframes for the major pages. Preliminary design done but not signed off on by client. Skills needed: - strong knowledge of XHTML, CSS and javascript - typo3 experience This would be a great project for anyone looking to build up their resume and get some practice doing a live site. As an FYI -- I currently am a PM at a company that produces another open-source CMS and used to do web dev and design, so I am familiar with what a CMS and how it works. I just don't have the time to do this project, that's all. :) Please contact me directly at: denise at denisejacobs.com. Please send me samples of previous work and avaibility. I will let you know how much the compensation is for this job. Feel free to forward! Thanks, Denise From typo3 at rvt.dds.nl Mon Sep 3 05:23:51 2007 From: typo3 at rvt.dds.nl (ries van Twisk) Date: Sun, 2 Sep 2007 22:23:51 -0500 Subject: [TYPO3] Looking for someone to implement a small Typo3 website by end of the month In-Reply-To: References: Message-ID: Hey Dennis, just out of curiosity, any info somewhere about the CMS you guys are building? Ries On Sep 2, 2007, at 8:12 PM, Denise Jacobs wrote: > Hi All -- > (cross-posted to English and US lists) > > I am new to the lists and Typo3. I have a vestigial freelance job > from last > year that I do not have the time nor desire to finish, but must > finish for > the client. I have decided to use Typo3 as the CMS because of the > rich > feature set, however, I really don't have the time to learn how to > implement > the website in the amount of time that I need to launch it. So, I am > looking to outsource the development of the site. > > Here is the overview of where I am in the project and what I need. > I will > project manage it and oversee its completion. > > - small website of about 20 pages for a local social justice > organization > - needs to be built with standards-compliant XHTML and CSS (NO > tables! must use a div-based layout) > - homepage needs to be launched by September 10th (hence my > asking for > help!) > - completed so far: Information Architecture and Wireframes for > the > major pages. Preliminary design done but not signed off on by > client. > > Skills needed: > > - strong knowledge of XHTML, CSS and javascript > - typo3 experience > > This would be a great project for anyone looking to build up their > resume > and get some practice doing a live site. > > As an FYI -- I currently am a PM at a company that produces another > open-source CMS and used to do web dev and design, so I am familiar > with > what a CMS and how it works. I just don't have the time to do this > project, > that's all. :) > > Please contact me directly at: denise at denisejacobs.com. Please > send me > samples of previous work and avaibility. I will let you know how > much the > compensation is for this job. > > Feel free to forward! > > Thanks, > Denise From c.coleman at rapidfyre.net Mon Sep 3 07:01:41 2007 From: c.coleman at rapidfyre.net (Charles Coleman) Date: Sun, 2 Sep 2007 22:01:41 -0700 Subject: [TYPO3] fe_groups crawler indexed_search In-Reply-To: References: Message-ID: I found this useful info in the Typo3 WIKI... http://wiki.typo3.org/index.php/Ext_crawler Also, the crawler documentation says you should be able to specify a list of ids in the userGroups var. This is very misleading. It would seem intuitive to be able to specify all the groups in this one line, such as: #set up a crawl for all users? NOPE. tx_crawler.crawlerCfg.paramSets.grps < tx_crawler.crawlerCfg.paramSets.test tx_crawler.crawlerCfg.paramSets.grps{ userGroups = 1,2,3,4,5,6,7,8 } One would assume that the crawler would index content for each group enabling any subset of those groups to search the content. This is not the case. One must specify a new tx_crawler.crawlerCfg.paramSets. object for each subset of groups. So if you have a user in groups 1,4,5 and another in groups 3,7,8 you would need to have this in your TSConfig (remember to add 0 and -2 i.e. any login!): #set up a crawl for users who have group id of 1,4,5 tx_crawler.crawlerCfg.paramSets.grp1 < tx_crawler.crawlerCfg.paramSets.test tx_crawler.crawlerCfg.paramSets.grp1{ userGroups = 0,-2,1,4,5 } #set up a crawl for users who have group id of 3,7,8 tx_crawler.crawlerCfg.paramSets.grp2 < tx_crawler.crawlerCfg.paramSets.test tx_crawler.crawlerCfg.paramSets.grp2{ userGroups = 0,-2,3,7,8 } "Tanja Pens" wrote in message news:mailman.1.1180947600.10613.typo3-english at lists.netfielders.de... > Hi, > > has anyone already used the crawler to reindex content with about 15 > fe_groups? Does it work? As I tested it still doesn't work. Do I have an > error in my configuration or is there an indexed_search problem? > > Configuration: > Typo 4.1.1 > all extensions I use are the newest in TER. > > My Crawler config: > tx_crawler.crawlerCfg.paramSets.all= &contentId=[_TABLE:tt_content] > tx_crawler.crawlerCfg.paramSets.all{ > cHash = 1 > procInstrFilter = tx_indexedsearch_index,tx_indexedsearch_reindex, > tx_indexedsearch_crawler > baseUrl = http:/// > userGroups = 3,0,-1,-2,2,4,5,6,7,8,9,10,11,13,16,17 > } > > Thanks for any help > > Tanja From rolli at iml.unibe.ch Mon Sep 3 08:49:38 2007 From: rolli at iml.unibe.ch (Michael Rolli) Date: Mon, 3 Sep 2007 08:49:38 +0200 Subject: [TYPO3] Problems with fe login when switching T3-4.0.4 -> T3-4.1.2 Message-ID: Hi list I'm confused and don't know where to start my debug journey because nothing seems to be an obvious or possible reason. I have a Typo3 Installation running Version 4.0.4. It's running smooth and stable. In the particular interest of fe-login I use newloginbox, sr_feuser_register and sv_login_redirect. Everything works so far. Now I wanted to update Typo3 to 4.1.2 because I have to use IRRE. So.. I got the typo3-4.1.2-sources, unpacked them, replaced the symlink (typo3_src -> /srv/libs/typo3_src-4.1.2) in the project folder, runned the installtool->update wizard, purged the typo3conf- cache (even with rm typo3cof/temp_CACHED*) and the FE cache. Result: No fe login possible anymore. Any l/p pair is denied though right. Switching back the symoblic link to Typo3-4.0.4 (typo3_src -> /srv/ libs/typo3_src-4.0.4) makes it work again without even purging any cache. :-) Has anybody any idea where to begin to search? Anybody a hint what could be the cause of this? Has anything changed about authentication which I have to consider in my configurations? I didn't read something in the release notes. Thanks for any help in solving this issue. Regards Michael From rolli at iml.unibe.ch Mon Sep 3 09:20:35 2007 From: rolli at iml.unibe.ch (Michael Rolli) Date: Mon, 3 Sep 2007 09:20:35 +0200 Subject: [TYPO3] Problems with fe login when switching T3-4.0.4 -> T3-4.1.2 In-Reply-To: References: Message-ID: > > Has anybody any idea where to begin to search? Anybody a hint what I did some lowlevel investigation in the authentication service and did a little echo orgy in the function authUser() :-) The result is very interesting: $user contains the correct database record of my feuser. $this->login contains the correct stuff entered in the form. compareUident() therefor returns true as expected and authUser() itself returns true to the caller (btw, who is the caller?). so, if authUser() returns true, why doesn't it work then? Regards, Michael From dmitry at typo3.org Mon Sep 3 10:00:15 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Mon, 03 Sep 2007 11:00:15 +0300 Subject: [TYPO3] URGENT: no rendering definition error In-Reply-To: References: Message-ID: Cray Flatline wrote: > lib.langsel = COA > lib.langsel { > 10 = RECORDS > 10.tables = tt_content > 10.source = 7 > } > > but it gives me > ERROR: Content Element type "sr_language_menu_pi1" has no rendering > definition! > > If i change records' content from sr_language_menu to something else > (for example text or text with image) - all works and shows it correctly. > > I tried everything, tried to find any solution in the google. Please > help me somebody, because in a couple of days I have deadline. ((: You did not include extension's template :) Go to Web>Template, Info/Modify there and "Edit the whole template record" there. Scroll to "Include static (from extensions)" and add it. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From hagelstein at shr.cc Mon Sep 3 10:47:27 2007 From: hagelstein at shr.cc (Nikolas Hagelstein) Date: Mon, 3 Sep 2007 10:47:27 +0200 Subject: [TYPO3] TYPOSCRIPT: database driven selector Message-ID: Hi there, I just created a DAM category selector and i wonder if there is a more elegant(pure TS) way to solve this issue. Especially the "SELECTED" part seems a little odd to me. ------- 10 = COA_INT 10 { stdWrap.dataWrap =
|


10 = CONTENT 10.wrap = 10.table = tx_dam_cat 10.select { pidInList = 66 orderBy = sorting andWhere = parent_id= andWhere.dataWrap = |6 } 10.renderObj =COA 10.renderObj { 10 = TEXT 10.value = | } } --------- Cheers, NIkolas From bas.vander.togt at efocus.nl Mon Sep 3 11:32:22 2007 From: bas.vander.togt at efocus.nl (Bas van der Togt) Date: Mon, 03 Sep 2007 11:32:22 +0200 Subject: [TYPO3] jsmenu problem with firstLabelGeneral and showActive Message-ID: Hello list, I have a problem with my jsmenu. The "firstLabelGeneral" is not working for level 2 and the "showActive" is not working at all. Am i doing something wrong or is this a bug? kind regards, Bas my TS: obj.shopmenu = HMENU obj.shopmenu { entryLevel = 1 special = directory special.value = 7 1 = JSMENU 1.levels = 2 1 { firstLabelGeneral = Choose your country wrap = |  showActive = true } 2 < .1 2 { firstLabelGeneral = Choose your region } } From webdesign at inbalanshasselt.nl Mon Sep 3 11:39:06 2007 From: webdesign at inbalanshasselt.nl (Bas Heutink) Date: Mon, 03 Sep 2007 11:39:06 +0200 Subject: [TYPO3] TCEMAIN.clearCacheCmd problem Message-ID: Hello list, I have a problem that when I add a tt_news item it is not displayed in the frontend. Now I read on the internet that this is a solution: TCEMAIN.clearCacheCmd = all But somehow the clear cache command does not work with me. Does anyone know why the clear cache command refuses to function? Regards, Bas From dmitry at typo3.org Mon Sep 3 11:41:59 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Mon, 03 Sep 2007 12:41:59 +0300 Subject: [TYPO3] TYPOSCRIPT: database driven selector In-Reply-To: References: Message-ID: Hi! Nikolas Hagelstein wrote: > I just created a DAM category selector and i wonder if there is a more > elegant(pure TS) way to solve this issue. > Especially the "SELECTED" part seems a little odd to me. > > stdWrap.dataWrap =
method="post">|


This one is bad. You should always use typolink to produce a link! Otherwise it looks to me like a pure TS :) -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From dmitry at typo3.org Mon Sep 3 11:47:33 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Mon, 03 Sep 2007 12:47:33 +0300 Subject: [TYPO3] TCEMAIN.clearCacheCmd problem In-Reply-To: References: Message-ID: Bas Heutink wrote: > I have a problem that when I add a tt_news item it is not displayed in > the frontend. > > Now I read on the internet that this is a solution: Why don't you read docs on typo3.org instead? :) > TCEMAIN.clearCacheCmd = all Put page ID (or several, sepated by commas) instead of "all". Surely you need not to flush the whole cache (not only pages but all!) if you want to clear only one or two pages... > But somehow the clear cache command does not work with me. > Does anyone know why the clear cache command refuses to function? Because it is restricted to (1) admins or (2) non-admins who has this function specially enabled. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From dmitry at typo3.org Mon Sep 3 11:48:22 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Mon, 03 Sep 2007 12:48:22 +0300 Subject: [TYPO3] TCEMAIN.clearCacheCmd problem In-Reply-To: References: Message-ID: Sorry, forgot the link. Dmitry Dulepov [typo3] wrote: > Why don't you read docs on typo3.org instead? :) http://typo3.org/documentation/document-library/references/doc_core_tsconfig/4.1.0/view/1/3/#id3540718 -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From cryangel at gmail.com Mon Sep 3 11:49:50 2007 From: cryangel at gmail.com (Cray Flatline) Date: Mon, 03 Sep 2007 12:49:50 +0300 Subject: [TYPO3] URGENT: no rendering definition error In-Reply-To: References: Message-ID: Dmitry Dulepov [typo3] ?????: I tried to look there already 2 or 3 times (((: But there is no any templates except css_styled_content, static_info_tables and tt_news > Cray Flatline wrote: >> lib.langsel = COA >> lib.langsel { >> 10 = RECORDS >> 10.tables = tt_content >> 10.source = 7 >> } >> >> but it gives me >> ERROR: Content Element type "sr_language_menu_pi1" has no rendering >> definition! >> >> If i change records' content from sr_language_menu to something else >> (for example text or text with image) - all works and shows it correctly. >> >> I tried everything, tried to find any solution in the google. Please >> help me somebody, because in a couple of days I have deadline. ((: > > You did not include extension's template :) Go to Web>Template, > Info/Modify there and "Edit the whole template record" there. Scroll to > "Include static (from extensions)" and add it. > -- W BR, Cray Flatline From hagelstein at shr.cc Mon Sep 3 11:55:17 2007 From: hagelstein at shr.cc (Nikolas Hagelstein) Date: Mon, 3 Sep 2007 11:55:17 +0200 Subject: [TYPO3] TYPOSCRIPT: database driven selector References: Message-ID: Dmitry Dulepov wrote: >> stdWrap.dataWrap =
> method="post">|


> > This one is bad. You should always use typolink to produce a link! Yes that was just a dirty hack actually it has been replaced by a typolink already. Bye, Nikolas From jeroen at roquin.nl Mon Sep 3 12:01:20 2007 From: jeroen at roquin.nl (Jeroen Visser) Date: Mon, 3 Sep 2007 12:01:20 +0200 Subject: [TYPO3] Problems with categories in tt_products Message-ID: Dear colleagues, In tt_products it is possible to generate a list with product categories and/or a selection of these categories. The page source shows the following info:
The problem is that no categories are displayed although they are added in the back end. The plugin also has the appropriate start point. And I have copied the template file of tt_products to mu own template folder which I have described in the constants. Does anyone has a idea of what I am missing here? The configuration that I use is TemplaVoila 1.1.0., Typo3 4.0.2. with tt_products 2.5.2. Thanks in advance for the reactions. Kind regards, Jeroen Visser From fsuter at cobweb.ch Mon Sep 3 12:11:20 2007 From: fsuter at cobweb.ch (Francois Suter) Date: Mon, 3 Sep 2007 12:11:20 +0200 Subject: [TYPO3] URGENT: no rendering definition error In-Reply-To: References: Message-ID: Hi, >>> lib.langsel = COA >>> lib.langsel { >>> 10 = RECORDS >>> 10.tables = tt_content >>> 10.source = 7 >>> } >>> >>> but it gives me >>> ERROR: Content Element type "sr_language_menu_pi1" has no rendering >>> definition! There's a much quicker way to include sr_language_menu in your page: lib.langsel = COA lib.langsel.10 < plugin.tx_plugin.tx_srlanguagemenu_pi1 lib.langsel.10 { ... (your parameters of sr_language_menu here) } HTH Fran?ois Suter Directeur technique ------------------------------------------------------------------------ ------------------------------------------------------------- Cobweb Development S?rl www.cobweb.ch ------------------------------------------------------------------------ ------------------------------------------------------------- From dmitry at typo3.org Mon Sep 3 12:15:46 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Mon, 03 Sep 2007 13:15:46 +0300 Subject: [TYPO3] URGENT: no rendering definition error In-Reply-To: References: Message-ID: Cray Flatline wrote: > I tried to look there already 2 or 3 times (((: But there is no any > templates except css_styled_content, static_info_tables and tt_news Ok. Let's try this. Open "TypoScript Object Browser" (Setup part) and expand "plugin" branch. Is there "tx_srlanguagemenu_pi1"? Is there "userFunc" inside "tx_srlanguagemenu_pi1"? -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From webdesign at inbalanshasselt.nl Mon Sep 3 12:25:27 2007 From: webdesign at inbalanshasselt.nl (Bas Heutink) Date: Mon, 03 Sep 2007 12:25:27 +0200 Subject: [TYPO3] TCEMAIN.clearCacheCmd problem In-Reply-To: References: Message-ID: Dmitry Dulepov [typo3] wrote: > Sorry, forgot the link. > > Dmitry Dulepov [typo3] wrote: > >> Why don't you read docs on typo3.org instead? :) > > > http://typo3.org/documentation/document-library/references/doc_core_tsconfig/4.1.0/view/1/3/#id3540718 > > Thanks for the reply. Of course I entered TCEMAIN.clearCacheCmd = 23,25 in the real situation. I dont wish to clear the complete cache. I saved the tt_news item as ADMIN, but in the frontend nothing happens. Regards, Bas From t33kRE.MO.VE. at RE.MO.VE.prolabium.com Mon Sep 3 12:42:39 2007 From: t33kRE.MO.VE. at RE.MO.VE.prolabium.com (Krystian Szymukowicz) Date: Mon, 03 Sep 2007 12:42:39 +0200 Subject: [TYPO3] TCEMAIN.clearCacheCmd problem In-Reply-To: References: Message-ID: Bas Heutink wrote: > > Thanks for the reply. > Of course I entered TCEMAIN.clearCacheCmd = 23,25 in the real situation. > I dont wish to clear the complete cache. hi And where did you put this TCEMAIN.clearCacheCmd = 23,25 ? It should go to PAGE TS of the folder where you have news records. -- greetings Krystian From webdesign at inbalanshasselt.nl Mon Sep 3 12:56:31 2007 From: webdesign at inbalanshasselt.nl (Bas Heutink) Date: Mon, 03 Sep 2007 12:56:31 +0200 Subject: [TYPO3] TCEMAIN.clearCacheCmd problem In-Reply-To: References: Message-ID: Thank you Krystian. The problem is solved. I had entered the command in the TS of the template instead of the TS of the page. Stil it is strange that only for this website I have to clear cache for tt_news... Regards, Bas Krystian Szymukowicz wrote: > Bas Heutink wrote: > >> >> Thanks for the reply. >> Of course I entered TCEMAIN.clearCacheCmd = 23,25 in the real situation. >> I dont wish to clear the complete cache. > > > hi > > And where did you put this TCEMAIN.clearCacheCmd = 23,25 ? > > It should go to PAGE TS of the folder where you have news records. > > > -- > greetings > Krystian From dmitry at typo3.org Mon Sep 3 13:27:55 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Mon, 03 Sep 2007 14:27:55 +0300 Subject: [TYPO3] TCEMAIN.clearCacheCmd problem In-Reply-To: References: Message-ID: Bas Heutink wrote: > Stil it is strange that only for this website I have to clear cache for > tt_news... No, it is correct if you use another page to display news and that page is cached. How otherwise typo3 will know to clear cache for that page? -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From info at cybercraft.de Mon Sep 3 13:36:29 2007 From: info at cybercraft.de (JoH asenau) Date: Mon, 3 Sep 2007 13:36:29 +0200 Subject: [TYPO3] Problems with categories in tt_products References: Message-ID: > In tt_products it is possible to generate a list with product > categories and/or a selection of these categories. The page source > shows the following info: > > The problem is that no categories are displayed although they are > added in the back end. The plugin also has the appropriate start > point. And I have copied the template file of tt_products to mu own > template folder which I have described in the constants. Does anyone > has a idea of what I am missing here? > > The configuration that I use is TemplaVoila 1.1.0., Typo3 4.0.2. with > tt_products 2.5.2. Did you set the "General Record Storage Page" of the page which is going to display the Categories to the folder containing your categories? You can do that in the editing form of the page record. HTH Joey -- Wenn man keine Ahnung hat: Einfach mal Fresse halten! (If you have no clues: simply shut your gob sometimes!) Dieter Nuhr, German comedian openBC/Xing: http://www.cybercraft.de T3 cookbook: http://www.typo3experts.com From marianne at topit.dk Mon Sep 3 13:54:51 2007 From: marianne at topit.dk (Marianne Topping) Date: Mon, 3 Sep 2007 13:54:51 +0200 Subject: [TYPO3] tt_products - related products Message-ID: Hi I have a lot of products and each category has its own sys folder with the category and the categories products. Each category is shown on it's own page. Some products have related products from different categories and they get shown on the products single view ok, but it you then want to see a related product in single view, the page is empty because the single view is being generated on a page not containing the related product. How do I get around this? Regards- Marianne From troels at linkfactory.dk Mon Sep 3 13:55:16 2007 From: troels at linkfactory.dk (=?ISO-8859-1?Q?Troels_Kj=E6r_Rasmussen?=) Date: Mon, 03 Sep 2007 13:55:16 +0200 Subject: [TYPO3] High-end gov references Message-ID: Hello everyone. In DK we currently have several goverment institutions switching to TYPO3 and furthermore a few are evaluating TYPO3 against other systems (primarely commercial .NET = microsoft) A few of them are requesting references to foreign, primarely european, high end government solutions. I was hoping that some of you could give me some good gov TYPO3 references from your native countries focussing on federal/national sites with high traffic e.g. ministerien, national branches, offices of legislation a.s.o. Especially germany, netherlands, france, austria, spain, italy a.s.o. are interesting, but also UK/US/eastern european countries/south-east asian references are welcome too. Best regards Troels Kj?r Rasmussen /Linkfactory From nightowl at galnet.dk Mon Sep 3 14:28:14 2007 From: nightowl at galnet.dk (Brian Bendtsen) Date: Mon, 03 Sep 2007 14:28:14 +0200 Subject: [TYPO3] GMenu dynamic height for menu item Message-ID: HI Im building my first Graphics menu and have a couple of questions So far it looks like this: lib.menu = HMENU lib.menu.1 = GMENU lib.menu.1.NO { backColor = #b4b4b4 XY = 130, 35 10 = TEXT 10.text.field = title 10.text.listNum = 0 10.text.listNum.splitChar = | 10.fontColor = #000 10.offset = 15,10 10.fontFile = fileadmin/fonts/times.ttf 10.fontSize = 14 10.niceText = 1 5 = IMAGE 5.file = fileadmin/templates/images/bullit_NO.gif 20 = TEXT 20.text.field = title 20.text.listNum = 1 20.text.listNum.splitChar = | 20.fontColor = #000 20.offset = 15,27 20.fontFile = fileadmin/fonts/times.ttf 20.fontSize = 14 20.niceText = 1 } I split the text if its longer than I allow, but it is possible to ajust the height of a menu item dynamically depending on whether the menu text is split or not? The height has to be twice the height if its split on 2 lines. /Brian From ben at netcreators.com Mon Sep 3 15:18:58 2007 From: ben at netcreators.com (ben van 't ende [netcreators]) Date: Mon, 03 Sep 2007 15:18:58 +0200 Subject: [TYPO3] TYPOSCRIPT: database driven selector In-Reply-To: References: Message-ID: Nikolas Hagelstein wrote: > Dmitry Dulepov wrote: >>> stdWrap.dataWrap =
>> method="post">|


>> This one is bad. You should always use typolink to produce a link! > Yes that was just a dirty hack actually it has been replaced by a typolink > already. Hi Nikolas, Then you can undoubtedly share that replaced code with us ;-) gRTz ben -- netcreators :: creation and innovation www.netcreators.com - www.typo3.nl Interesse in werken bij Netcreators? http://www.netcreators.com/bedrijf/vacatures/ From typo3 at martinholtz.de Mon Sep 3 15:25:13 2007 From: typo3 at martinholtz.de (Martin Holtz) Date: Mon, 03 Sep 2007 15:25:13 +0200 Subject: [TYPO3] High-end gov references References: Message-ID: Hi Troels, > A few of them are requesting references to foreign, primarely european, > high end government solutions. > > I was hoping that some of you could give me some good gov TYPO3 > references from your native countries focussing on federal/national > sites with high traffic e.g. ministerien, national branches, offices of > legislation a.s.o. > > Especially germany, netherlands, france, austria, spain, italy a.s.o. > are interesting, but also UK/US/eastern european countries/south-east > asian references are welcome too. perhaps you should ask that in typo3.projects.civserv and perhaps you could have an look at: http://www.citeq.de/3645.html gruss, martin From hagelstein at shr.cc Mon Sep 3 15:36:09 2007 From: hagelstein at shr.cc (Nikolas Hagelstein) Date: Mon, 3 Sep 2007 15:36:09 +0200 Subject: [TYPO3] TYPOSCRIPT: database driven selector References: Message-ID: Hi there, ben van 't ende wrote: > Then you can undoubtedly share that replaced code with us ;-) Yes for sure: ------------- 10 = COA_INT 10 { wrap = |

5 = TEXT 5.wrap =
5.typolink.parameter.data = tsfe:id 5.typolink.returnLast = url 10 = CONTENT 10.wrap = 10.table = tx_dam_cat 10.select { pidInList = 66 orderBy = sorting andWhere = parent_id= andWhere.dataWrap = | GPvar:tx_fmApp|root //changed to getVar } 10.renderObj =COA 10.renderObj { 10 = TEXT 10.value = | } } -------------- Cheers, Nikolas From tlist at birkit.com Mon Sep 3 15:38:35 2007 From: tlist at birkit.com (Lucas Birk) Date: Mon, 03 Sep 2007 15:38:35 +0200 Subject: [TYPO3] New doktype shortcut does not work Message-ID: Hi all, I have created a new doktype in my TCA so that I can have a page that behaves like a shortcut but looks different in the page tree. I have successfully added the page doktype and my new icon but the shortcut does not work; the FE-page show normally without redirecting to the selected shorcut page. In my TCA I have: $GLOBALS['TCA']['pages']['types'][127]['showitem']= 'hidden;;;;1-1-1, doktype, title;;3;;2-2-2, subtitle, nav_hide, shortcut;;;;3-3-3, shortcut_mode, TSconfig;;6;nowrap;5-5-5, storage_pid;;7, l18n_cfg'; $GLOBALS['PAGES_TYPES'][127]['icon'] = "/fileadmin/area.gif"; I am stumped as to why every other field in the page properties form works except for the shortcut. I am missing something here but I do not know what. Any help would be great. Thanks, Lucas. From cryangel at gmail.com Mon Sep 3 15:39:47 2007 From: cryangel at gmail.com (Cray Flatline) Date: Mon, 03 Sep 2007 16:39:47 +0300 Subject: [TYPO3] URGENT: no rendering definition error In-Reply-To: References: Message-ID: yes. I have it. look here: [tx_srlanguagemenu_pi1]=USER [userFunc]=tx_srlanguagemenu_pi1->main [templateFile]=typo3conf/ext/sr_language_menu/pi1/tx_srlanguagemenu_pi1_template.tmpl [useSysLanguageTitle]=0 [useSelfLanguageTitle]=1 [useIsoLanguageCountryCode]=0 [defaultLanguageISOCode]=EN [defaultCountryISOCode]= [languagesUidsList]= [hideIfNoAltLanguages]=0 [target]= [removeParams]=user,pass [defaultLayout]=0 [showLinkWithFlag]=0 [flag] [flags] [list] [link] [links] [englishFlagFile]=EXT:sr_language_menu/flags/en.gif I have no ideas already. ): I tried something like lib.langsel = COA lib.langsel.10 < plugin.tx_srlanguagemenu_pi1 lib.langsel.10 { } but it doesn't work at all. no output. ): Dmitry Dulepov [typo3] wrote: > Cray Flatline wrote: >> I tried to look there already 2 or 3 times (((: But there is no any >> templates except css_styled_content, static_info_tables and tt_news > > Ok. Let's try this. Open "TypoScript Object Browser" (Setup part) and > expand "plugin" branch. Is there "tx_srlanguagemenu_pi1"? Is there > "userFunc" inside "tx_srlanguagemenu_pi1"? > -- W BR, Cray Flatline From t33kRE.MO.VE. at RE.MO.VE.prolabium.com Mon Sep 3 15:43:53 2007 From: t33kRE.MO.VE. at RE.MO.VE.prolabium.com (Krystian Szymukowicz) Date: Mon, 03 Sep 2007 15:43:53 +0200 Subject: [TYPO3] High-end gov references In-Reply-To: References: Message-ID: Troels Kj?r Rasmussen wrote: > Hello everyone. > > In DK we currently have several goverment institutions switching to > TYPO3 and furthermore a few are evaluating TYPO3 against other systems > (primarely commercial .NET = microsoft) > > A few of them are requesting references to foreign, primarely european, > high end government solutions. > > I was hoping that some of you could give me some good gov TYPO3 > references from your native countries focussing on federal/national > sites with high traffic e.g. ministerien, national branches, offices of > legislation a.s.o. > > Especially germany, netherlands, france, austria, spain, italy a.s.o. > are interesting, but also UK/US/eastern european countries/south-east > asian references are welcome too. > hello look at this: http://t3con06.typo3.org/acctalks.html?&tx_ptconference_pi4[showUid]=21&cHash=aeebeee01a if you want to contact author of this speech: boris.saletic(at)gov.si i remember there was video files from t3con06 somewhere in the internet but i do not remember the address right now. -- grtz Krystian Szymukowicz From nightowl at galnet.dk Mon Sep 3 16:20:59 2007 From: nightowl at galnet.dk (Brian Bendtsen) Date: Mon, 03 Sep 2007 16:20:59 +0200 Subject: [TYPO3] Rendering a tt_content field as an image Message-ID: Hi Im trying to turn a tt_content field into an Image with this typoscript, but all get is a white background - not the text: lib.footer = RECORDS lib.footer { tables = tt_content source = 3 conf.tt_content = IMAGE conf.tt_content { file = GIFBUILDER file { XY = 550, 28 backColor = #ffffff offset = 10,15 fontColor = #000000 fontFile = fileadmin/fonts/times.ttf } } } Any tips? /Brian From mrmxtplk at sol.dk Mon Sep 3 16:29:54 2007 From: mrmxtplk at sol.dk (mrmxtplk at sol.dk) Date: Mon, 3 Sep 2007 16:29:54 +0200 (CEST) Subject: [TYPO3] Does timtaw work with tm_contentaccess? Message-ID: Hi, can anyone tell me if timtaw and tm_contentaccess go together, so that I can have full wiki functionality for logged in users, but only on certain areas of the pages, while other areas remain locked? Regards Martin Ehrensvard From tmsnyder at hotmail.com Mon Sep 3 16:27:16 2007 From: tmsnyder at hotmail.com (T.M.Snyder) Date: Mon, 3 Sep 2007 16:27:16 +0200 Subject: [TYPO3] One Time Passwords for FE/BE References: Message-ID: "Oliver Klee" schrieb im Newsbeitrag news:mailman.1.1188407104.20595.typo3-english at lists.netfielders.de... > Hi, > > T.M.Snyder schrieb: >> is there any extension which supports one time passwords for FE/BE users? >> This would be very helpful if users (FE and BE) come from non trusted >> networks, Internetcafe for example. > > You can use the "onetimeaccount" extension which creates throw-away FE > user accounts. Their user names and passwords will not be shown to the > user (and not sent across the network). > > Regards > Oliver Will this work also for BE USers or is there a solution at hand? Cheers From dmitry at typo3.org Mon Sep 3 16:28:04 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Mon, 03 Sep 2007 17:28:04 +0300 Subject: [TYPO3] URGENT: no rendering definition error In-Reply-To: References: Message-ID: Hi! Cray Flatline wrote: > yes. I have it. look here: All seems to be in order here. > I have no ideas already. ): I tried something like > > lib.langsel = COA > lib.langsel.10 < plugin.tx_srlanguagemenu_pi1 > lib.langsel.10 { > > } > > but it doesn't work at all. no output. ): Take a look to the page that shows this error and check if it has that sr_language_menu_pi1. You need to go to BE of course. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From dmitry at typo3.org Mon Sep 3 16:29:29 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Mon, 03 Sep 2007 17:29:29 +0300 Subject: [TYPO3] Rendering a tt_content field as an image In-Reply-To: References: Message-ID: Hi! Brian Bendtsen wrote: > Im trying to turn a tt_content field into an Image with this typoscript, > but all get is a white background - not the text: > > lib.footer = RECORDS > lib.footer { > tables = tt_content > source = 3 > conf.tt_content = IMAGE > conf.tt_content { > file = GIFBUILDER > file { > XY = 550, 28 > backColor = #ffffff > offset = 10,15 > fontColor = #000000 > fontFile = fileadmin/fonts/times.ttf > } > } > } Hm-m-m-m. But what field do you want to show as a text? It is not configured here. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From t33kRE.MO.VE. at RE.MO.VE.prolabium.com Mon Sep 3 16:45:44 2007 From: t33kRE.MO.VE. at RE.MO.VE.prolabium.com (Krystian Szymukowicz) Date: Mon, 03 Sep 2007 16:45:44 +0200 Subject: [TYPO3] mediatemple testing Message-ID: hello it seems like I need to find another hosting company and read some interesting article about mediatemple. I'd like to ask if there is anyone who tested TYPO3 at mediatemple? * What is the overall performance? * Is the memory limit enough for TYPO3? Extension Manager? Here is an phpinfo from mediatemple: http://s1555.gridserver.com/gs-bin/phpinfo.php5 There is an information that: memory_limit is set to 100M? Can that be true? * Any php accelerator installed? There is Zend Optimizer but its is not as good as accelerator. * Can ImageMagic be installed? * How often the server goes down? Thanks for any suggestions/info. -- greetings Krystian Szymukowicz From aji.yahya at gmail.com Mon Sep 3 16:47:28 2007 From: aji.yahya at gmail.com (Aji Johannes) Date: Mon, 03 Sep 2007 16:47:28 +0200 Subject: [TYPO3] Indexed Search and Results??? Message-ID: Hello List, i have a problem with Indexed Search result in BrowseLink (or page browser). if i search for a word it will returns for example: 30 Result, if now i click on Page 2 the total numbers of results will be reduced to 29 or 28. for example : search result: Displaying results 1 to 10 out of 16 (first Page) when i click on Page 2, it will show :Displaying results 1 to 10 out of 15 and some time the last page (Page x) show no results!!! the results reduced by page browsing. any idea, is that a Bug or some thins wrong with configuration???? many Thanks Aji From headhunterxiii at yahoo.ca Mon Sep 3 16:56:26 2007 From: headhunterxiii at yahoo.ca (Tyler Kraft) Date: Mon, 03 Sep 2007 15:56:26 +0100 Subject: [TYPO3] Indexed Search and Results??? In-Reply-To: References: Message-ID: an old well know bug - try searching the mailing list/google/bug tracker. hth Aji Johannes wrote: > Hello List, > > i have a problem with Indexed Search result in BrowseLink (or page > browser). > if i search for a word it will returns for example: 30 Result, if now i > click on Page 2 the total numbers of results will be reduced to 29 or 28. > > for example : > search result: Displaying results 1 to 10 out of 16 (first Page) > when i click on Page 2, it will show :Displaying results 1 to 10 out of > 15 and some time the last page (Page x) show no results!!! > the results reduced by page browsing. > > any idea, is that a Bug or some thins wrong with configuration???? > > many Thanks > > Aji From John.de.Stigter at bedrijvenweb.nl Mon Sep 3 17:28:50 2007 From: John.de.Stigter at bedrijvenweb.nl (John de Stigter) Date: Mon, 3 Sep 2007 17:28:50 +0200 Subject: [TYPO3] Could not fetch translation status Message-ID: Hi all, I'm having trouble with updating my language files. When I click "Update from repository" in the Extension manager only a few files are updated. But for a lot of extensions, for instance "sr_feuser_register", it says: "Could not fetch translation status". I am trying to impor the dutch language. Is this a problem at the TYPO3 server or is the translation not available in a new format? Cheerios, John From aji.yahya at gmail.com Mon Sep 3 17:28:36 2007 From: aji.yahya at gmail.com (Aji Johannes) Date: Mon, 03 Sep 2007 17:28:36 +0200 Subject: [TYPO3] Indexed Search and Results??? SOLVED In-Reply-To: References: Message-ID: Tyler Kraft schrieb: > an old well know bug - try searching the mailing list/google/bug tracker. > > hth > > > > Aji Johannes wrote: >> Hello List, >> >> i have a problem with Indexed Search result in BrowseLink (or page >> browser). >> if i search for a word it will returns for example: 30 Result, if now >> i click on Page 2 the total numbers of results will be reduced to 29 >> or 28. >> >> for example : >> search result: Displaying results 1 to 10 out of 16 (first Page) >> when i click on Page 2, it will show :Displaying results 1 to 10 out >> of 15 and some time the last page (Page x) show no results!!! >> the results reduced by page browsing. >> >> any idea, is that a Bug or some thins wrong with configuration???? >> >> many Thanks >> >> Aji i found this Patch in Bugtracker and it solved my problem. http://bugs.typo3.org/view.php?id=1467 many thanks to Michael Stucki :) regards AJI From nightowl at galnet.dk Mon Sep 3 17:48:45 2007 From: nightowl at galnet.dk (brian bendtsen) Date: Mon, 03 Sep 2007 17:48:45 +0200 Subject: [TYPO3] Rendering a tt_content field as an image In-Reply-To: References: Message-ID: Dmitry Dulepov [typo3] skrev: > Hi! > > Brian Bendtsen wrote: >> Im trying to turn a tt_content field into an Image with this >> typoscript, but all get is a white background - not the text: >> >> lib.footer = RECORDS >> lib.footer { >> tables = tt_content >> source = 3 >> conf.tt_content = IMAGE >> conf.tt_content { >> file = GIFBUILDER >> file { >> XY = 550, 28 >> backColor = #ffffff >> offset = 10,15 >> fontColor = #000000 >> fontFile = fileadmin/fonts/times.ttf >> } >> } >> } > > Hm-m-m-m. But what field do you want to show as a text? It is not > configured here. > I have created a content element of type text with id 3, that what I want to convert to an image if possible. /Brian From cryangel at gmail.com Mon Sep 3 17:53:15 2007 From: cryangel at gmail.com (Cray Flatline) Date: Mon, 03 Sep 2007 18:53:15 +0300 Subject: [TYPO3] SOLVED: URGENT: no rendering definition error In-Reply-To: References: Message-ID: Thanks to Dmitry Dulepov [typo3] and everybody who give me advices! Problem solved with "shamanskiy buben" method. (: I was logged in to BE from problem domain URL and installed one more time extension. (: I don't know why, but it works now. > Hi! > > Cray Flatline wrote: >> yes. I have it. look here: > > > > > All seems to be in order here. > >> I have no ideas already. ): I tried something like >> >> lib.langsel = COA >> lib.langsel.10 < plugin.tx_srlanguagemenu_pi1 >> lib.langsel.10 { >> >> } >> >> but it doesn't work at all. no output. ): > > Take a look to the page that shows this error and check if it has that > sr_language_menu_pi1. You need to go to BE of course. > -- W BR, Cray Flatline From headhunterxiii at yahoo.ca Mon Sep 3 17:59:58 2007 From: headhunterxiii at yahoo.ca (Tyler Kraft) Date: Mon, 03 Sep 2007 16:59:58 +0100 Subject: [TYPO3] Rendering a tt_content field as an image In-Reply-To: References: Message-ID: Fine but your still not telling gif builder what field to get the text from! So unless gifbuilder all of a sudden developed ESP that I'm unaware of - that's what the problem is ;-) brian bendtsen wrote: > Dmitry Dulepov [typo3] skrev: >> Hi! >> >> Brian Bendtsen wrote: >>> Im trying to turn a tt_content field into an Image with this >>> typoscript, but all get is a white background - not the text: >>> >>> lib.footer = RECORDS >>> lib.footer { >>> tables = tt_content >>> source = 3 >>> conf.tt_content = IMAGE >>> conf.tt_content { >>> file = GIFBUILDER >>> file { >>> XY = 550, 28 >>> backColor = #ffffff >>> offset = 10,15 >>> fontColor = #000000 >>> fontFile = fileadmin/fonts/times.ttf >>> } >>> } >>> } >> >> Hm-m-m-m. But what field do you want to show as a text? It is not >> configured here. >> > I have created a content element of type text with id 3, that what I > want to convert to an image if possible. > > /Brian From wolfgang.illmeyer at gmx.net Mon Sep 3 18:22:21 2007 From: wolfgang.illmeyer at gmx.net (Wolfgang Illmeyer) Date: Mon, 3 Sep 2007 18:22:21 +0200 Subject: [TYPO3] FE-Login with _real_ redirect (HTTP, Location-Header!)? Message-ID: Hi. I have got a page for logged in FE-users which should allow refreshing. However, using the FE-Login provided by typo3, there's no "Location"-HTTP-Header sent, and the new page is rendered directly. This is very problematic, because all major browsers (Tested: IE, FF) ask for confirmation to re-send the POST-formdata before refreshing the page. How can I make typo3 do _real_ (HTTP) redirects after login?# Thanks Wolfgang From bedlamhotel at gmail.com Mon Sep 3 18:48:14 2007 From: bedlamhotel at gmail.com (Christopher Torgalson) Date: Mon, 3 Sep 2007 09:48:14 -0700 Subject: [TYPO3] Problems with fe login when switching T3-4.0.4 -> T3-4.1.2 In-Reply-To: References: Message-ID: Hi, On 9/2/07, Michael Rolli wrote: > Hi list > > I'm confused and don't know where to start my debug journey because > nothing seems to be an obvious or possible reason. > > I have a Typo3 Installation running Version 4.0.4. It's running > smooth and stable. In the particular interest of fe-login I use > newloginbox, sr_feuser_register and sv_login_redirect. Everything > works so far. > > Now I wanted to update Typo3 to 4.1.2 because I have to use IRRE. > So.. I got the typo3-4.1.2-sources, unpacked them, replaced the > symlink (typo3_src -> /srv/libs/typo3_src-4.1.2) in the project > folder, runned the installtool->update wizard, purged the typo3conf- > cache (even with rm typo3cof/temp_CACHED*) and the FE cache. > > Result: No fe login possible anymore. Any l/p pair is denied though > right. > > Switching back the symoblic link to Typo3-4.0.4 (typo3_src -> /srv/ > libs/typo3_src-4.0.4) makes it work again without even purging any > cache. :-) > > Has anybody any idea where to begin to search? Anybody a hint what > could be the cause of this? Has anything changed about authentication > which I have to consider in my configurations? I didn't read > something in the release notes. It's a bit of a long shot, but in your description of your upgrade process above, you don't mention updating the database--did you run the Compare option in the Install Tool's "Database Analyser" section? -- Christopher Torgalson http://www.typo3apprentice.com/ From nightowl at galnet.dk Mon Sep 3 19:57:29 2007 From: nightowl at galnet.dk (brian bendtsen) Date: Mon, 03 Sep 2007 19:57:29 +0200 Subject: [TYPO3] Rendering a tt_content field as an image In-Reply-To: References: Message-ID: Tyler Kraft skrev: > Fine but your still not telling gif builder what field to get the text > from! > > So unless gifbuilder all of a sudden developed ESP that I'm unaware of - > that's what the problem is ;-) > > > > brian bendtsen wrote: >> Dmitry Dulepov [typo3] skrev: >>> Hi! >>> >>> Brian Bendtsen wrote: >>>> Im trying to turn a tt_content field into an Image with this >>>> typoscript, but all get is a white background - not the text: >>>> >>>> lib.footer = RECORDS >>>> lib.footer { >>>> tables = tt_content >>>> source = 3 >>>> conf.tt_content = IMAGE >>>> conf.tt_content { >>>> file = GIFBUILDER >>>> file { >>>> XY = 550, 28 >>>> backColor = #ffffff >>>> offset = 10,15 >>>> fontColor = #000000 >>>> fontFile = fileadmin/fonts/times.ttf >>>> } >>>> } >>>> } >>> >>> Hm-m-m-m. But what field do you want to show as a text? It is not >>> configured here. >>> >> I have created a content element of type text with id 3, that what I >> want to convert to an image if possible. >> >> /Brian Ahh I needed to add these lines of course: 10 = TEXT 10.text.field = bodytext /Brian From rolli at iml.unibe.ch Mon Sep 3 20:11:20 2007 From: rolli at iml.unibe.ch (Michael Rolli) Date: Mon, 3 Sep 2007 20:11:20 +0200 Subject: [TYPO3] Problems with fe login when switching T3-4.0.4 -> T3-4.1.2 In-Reply-To: References: Message-ID: > It's a bit of a long shot, but in your description of your upgrade > process above, you don't mention updating the database--did you run > the Compare option in the Install Tool's "Database Analyser" section? It's not a long shot. In fact, you're right. I forgot this step. How can I do that? Embarassing, very embarassing. :-) Now it works as expected. :-) Many thanks, Christopher, for opening the eyes. Regards, Michael From typo3 at kongsted.dk Mon Sep 3 20:45:24 2007 From: typo3 at kongsted.dk (Anders Kongsted) Date: Mon, 03 Sep 2007 20:45:24 +0200 Subject: [TYPO3] Insert increasing numbers in GMENU Message-ID: Hi, I'm working on a website with a GMENU. I would like to have increasing numbers insert before the title in the menu. Example: In my backend, the structure look like this: menu 1 menu 2 menu 3 menu 4 menu 5 menu 6 menu 7 menu 8 menu 9 When the menu is generated, I want the menu to look like this: menu 1 01 menu 2 02 menu 3 03 menu 4 menu 5 01 menu 6 02 menu 7 menu 8 menu 9 Is that possible without typing the numbers in the BE???? //Anders Kongsted From thorsten.kahler at dkd.de Mon Sep 3 21:13:34 2007 From: thorsten.kahler at dkd.de (Thorsten Kahler) Date: Mon, 03 Sep 2007 21:13:34 +0200 Subject: [TYPO3] TYPOSCRIPT: database driven selector In-Reply-To: References: Message-ID: Hi Nikolas, you should add Nikolas Hagelstein wrote on 03.09.2007 15:36: > [...] > 10.renderObj =COA > 10.renderObj { > [...] > 20 = TEXT > 20.noTrimWrap =| SELECTED| > 20.if.value.data=GPvar:tx_fmApp|cat1 20.if.value.intval = 1 > 20.if.equals.field=uid > [...] > } to prevent SQL injection. The rest seems fine to me. Regards Thorsten From t33kRE.MO.VE. at RE.MO.VE.prolabium.com Mon Sep 3 23:40:59 2007 From: t33kRE.MO.VE. at RE.MO.VE.prolabium.com (Krystian Szymukowicz) Date: Mon, 03 Sep 2007 23:40:59 +0200 Subject: [TYPO3] Could not fetch translation status In-Reply-To: References: Message-ID: John de Stigter wrote: > Hi all, > > I'm having trouble with updating my language files. When I click "Update > from repository" in the Extension manager only a few files are updated. > But for a lot of extensions, for instance "sr_feuser_register", it says: > "Could not fetch translation status". > > I am trying to impor the dutch language. Is this a problem at the TYPO3 > server or is the translation not available in a new format? > There are only few extension at translation server ATM: 1. tt_news 2. templavoila 3. dam 4. cal 5. static_info_tables 6. mm_forum Thats why you have "Could not fetch translation status". 'sr_feuser_register' with 50k+ downloads is a good candidate to join the extensions at translation server. If you want to make it happen you can ask Dimitry Dulepov to add this extension to translation server. -- grtz Krystian Szymukowicz From tania.morales at gmail.com Tue Sep 4 00:38:29 2007 From: tania.morales at gmail.com (Tania Morales) Date: Mon, 3 Sep 2007 17:38:29 -0500 Subject: [TYPO3] Error using typo3/sysext/rtehtmlarea Message-ID: Hi list. I have a problem with the Rich Text Editor..as everyone did. In my case, i updated my typo3 source from 4.0.4 to 4.1.2, and the rtehtmlarea didn't work anymore, it only shows "Editor is being loaded..In any browser", so in some blogs i found that the problem should be fixed by using the typo3 source extension instead of the typo3conf one. I though it would be a good idea just to create a symlink from the typo3/sysext/rtehtmlarea to my typo3conf/ext/... Now the editor is working fine, but if I try to create a link in the text, when the pop up window shows up, i get this message: "Error in init.php: Path to TYPO3 main dir could not be resolved correctly. *This happens if the last 6 characters of this path, /opt2/LTG/htdocs/vivatravelguides.com/typo3conf/ext/rtehtmlarea/mod3/ ($temp_path), is NOT "typo3/" for some reason. You may have a strange server configuration. Or maybe you didn't set constant TYPO3_MOD_PATH in your module?" I know it is because of the symlink, but I can not make it work if I don't put it there :( Do you have any suggestion???...Thanks in advance. * -- T at ni@ From cryangel at gmail.com Tue Sep 4 03:53:11 2007 From: cryangel at gmail.com (Cray Flatline) Date: Tue, 04 Sep 2007 04:53:11 +0300 Subject: [TYPO3] tt_news category menu and images Message-ID: I'm using such menu to show tt_news categories menu. menu adds to start of content. It shows me news title and after it news subtitle in a div. I need to wrap this title and subtitle in a
and before it show category image in a some div. Main problem surely is show category image. can anybody help me with it? ======================================= temp.catar = CONTENT temp.catar { table = tt_news_cat select { # the category folder(s) pidInList = 36 andWhere = parent_category = andWhere.append = TEXT andWhere.append.value = {GPvar:tx_ttnews|cat} andWhere.insertData = 1 andWhere.append.ifEmpty = 10 } renderObj = COA # renderObj.wrap =
  • |
  • renderObj { stdWrap.typolink.parameter=32 stdWrap.typolink.additionalParams.dataWrap = &tx_ttnews[cat]={field:uid} stdWrap.typolink.wrap =
  • |
  • 10 = TEXT 10 { field = title wrap = | } 20 = TEXT 20 { field = description wrap =
    |
    } } } temp.catar.stdWrap.wrap =
      |
    page.10.subparts.content.stdWrap.prepend < temp.catar -- W BR, Cray Flatline From christian.lerrahn at cerebrum.com.au Tue Sep 4 06:31:58 2007 From: christian.lerrahn at cerebrum.com.au (Christian Lerrahn) Date: Tue, 4 Sep 2007 14:31:58 +1000 Subject: [TYPO3] CSS from extension managed by core References: Message-ID: On Thu, 30 Aug 2007 13:52:44 +0300 "Dmitry Dulepov [typo3]" wrote: > Christian Lerrahn wrote: > > I'd like to generate some CSS in an extension from templates and > > then hand it over to the core to take care of it. Is that possible? > > I realise that I could just write my own temporary file which I then > > refer to in the header but I would like the core to take care of > > everything once the CSS is final. How do I do that? > > Easy: > > ---------------------------- > $generatedCss = ' > BODY { } > H1 { } > '; > $GLOBALS['TSFE']->setCSS('tx_yourext_pi1', $generatedCss); > ---------------------------- > Cheers. :) Christian From tmsnyder at hotmail.com Tue Sep 4 09:17:01 2007 From: tmsnyder at hotmail.com (T.M.Snyder) Date: Tue, 4 Sep 2007 09:17:01 +0200 Subject: [TYPO3] Looking for someone to implement a small Typo3 website byend of the month References: Message-ID: "Denise Jacobs" schrieb im Newsbeitrag news:mailman.2555.1188781945.17142.typo3-english at lists.netfielders.de... > Hi All -- [...] > As an FYI -- I currently am a PM at a company that produces another > open-source CMS [...] > Thanks Denise Yeah, thats what mankind needs, reeventing the wheel on and on and on........ ... maybe we get the wheel a little rounder... ?!? ;-) From dmitry at typo3.org Tue Sep 4 10:01:57 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Tue, 04 Sep 2007 11:01:57 +0300 Subject: [TYPO3] FE-Login with _real_ redirect (HTTP, Location-Header!)? In-Reply-To: References: Message-ID: Wolfgang Illmeyer wrote: > I have got a page for logged in FE-users which should allow refreshing. > However, using the FE-Login provided by typo3, there's > no "Location"-HTTP-Header sent, and the new page is rendered directly. This > is very problematic, because all major browsers (Tested: IE, FF) ask for > confirmation to re-send the POST-formdata before refreshing the page. > How can I make typo3 do _real_ (HTTP) redirects after login?# You have to override the part that handles logins. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From dmitry at typo3.org Tue Sep 4 10:03:02 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Tue, 04 Sep 2007 11:03:02 +0300 Subject: [TYPO3] Could not fetch translation status In-Reply-To: References: Message-ID: Krystian Szymukowicz wrote: > 'sr_feuser_register' with 50k+ downloads is a good candidate to join the > extensions at translation server. If you want to make it happen you can > ask Dimitry Dulepov to add this extension to translation server. Good idea. Added it there. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From nightowl at galnet.dk Tue Sep 4 10:04:01 2007 From: nightowl at galnet.dk (Brian Bendtsen) Date: Tue, 04 Sep 2007 10:04:01 +0200 Subject: [TYPO3] Rendering a tt_content field as an image In-Reply-To: References: Message-ID: Hi The content from the bodytext field is not rendered the right way. Special charecteres like ? are not included in the transformation to an image file. The same goes for formatting, like bold and italics. I guess I need to tell the typoscript to parse the text as html but im not sure where or how I do this. This is what I have so far: #Footer lib.footer = RECORDS lib.footer { tables = tt_content source = 3 conf.tt_content = IMAGE conf.tt_content { file = GIFBUILDER file { XY = 550, 20 backColor = #960018 10 = TEXT 10.text.field = bodytext 10.offset = 10,15 10.fontColor = #ffffff 10.fontFile = fileadmin/fonts/arialbd.ttf 10.fontSize = 12 } } } /Brian From dmitry at typo3.org Tue Sep 4 10:05:14 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Tue, 04 Sep 2007 11:05:14 +0300 Subject: [TYPO3] Error using typo3/sysext/rtehtmlarea In-Reply-To: References: Message-ID: Hi! Tania Morales wrote: > Hi list. I have a problem with the Rich Text Editor..as everyone did. > In my case, i updated my typo3 source from 4.0.4 to 4.1.2, and the > rtehtmlarea didn't work anymore, it only shows "Editor is being loaded..In > any browser", so in some blogs i found that the problem should be fixed by > using the typo3 source extension instead of the typo3conf one. > I though it would be a good idea just to create a symlink from the > typo3/sysext/rtehtmlarea to my typo3conf/ext/... No this idea is bad because it does not update paths inside extension. If you upgraded, you possibly have old rtehtmlarea as local extension. It must be removed. Not just uninstalled but removed completely. Then sysext will work. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From marianne at topit.dk Tue Sep 4 10:19:03 2007 From: marianne at topit.dk (Marianne Topping) Date: Tue, 4 Sep 2007 10:19:03 +0200 Subject: [TYPO3] tt_products and General trading conditions (AGB) References: Message-ID: I think it only comes with version 2.5.3? "Aji Johannes" skrev i en meddelelse news:mailman.1.1187019903.20603.typo3-english at lists.netfielders.de... > Hello List, > any idea how General trading conditions (AGB) inside shop is work?? it is > not working for me?????? > > > regards > Aji From daniel at netcreators.com Tue Sep 4 10:41:12 2007 From: daniel at netcreators.com (Daniel Doesburg [netcreators]) Date: Tue, 04 Sep 2007 10:41:12 +0200 Subject: [TYPO3] direct_mail_subscription generates problems with different links Message-ID: The extension "direct_mail_subscription" generates a number of email links for subscription purposes. The last generated link in the email to adapt personal data is generated with the HTML entity & (the other links are generated with '&'). This HTML entity is correctly (?&bla) reproduced by a large number of email clients. There are also some the display it as ?&bla (which is actually: ?&amp;bla in the source). You might guess what happens when you click that link. Not much. Among those that produce these kinds of links from HTML entities are Novell Groupwise and Vista Internet Mail. No we all know Microsoft and Novell are part of the evil empire, but we will have to deal with that fact. To me it seems like HTML entities are not to be generated for emails in general although generating HTML entities seems like a standard way. Any thoughts on that? Regards, Daniel Doesburg From t33kRE.MO.VE. at RE.MO.VE.prolabium.com Tue Sep 4 10:54:40 2007 From: t33kRE.MO.VE. at RE.MO.VE.prolabium.com (Krystian Szymukowicz) Date: Tue, 04 Sep 2007 10:54:40 +0200 Subject: [TYPO3] Insert increasing numbers in GMENU In-Reply-To: References: Message-ID: Anders Kongsted wrote: > Hi, > > I'm working on a website with a GMENU. I would like to have increasing > numbers insert before the title in the menu. > > Example: > > In my backend, the structure look like this: > > menu 1 > menu 2 > menu 3 > menu 4 > menu 5 > menu 6 > menu 7 > menu 8 > menu 9 > > When the menu is generated, I want the menu to look like this: > > menu 1 > 01 menu 2 > 02 menu 3 > 03 menu 4 > menu 5 > 01 menu 6 > 02 menu 7 > menu 8 > menu 9 > > Is that possible without typing the numbers in the BE???? > hi maybe this will help you http://www.typo3wizard.com/en/snippets/menus/numbered-menu.html -- grtz Krystian Szymukowicz From a.widschwendter at mediares.at Tue Sep 4 12:11:55 2007 From: a.widschwendter at mediares.at (media.res | Alex Widschwendter) Date: Tue, 04 Sep 2007 12:11:55 +0200 Subject: [TYPO3] High-end gov references In-Reply-To: References: Message-ID: hi, www.umweltbundesamt.at www.tirol.gv.at http://www.icmpd.org www.foerderkompass.gv.at hth alex From nightowl at galnet.dk Tue Sep 4 12:12:11 2007 From: nightowl at galnet.dk (Brian Bendtsen) Date: Tue, 04 Sep 2007 12:12:11 +0200 Subject: [TYPO3] problem with domain records In-Reply-To: References: Message-ID: Hi I still have this annoying problem. Here you can see the website: http://kursus.mentor-it.dk My problem is with the right menu - every link is of type external url but my source code says otherwise. right now I have a domain record kursus1.mentor-it.dk on the page "Arbejdernes boligforening" and if you click this, the correct content is shown and the browsers address field is changed to kursus1.mentor-it.dk/index.php?id=22. Thats as it should be, but then you are stuck on this branch of the page tree. You cant go to any of the other pages in the right menu. Hope this clarifies my problem and someone knows a solution. Brian Bendtsen From marianne at topit.dk Tue Sep 4 12:12:59 2007 From: marianne at topit.dk (Marianne Topping) Date: Tue, 4 Sep 2007 12:12:59 +0200 Subject: [TYPO3] tt_products and General trading conditions (AGB) References: Message-ID: Sorry!! You have to set: plugin.tt_products.PIDagb = PAGE ID OF YOUR AGB and make sure your template has:
    Trading conditions

    Hereby I confirm to have read and accepted the General trading conditions (AGB):

     
    "Marianne Topping" skrev i en meddelelse news:mailman.1.1188893939.15460.typo3-english at lists.netfielders.de... >I think it only comes with version 2.5.3? > > > "Aji Johannes" skrev i en meddelelse > news:mailman.1.1187019903.20603.typo3-english at lists.netfielders.de... >> Hello List, >> any idea how General trading conditions (AGB) inside shop is work?? it is >> not working for me?????? >> >> >> regards >> Aji > > > From headhunterxiii at yahoo.ca Tue Sep 4 13:00:27 2007 From: headhunterxiii at yahoo.ca (Tyler Kraft) Date: Tue, 04 Sep 2007 12:00:27 +0100 Subject: [TYPO3] Rendering a tt_content field as an image In-Reply-To: References: Message-ID: Hi, Well lib.footer.conf.tt_content.file.10 is a content object (TEXT, COA, HTML what ever you choose really) so you could apply stdWrap to it and use the powers of parseFunc or any other stdWrap properties to strip the html and fix your characters for you. hth Brian Bendtsen wrote: > Hi > > The content from the bodytext field is not rendered the right way. > Special charecteres like ? are not included in the transformation to an > image file. The same goes for formatting, like bold and italics. > > I guess I need to tell the typoscript to parse the text as html but im > not sure where or how I do this. > > This is what I have so far: > > #Footer > lib.footer = RECORDS > lib.footer { > tables = tt_content > source = 3 > conf.tt_content = IMAGE > conf.tt_content { > file = GIFBUILDER > file { > XY = 550, 20 > backColor = #960018 > 10 = TEXT > 10.text.field = bodytext > 10.offset = 10,15 > 10.fontColor = #ffffff > 10.fontFile = fileadmin/fonts/arialbd.ttf > 10.fontSize = 12 > } > } > } > > > /Brian From typo3 at kongsted.dk Tue Sep 4 13:09:03 2007 From: typo3 at kongsted.dk (Anders Kongsted) Date: Tue, 04 Sep 2007 13:09:03 +0200 Subject: [TYPO3] Insert increasing numbers in GMENU In-Reply-To: References: Message-ID: Krystian Szymukowicz skrev: > Anders Kongsted wrote: > >> Hi, >> >> I'm working on a website with a GMENU. I would like to have increasing >> numbers insert before the title in the menu. >> >> Example: >> >> In my backend, the structure look like this: >> >> menu 1 >> menu 2 >> menu 3 >> menu 4 >> menu 5 >> menu 6 >> menu 7 >> menu 8 >> menu 9 >> >> When the menu is generated, I want the menu to look like this: >> >> menu 1 >> 01 menu 2 >> 02 menu 3 >> 03 menu 4 >> menu 5 >> 01 menu 6 >> 02 menu 7 >> menu 8 >> menu 9 >> >> Is that possible without typing the numbers in the BE???? >> >> > > hi > > maybe this will help you > http://www.typo3wizard.com/en/snippets/menus/numbered-menu.html > > -- > grtz > Krystian Szymukowicz > > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english > Hi, I'll think that what I is missing.... :) Hope it works with GMENU?!?!?!? //Anders From ishick at seznam.cz Tue Sep 4 13:30:16 2007 From: ishick at seznam.cz (=?iso-8859-2?Q?jirka=20sedl=E1=E8ek?=) Date: Tue, 04 Sep 2007 13:30:16 +0200 (CEST) Subject: [TYPO3] Extension for handling different types of one file for download Message-ID: Hi all, I'm looking for some extension, which help me handle more files with same name and different mime-type, the same file in different formats. I need it for download page, because my customer needs download page for his documents with multiple file format option. example: some document Now I'm using extension called file list (key dr_blob) and it's ok, but I don't know how to handle multiple formats. Can anybody help me? Ishick From typo3 at andreas-balzer.de Tue Sep 4 13:51:04 2007 From: typo3 at andreas-balzer.de (Andreas Balzer) Date: Tue, 04 Sep 2007 13:51:04 +0200 Subject: [TYPO3] Problems with realurl and different domains Message-ID: Hi! I have a problem with real url and different domains linked to one webspace. You can see my pagetree here: http://img125.imageshack.us/img125/6987/domainssn3.png This T3 installation is placed at www.genovia.de/andreas/ I have two domains, andreas-balzer.de and simget.de, both linked to the root (1) via Strato Webhosting. In 2 there is the T3 domain entry andreas-balzer.de and www... and in 3 there is the domain entry simget.de and www... Well. andreas-balzer.de works fine, but simget is routed to 2 aswell instead of 3. I also notice that real url doesn't create any entries for elements in 3. I am only able to reach 3 through genovia.de/andreas/?id=4, the normal T3 way. I use the following codes in 1, 2 and 3 in my FE templates (each page has one): config.simulateStaticDocuments = 0 config.tx_realurl_enable = 1 config.prefixLocalAnchors = all config.baseURL = http://genovia.de/andreas/ What am I'm doing wrong? Please help me ;) Andreas From typo3 at rvt.dds.nl Tue Sep 4 14:38:49 2007 From: typo3 at rvt.dds.nl (ries van Twisk) Date: Tue, 4 Sep 2007 07:38:49 -0500 Subject: [TYPO3] Looking for someone to implement a small Typo3 website byend of the month In-Reply-To: References: Message-ID: On Sep 4, 2007, at 2:17 AM, T.M.Snyder wrote: > > "Denise Jacobs" schrieb im Newsbeitrag > news:mailman.2555.1188781945.17142.typo3- > english at lists.netfielders.de... >> Hi All -- > [...] >> As an FYI -- I currently am a PM at a company that produces another >> open-source CMS > [...] >> Thanks Denise > > Yeah, thats what mankind needs, reeventing the wheel on and on and > on........ > ... maybe we get the wheel a little rounder... ?!? > ;-) > > You cannot tell if he re-invents the wheel.... and I think there is plenty of room for rock solid Enterprise level Open Source CMS systems.... I hope we get the URL of the new CMS one day so we can see what's happening over there. From typo3-english at lists.netfielders.de Tue Sep 4 15:00:55 2007 From: typo3-english at lists.netfielders.de (Brian) Date: Tue, 04 Sep 2007 08:00:55 CDT Subject: [TYPO3] Wrap the content in RTE (htmlArea RTE) Message-ID: Hello all. I didn't see in any of the documentation how to do this and wasn't able to figure it out from the examples they gave but essentially what I am looking to do is on a specific page, wrap all the content coming from the RTE around a div tag. I'm assuming I need to place some code in the TSconfig for that page but I am not sure what I need to put in there. From nightowl at galnet.dk Tue Sep 4 15:22:28 2007 From: nightowl at galnet.dk (Brian Bendtsen) Date: Tue, 04 Sep 2007 15:22:28 +0200 Subject: [TYPO3] Rendering a tt_content field as an image In-Reply-To: References: Message-ID: Tyler Kraft skrev: > Hi, > > Well lib.footer.conf.tt_content.file.10 is a content object (TEXT, COA, > HTML what ever you choose really) so you could apply stdWrap to it and > use the powers of parseFunc or any other stdWrap properties to strip the > html and fix your characters for you. > > hth Hi I have tried with this: 10.htmlSpecialChars = 1 10.parseFunc =< lib.parseFunc but it doesnt work. I cant get rid of   in my image. I dont understand why it is so complicated to get what I want. I use this method quite often: lib.footer = RECORDS lib.footer.table = tt_content lib.footer.source = 3 and it doesn't need any "special treatment" to be shown like it should. Is there no easier way to turn this into a graphic? /Brian From oliver at liquidlight.co.uk Tue Sep 4 15:31:19 2007 From: oliver at liquidlight.co.uk (Oliver Rowlands) Date: Tue, 04 Sep 2007 14:31:19 +0100 Subject: [TYPO3] Wrap the content in RTE (htmlArea RTE) In-Reply-To: References: Message-ID: Hi Brian, Create an extension template then add the following TS setup: tt_content.text.20.wrap =
    |
    Regards, oliver Brian wrote: > Hello all. I didn't see in any of the documentation how to do this and wasn't able to figure it out from the examples they gave but essentially what I am looking to do is on a specific page, wrap all the content coming from the RTE around a div tag. I'm assuming I need to place some code in the TSconfig for that page but I am not sure what I need to put in there. -- Oliver Rowlands :: Liquid Light :: E - oliver at liquidlight.co.uk W - http://www.liquidlight.co.uk T - 00 44 (0)845 6 58 88 35 F - 00 44 (0)845 6 58 44 35 From typo3news at otherone.de Tue Sep 4 15:32:34 2007 From: typo3news at otherone.de (Uschi Renziehausen) Date: Tue, 04 Sep 2007 15:32:34 +0200 Subject: [TYPO3] Wrap the content in RTE (htmlArea RTE) In-Reply-To: References: Message-ID: Hi Brian Brian wrote: > Hello all. I didn't see in any of the documentation how to do this and wasn't able to figure it out from the examples they gave but essentially what I am looking to do is on a specific page, wrap all the content coming from the RTE around a div tag. I'm assuming I need to place some code in the TSconfig for that page but I am not sure what I need to put in there. I think, this line of code in the setup of your template will do: tt_content.text.20.wrap =
    |
    regards, uschi From headhunterxiii at yahoo.ca Tue Sep 4 15:41:05 2007 From: headhunterxiii at yahoo.ca (Tyler Kraft) Date: Tue, 04 Sep 2007 14:41:05 +0100 Subject: [TYPO3] Wrap the content in RTE (htmlArea RTE) In-Reply-To: References: Message-ID: Hi, and if you need it just on one page you can use either an extension template on that page (and all subpages) or a condition [globalVar = TSFE:id=XX] tt_content.text.20.wrap =
    |
    [global] Ty Uschi Renziehausen wrote: > Hi Brian > > Brian wrote: >> Hello all. I didn't see in any of the documentation how to do this and >> wasn't able to figure it out from the examples they gave but >> essentially what I am looking to do is on a specific page, wrap all >> the content coming from the RTE around a div tag. I'm assuming I need >> to place some code in the TSconfig for that page but I am not sure >> what I need to put in there. > > I think, this line of code in the setup of your template will do: > > tt_content.text.20.wrap =
    |
    > > regards, uschi From patrick at typo3quebec.org Tue Sep 4 16:13:12 2007 From: patrick at typo3quebec.org (Patrick Gaumond) Date: Tue, 04 Sep 2007 10:13:12 -0400 Subject: [TYPO3] High-end gov references In-Reply-To: References: Message-ID: Troels Kj?r Rasmussen wrote: > I was hoping that some of you could give me some good gov TYPO3 > references from your native countries focussing on federal/national > sites with high traffic e.g. ministerien, national branches, offices of > legislation a.s.o. In Province of Qu?bec (Canada) we have plenty of sites. Note that www.bonjourQuebec is available in German... : * http://www.bonjourquebec.com (Tourisme Qu?bec) * http://www.fadq.qc.ca * http://www.mcc.gouv.qc.ca (Min. de la Culture et des Communications) * http://www.opq.gouv.qc.ca (Office des Professions du Qu?bec) Intranets (Not visible) * Intranet du MSG (Minist?re des services gouvernementaux ) * Intranet du CSPQ (Centre de services partag?s Qu?bec) * Intranet du MSSS (Minist?re de la Sant? et des Services sociaux) * Intranet du CSLF (Conseil sup?rieur de la langue fran?aise) * Intranet de la CPTAQ (Commision de Protection du Territoire Agricole Qu?bec) We're working on few others projects too. Patrick Gaumond DMR, Quebec From typo3-english at lists.netfielders.de Tue Sep 4 16:16:39 2007 From: typo3-english at lists.netfielders.de (Brian) Date: Tue, 04 Sep 2007 09:16:39 CDT Subject: [TYPO3] Re: Wrap the content in RTE (htmlArea RTE) References: <23180024.21188910885533.JavaMail.tomcat@secure.tekdevelopment.com> Message-ID: tt_content.text.20.wrap = | is the solution. From wolfgang.illmeyer at gmx.net Tue Sep 4 17:04:14 2007 From: wolfgang.illmeyer at gmx.net (Wolfgang Illmeyer) Date: Tue, 4 Sep 2007 17:04:14 +0200 Subject: [TYPO3] FE-Login with _real_ redirect (HTTP, Location-Header!)? In-Reply-To: References: Message-ID: Am Montag, 3. September 2007 schrieb Wolfgang Illmeyer: > How can I make typo3 do _real_ (HTTP) redirects after login? Just in case anyone else happens to have the same problem: This seems to be a severe design flaw in the general typo3 redirection process. I don't know why, but for some moronic reason the developers seem to think that HTTP-redirects are a bad idea, and they'd rather render a page with uid $y on an url pointing to uid $x than sending a Location-Header. This braindead behaviour not only spawns my problem, but is also the reason why the SEO-people are so pissed off so much, because page-"redirects", as commonly used on root-pages, also just render the _wrong_ page instead of sending a redirect to the correct URL. This leads to the mystical "content duplication". I cannot fix this design flaw myself, but I found a workaround: "jumpurl". It seems to send real HTTP-redirects, and the only thing you need for it is a GET- or POST-variable called "jumpurl", which contains the URL to redirect to. For the login-form, this can be achieved by: tt_content.login.20 { hiddenFields.jumpurl=TEXT hiddenFields.jumpurl.field=alias // uid hiddenFields.jumpurl.wrap=http://example.com/index.php?id=| } This redirects to the current page right after login. However, it is kind of an ugly hack, because a) It doesn't support neither simulatestatic nor realurl b) It is goddamn slow, because the whole page is rendered and then thrown away before the redirect is finally sent. c) you have to put your site url into the template, you can't just throw in some page-uid Greetings Wolfgang From typo3-english at lists.netfielders.de Tue Sep 4 17:23:43 2007 From: typo3-english at lists.netfielders.de (Brian) Date: Tue, 04 Sep 2007 10:23:43 CDT Subject: [TYPO3] TMenu depth Message-ID: Suppose I have a menu structure that goes 10 levels deep (I don't really but just suppose). Is there a way to do something like: myMenu = HMENU # First level menu-object, textual myMenu.x = TMENU myMenu.x { #tt_content.stdWrap.dataWrap > # Normal state properties NO.subst_elementUid = 1 NO.allWrap =
  • |
  • NO.ATagTitle = } So that if I wanted to add an 11th level I wouldn't need to modify the template? I suppose the question I need answered is there a way to access the level and set some property for all the levels? From tania.morales at gmail.com Tue Sep 4 17:44:18 2007 From: tania.morales at gmail.com (Tania Morales) Date: Tue, 4 Sep 2007 10:44:18 -0500 Subject: [TYPO3] Error using typo3/sysext/rtehtmlarea In-Reply-To: References: Message-ID: Thanks Dmitry, but if i remove the locale ext, then the editor doesn't load at all..I downloaded the version 1.4.4 from the repository and i noticed that the new Array to new Object is not done in that one, I made the change and it works fine now...is it possible to do that change in the 1.4.5 maybe so people can download it from the typo3 repository. Thanks for your help On 9/4/07, Dmitry Dulepov [typo3] wrote: > > Hi! > > Tania Morales wrote: > > Hi list. I have a problem with the Rich Text Editor..as everyone did. > > In my case, i updated my typo3 source from 4.0.4 to 4.1.2, and the > > rtehtmlarea didn't work anymore, it only shows "Editor is being > loaded..In > > any browser", so in some blogs i found that the problem should be fixed > by > > using the typo3 source extension instead of the typo3conf one. > > I though it would be a good idea just to create a symlink from the > > typo3/sysext/rtehtmlarea to my typo3conf/ext/... > > No this idea is bad because it does not update paths inside extension. > If you upgraded, you possibly have old rtehtmlarea as local extension. > It must be removed. Not just uninstalled but removed completely. Then > sysext will work. > > -- > Dmitry Dulepov > TYPO3 freelancer / TYPO3 core team member > Web: http://typo3bloke.net/ > Skype: callto:liels_bugs > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english > -- T at ni@ From bedlamhotel at gmail.com Tue Sep 4 18:13:56 2007 From: bedlamhotel at gmail.com (Christopher Torgalson) Date: Tue, 4 Sep 2007 09:13:56 -0700 Subject: [TYPO3] TMenu depth In-Reply-To: References: Message-ID: Hi, On 9/4/07, Brian wrote: > Suppose I have a menu structure that goes 10 levels deep (I don't really but just suppose). Is there a way to do something like: > > myMenu = HMENU > > # First level menu-object, textual > myMenu.x = TMENU > myMenu.x { > #tt_content.stdWrap.dataWrap > > > # Normal state properties > NO.subst_elementUid = 1 > NO.allWrap =
  • |
  • > NO.ATagTitle = > } > > So that if I wanted to add an 11th level I wouldn't need to modify the template? I suppose the question I need answered is there a way to access the level and set some property for all the levels? Personally, I'd use CSS for this. See example TS and CSS below: ### TS ### lib.menu = HMENU lib.menu { 1 = TMENU 1 { noBlur = 1 wrap = NO { wrapItemAndSub =
  • |
  • } ACT = 1 ACT < .NO ACT.ATagParams = class="current" } 2 < .1 2.wrap =
      |
    3 < .2 4 < .2 } /* CSS */ #navigation li { background:#f30; } #navigation ul li { background:#f60; } #navigation ul ul li { background:#f90; } #navigation ul ul ul li { background:#fc0; } -- Christopher Torgalson http://www.typo3apprentice.com/ From adrien at modulis.ca Tue Sep 4 18:15:58 2007 From: adrien at modulis.ca (Adrien Laurent) Date: Tue, 4 Sep 2007 12:15:58 -0400 Subject: [TYPO3] modulis.ca: Typo3 Job offer Message-ID: Hi, Modulis is a Canadian company that focus on typo3 development, we are looking for remote typo3 programmers. If you are interested to work with us, please send us your r?sum? with a list of references (url) to: info at modulis.ca Thank you, Sincerely, Adrien -- Adrien Laurent (514) 284-2020 x 202 http://www.modulis.ca From kraftb at kraftb.at Tue Sep 4 19:01:15 2007 From: kraftb at kraftb.at (Bernhard Kraft) Date: Tue, 04 Sep 2007 19:01:15 +0200 Subject: [TYPO3] Problems with realurl and different domains In-Reply-To: References: Message-ID: Andreas Balzer wrote: > What am I'm doing wrong? What is your realURL config in typo3conf/localconf.php looking like ? I have one for a multi-domain setup which looks like the following: The "main" setup ... and especially look at the "per-site" setup below: --------------------- $TYPO3_CONF_VARS['EXTCONF']['realurl']['_DEFAULT'] = Array( 'init' => array( 'appendMissingSlash' => 'ifNotFile', 'enableCHashCache' => 1, 'rootPageID' => 5, ), 'preVars' => Array( Array( 'GETvar' => 'L', 'valueMap' => Array( 'en' => '1', ), 'noMatch' => 'bypass', ), ), 'filename' => Array( 'index' => Array( 'page.html' => Array( 'keyValues' => Array( 'type' => 0, ), ), '_DEFAULT' => Array( 'keyValues' => Array( ), ), ), ), 'postVarSets' => Array( '_DEFAULT' => Array( 'print' => Array( Array( 'GETvar' => 'print', ), ), 'nid' => Array( Array( 'GETvar' => 'tx_ttnews[tt_news]', ), ), ..... } ---------------------- per site setup: ------------------------ $TYPO3_CONF_VARS['EXTCONF']['realurl']['doris.viadonau.mmc.at'] = $TYPO3_CONF_VARS['EXTCONF']['realurl']['_DEFAULT']; $TYPO3_CONF_VARS['EXTCONF']['realurl']['doris.viadonau.mmc.at']['init']['rootPageID'] = 3; $TYPO3_CONF_VARS['EXTCONF']['realurl']['doris.viadonau.mmc.at']['pagePath']['rootpage_id'] = 3; ------------------------ so you will need to make a copy of the "_DEFAULT" realURL entry - with the name of your other domain ... and then modify the "init/rootPageID" parameter and "pagePath/rootpage_id" parameter to the correct values ... at least that worked for me ... greets, Bernhard From kraftb at kraftb.at Tue Sep 4 19:04:25 2007 From: kraftb at kraftb.at (Bernhard Kraft) Date: Tue, 04 Sep 2007 19:04:25 +0200 Subject: [TYPO3] New doktype shortcut does not work In-Reply-To: References: Message-ID: Lucas Birk wrote: > Hi all, > I have created a new doktype in my TCA so that I can have a page that > behaves like a shortcut but looks different in the page tree. I have > successfully added the page doktype and my new icon but the shortcut > does not work; the FE-page show normally without redirecting to the > selected shorcut page. > I answered your posting about this problem in the dev list ... the answer to your problem (special icons) is: http://think-open.org/kraftb/index/T3X_kb_page_icon-0_0_1.t3x ... will be available in TER in a few hours. greets, Bernhard From kraftb at kraftb.at Tue Sep 4 19:09:39 2007 From: kraftb at kraftb.at (Bernhard Kraft) Date: Tue, 04 Sep 2007 19:09:39 +0200 Subject: [TYPO3] Rendering a tt_content field as an image In-Reply-To: References: Message-ID: Brian Bendtsen wrote: > Hi > > The content from the bodytext field is not rendered the right way. > Special charecteres like ? are not included in the transformation to an > image file. The same goes for formatting, like bold and italics. > > I guess I need to tell the typoscript to parse the text as html but im > not sure where or how I do this. Hi ! I guess it would be the simples way to check the "diable RTE" checkbox for this single content element - and take care that no   or other stuff is filled into the bodytext field ... if this is the case the text will render properly ... if you need to take care of line-breaks (wrap long lines) i have an extension ready - it is also capable of doing block-lines (each line extacly the same length) ... but this extension isn't my own work - at least not completly so i would have to ask for permission from the original author before. greets, Bernhard From bjorn at qprs.nl Tue Sep 4 20:22:15 2007 From: bjorn at qprs.nl (=?UTF-8?Q?Bj=C3=B6rn_Kuipers?=) Date: Tue, 4 Sep 2007 20:22:15 +0200 Subject: [TYPO3] BE defLangBinding=1 hides left-over translated content? Message-ID: Hello everyone, My question is: Why are translated versions of content hidden when the parent-element is deleted (in Page-view mode)? This seems to only happen when you set the following typoscript in the TSconfig: mod.web_layout.defLangBinding = 1 As soon as I comment this out, the translated versions of the content-element are visible in the backend and can also be edited, _but_ then the layout gets messy: elements don't get aligned horizontally. Is there a way to see the hidden elements and align them horizontally as well? Like so (see Text 3 that in my example is deleted but the translated version align up with each other): | Default | Englisch | Deutsch | |--------------|-----------------|----------------| | Text 1 | Trans. 1 | - | |--------------|-----------------|----------------| | Text 2 | Trans. 2 | Transl 2 | |--------------|-----------------|----------------| | | Trans. 3 | Transl 3 | |--------------|-----------------|----------------| Kind regards, Bj?rn From typo3 at andreas-balzer.de Tue Sep 4 20:42:26 2007 From: typo3 at andreas-balzer.de (Andreas Balzer) Date: Tue, 04 Sep 2007 20:42:26 +0200 Subject: [TYPO3] Problems with realurl and different domains In-Reply-To: References: Message-ID: Hi! Thanks for your answer :) Bernhard Kraft schrieb: > What is your realURL config in typo3conf/localconf.php looking like ? As I don't have enough knowledge about Real URL yet I just use the configuration of typo3.org: array ( 'init' => array ( 'enableCHashCache' => '1' 'appendMissingSlash' => 'ifNotFile' 'enableUrlDecodeCache' => '1' 'enableUrlEncodeCache' => '1' ), 'redirects' => array ( ), 'preVars' => array ( '0' => array ( 'GETvar' => 'no_cache' 'valueMap' => array ( 'nc' => '1' ), 'noMatch' => 'bypass' ), '1' => array ( 'GETvar' => 'L' 'valueMap' => array ( 'dk' => '2' 'de' => '1' ), 'noMatch' => 'bypass' ), ), 'pagePath' => array ( 'type' => 'user' 'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main' 'spaceCharacter' => '-' 'languageGetVar' => 'L' 'expireDays' => '7' 'rootpage_id' => '2' ), 'fixedPostVars' => array ( ), 'postVarSets' => array ( '_DEFAULT' => array ( 'archive' => array ( '0' => array ( 'GETvar' => 'tx_ttnews[year]' ), '1' => array ( 'GETvar' => 'tx_ttnews[month]' 'valueMap' => array ( 'january' => '01' 'february' => '02' 'march' => '03' 'april' => '04' 'may' => '05' 'june' => '06' 'july' => '07' 'august' => '08' 'september' => '09' 'october' => '10' 'november' => '11' 'december' => '12' ), ), ), 'browse' => array ( '0' => array ( 'GETvar' => 'tx_ttnews[pointer]' ), ), 'select_category' => array ( '0' => array ( 'GETvar' => 'tx_ttnews[cat]' ), ), 'article' => array ( '0' => array ( 'GETvar' => 'tx_ttnews[tt_news]' 'lookUpTable' => array ( 'table' => 'tt_news' 'id_field' => 'uid' 'alias_field' => 'title' 'addWhereClause' => ' AND NOT deleted' 'useUniqueCache' => '1' 'useUniqueCache_conf' => array ( 'strtolower' => '1' 'spaceCharacter' => '-' ), ), ), '1' => array ( 'GETvar' => 'tx_ttnews[swords]' ), ), ), ), 'fileName' => array ( 'index' => array ( 'rss.xml' => array ( 'keyValues' => array ( 'type' => '100' ), ), 'rss091.xml' => array ( 'keyValues' => array ( 'type' => '101' ), ), 'rdf.xml' => array ( 'keyValues' => array ( 'type' => '102' ), ), 'atom.xml' => array ( 'keyValues' => array ( 'type' => '103' ), ), ), ), ), 'buzz.typo3.org' => array ( 'init' => array ( 'enableCHashCache' => '1' 'appendMissingSlash' => 'ifNotFile' 'enableUrlDecodeCache' => '1' 'enableUrlEncodeCache' => '1' ), 'redirects' => array ( ), 'preVars' => array ( '0' => array ( 'GETvar' => 'no_cache' 'valueMap' => array ( 'nc' => '1' ), 'noMatch' => 'bypass' ), '1' => array ( 'GETvar' => 'L' 'valueMap' => array ( 'dk' => '2' 'de' => '1' ), 'noMatch' => 'bypass' ), ), 'pagePath' => array ( 'type' => 'user' 'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main' 'spaceCharacter' => '-' 'languageGetVar' => 'L' 'expireDays' => '7' 'rootpage_id' => '95' ), 'fixedPostVars' => array ( ), 'postVarSets' => array ( '_DEFAULT' => array ( 'archive' => array ( '0' => array ( 'GETvar' => 'tx_ttnews[year]' ), '1' => array ( 'GETvar' => 'tx_ttnews[month]' 'valueMap' => array ( 'january' => '01' 'february' => '02' 'march' => '03' 'april' => '04' 'may' => '05' 'june' => '06' 'july' => '07' 'august' => '08' 'september' => '09' 'october' => '10' 'november' => '11' 'december' => '12' ), ), ), 'browse' => array ( '0' => array ( 'GETvar' => 'tx_ttnews[pointer]' ), ), 'select_category' => array ( '0' => array ( 'GETvar' => 'tx_ttnews[cat]' ), ), 'article' => array ( '0' => array ( 'GETvar' => 'tx_ttnews[tt_news]' 'lookUpTable' => array ( 'table' => 'tt_news' 'id_field' => 'uid' 'alias_field' => 'title' 'addWhereClause' => ' AND NOT deleted' 'useUniqueCache' => '1' 'useUniqueCache_conf' => array ( 'strtolower' => '1' 'spaceCharacter' => '-' ), ), ), '1' => array ( 'GETvar' => 'tx_ttnews[swords]' ), ), ), ), 'fileName' => array ( 'index' => array ( 'rss.xml' => array ( 'keyValues' => array ( 'type' => '100' ), ), 'rss091.xml' => array ( 'keyValues' => array ( 'type' => '101' ), ), 'rdf.xml' => array ( 'keyValues' => array ( 'type' => '102' ), ), 'atom.xml' => array ( 'keyValues' => array ( 'type' => '103' ), ), ), ), ), ); ?> How can I merge these? Do I just have to add your array elements to the one of typo3.org? Andreas From c.coleman at rapidfyre.net Tue Sep 4 21:23:59 2007 From: c.coleman at rapidfyre.net (Charles Coleman) Date: Tue, 4 Sep 2007 12:23:59 -0700 Subject: [TYPO3] Strange behavior on BE. In-Reply-To: References: Message-ID: I also had this happen for a very brief time but then the behavior just *went away* for some reason. I am beginning to wonder if this problem is an issue with the core. Has anyone else had this trouble? wrote in message news:mailman.2189.1188413237.17142.typo3-english at lists.netfielders.de... > Hi All, > > I am having behavior on the backend that I have never seen before, and I > have > not been able to solve the issues it brings. I'm hoping someone here has > seen this before and can help me. > > The basic problem is that on the backend, when I enter Web->Page(TV) I see > the > normal page tree, and to the right of it all I get is a page preview of > the > selected page. I have not been able to reset the default so it shows me > the > normal TemplaVoila page editing view, nor can I get to the page editing > view > in any other way. After fighting with it for a while, I tried clearing > the > database and starting over. At first everything worked well. I rebuilt > my > template in TV and continued my work. At some point, the issue returned, > and > I again was unable to get Web->Page(TV) to work properly. At that point I > decided to totally reinstall everything and start with a fresh database. > Again, things seemed normal for a while, till I noticed Web->Page(TV) > again > was only displaying a page preview. > > I have never been able to nail down what I do that shifts Web-Page(TV) > from > showing the page tree and page editing view to showing the page tree and > page > preview. In all cases, it happened well after TV was set up with a > functioning template, and well after I had made my last changes to the > system > setup. Any ideas are very much appreciated. > > I have done quite a bit of googling, reading, consulting the local Typo3 > guru, > etc, and have not been able to solve it. > > Here is my setup: > > Typo3 4.1.2 on Ubuntu 7.04 > Extensions: > > Realurl Configurator > RealURL Management > TemplaVoila! > > I'm happy to provide any additional information that could be helpful. > > > Cheers, > > James From c.coleman at rapidfyre.net Tue Sep 4 21:38:19 2007 From: c.coleman at rapidfyre.net (Charles Coleman) Date: Tue, 4 Sep 2007 12:38:19 -0700 Subject: [TYPO3] mailformplus for regular users In-Reply-To: References: Message-ID: This is not true. It is much more intensive in the actual HTML template area. This does not require admin priv and can be configured with BE user rights to edit files. You also would need to enable creating/editing/etc of mailformplus content elements for the same BE user or group. "Bing Du" wrote in message news:mailman.1775.1187992855.17142.typo3-english at lists.netfielders.de... > Hi, > > By just looking at its manual, seems to me like mailformplus uses > typoscript intensively to work properly. But for regular non-admin users, > if they don't have access to web->template, how can they put typoscript > configurations in setup? > > Thanks, > > Bing From proescho-typo3 at informatik.uni-muenchen.de Tue Sep 4 23:34:37 2007 From: proescho-typo3 at informatik.uni-muenchen.de (Timo Proescholdt) Date: Tue, 04 Sep 2007 23:34:37 +0200 Subject: [TYPO3] website structure / menu Message-ID: Hello! first of all hi everybody! I have been playing around with typo3 for some time, but it's the first time I contact the community! I hope to be learning a lot from you but also being able to contribute something.. In any case I have to say that I, although it's not that shiny than other players, already love it! Well.. to the facts. I'm in the process of building a bigger typo3 powered website and would like to ask for some advice regarding the principal layout. The website provides information about cities. There is an entry page A which lets the user select a city, then there are pages B,C,D.. which hold information about the respective city and have all the same layout. My question is how to best built up the site structure so as to minimize redundancy. Obviously page A needs a template and so do B,C,D. (all the same). So what I was thinking was a structure like this -> B / root -> A -> C \ -> D with root having the common template for B,C,D and A an extra import. But my problem is that that way A inherits the template from root. On the other hand A has to be the father of B,C,D since it has to list its children.. I'm sure there is a way out of this, like having A extra and letting it generate a menu of non children, but I could not find out how to do that. thanks for any help! Timo Proescholdt From info at bednarik.org Tue Sep 4 23:30:35 2007 From: info at bednarik.org (Jan Bednarik) Date: Tue, 04 Sep 2007 23:30:35 +0200 Subject: [TYPO3] Problems with realurl and different domains In-Reply-To: References: Message-ID: > As I don't have enough knowledge about Real URL yet I just use the In that case you might want to try CoolURI instead. -- Jan Bednarik www.bednarik.org - web about Typo3 in czech From catepeter at optusnet.com.au Wed Sep 5 00:55:46 2007 From: catepeter at optusnet.com.au (Cate & Peter) Date: Wed, 5 Sep 2007 08:55:46 +1000 Subject: [TYPO3] website structure / menu In-Reply-To: <24671032.1188942016670.JavaMail.root@m48> Message-ID: Hi Timo - welcome :) >My question is how to best built up the site structure so as to >minimize redundancy. Obviously page A needs a template and so >do B,C,D. (all the same). >So what I was thinking was a structure like this > -> B > / >root -> A -> C > \ > -> D > >with root having the common template for B,C,D and >A an extra import. >But my problem is that that way A inherits the template >from root. On the other hand A has to be the father of >B,C,D since it has to list its children.. > >I'm sure there is a way out of this, like having A extra >and letting it generate a menu of non children, but I could >not find out how to do that. Yes there is :) - I can only tell you one way, because I only am familiar with one method, but I know there are several choices. If you choose to use templavoila as your template building method, in the page properties towards the bottom of the form are the options for setting the template to use ... after setting the template for the page, there is an option "subpages - page template structure" where you can select a new template for all subpages. HTH Cate From ab.becker at web.de Wed Sep 5 05:54:12 2007 From: ab.becker at web.de (Andreas Becker) Date: Wed, 5 Sep 2007 10:54:12 +0700 Subject: [TYPO3] Problems with realurl and different domains In-Reply-To: References: Message-ID: Hi Andreas here some useful links to add to Jan. http://docs.google.com/View?docid=dd33gg45_3f8j96p Andi 2007/9/5, Jan Bednarik : > > > As I don't have enough knowledge about Real URL yet I just use the > > In that case you might want to try CoolURI instead. > > -- > Jan Bednarik > www.bednarik.org - web about Typo3 in czech > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english > From John.de.Stigter at bedrijvenweb.nl Wed Sep 5 08:01:24 2007 From: John.de.Stigter at bedrijvenweb.nl (John de Stigter) Date: Wed, 5 Sep 2007 08:01:24 +0200 Subject: [TYPO3] Could not fetch translation status In-Reply-To: Message-ID: > Krystian Szymukowicz wrote: > > 'sr_feuser_register' with 50k+ downloads is a good > candidate to join > > the extensions at translation server. If you want to make it happen > > you can ask Dimitry Dulepov to add this extension to > translation server. > > Good idea. Added it there. > Hi, thanks for the reply so far. I tried it again but it still says "Could not fetch translation status" for the "sr_feuser_register" extension. Is this because the dutch translation is not available for sr_feuser_register? Cherios, John From nightowl at galnet.dk Wed Sep 5 08:41:52 2007 From: nightowl at galnet.dk (Brian Bendtsen) Date: Wed, 05 Sep 2007 08:41:52 +0200 Subject: [TYPO3] Rendering a tt_content field as an image In-Reply-To: References: Message-ID: Bernhard Kraft skrev: > Hi ! > > I guess it would be the simples way to check the "diable RTE" checkbox for > this single content element - and take care that no   or other stuff is > filled into the bodytext field ... > > > if this is the case the text will render properly ... > > if you need to take care of line-breaks (wrap long lines) i have an > extension > ready - it is also capable of doing block-lines (each line extacly the same > length) ... > > but this extension isn't my own work - at least not completly so i would > have > to ask for permission from the original author before. > > > greets, > Bernhard Hi Bernhard I can do that, but what if I want some of the text to be bold or italic? Is that not possible? /Brian From dmitry at typo3.org Wed Sep 5 09:07:46 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Wed, 05 Sep 2007 10:07:46 +0300 Subject: [TYPO3] Problems with realurl and different domains In-Reply-To: References: Message-ID: Hi! Andreas Balzer wrote: > As I don't have enough knowledge about Real URL yet I just use the > configuration of typo3.org: This will not work. Manual explains that if you use more thsan one web site, you need to configure realurl to know where your sutes are. You surely need not to have configuration for buzz.typo3.org in your file but you need configuration for your domains and correct rootpage_id there. As soon as you change domain names in configuration and set correct rootpage_id, it will work. You may need to clear cache though. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From dmitry at typo3.org Wed Sep 5 09:09:16 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Wed, 05 Sep 2007 10:09:16 +0300 Subject: [TYPO3] Error using typo3/sysext/rtehtmlarea In-Reply-To: References: Message-ID: Tania Morales wrote: > Thanks Dmitry, but if i remove the locale ext, then the editor doesn't load > at all..I downloaded the version 1.4.4 from the repository and i noticed > that the new Array to new Object is not done in that one, I made the change > and it works fine now...is it possible to do that change in the 1.4.5 maybe > so people can download it from the typo3 repository. Thanks for your help You must not download rtehtmlarea from repository because it is not for 4.1.x version! You must use what comes with typo3. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From pmark23 at yahoo.com Wed Sep 5 09:09:44 2007 From: pmark23 at yahoo.com (Mark Pi) Date: Wed, 05 Sep 2007 13:09:44 +0600 Subject: [TYPO3] UTF-8 works for Firefox, NOT for Explorer Message-ID: UTF-8 is working for FireFox, but not --completely-- for Explorer. Site has three languages, first two work correctly (English and Russian), but third has some missing characters (extensions to the Russian character set, but still part of the utf-8 standard) -- but only in Explorer. Firefox works fine. To make things more confusing, the Explorer title-bar shows the correct encoding. I checked the utf-8 troubleshooting page, checked that the page-encoding is set right in Explorer, and double-checked that I entered the characters properly in the first place. The most confusing thing is that it works fine in Firefox (well... not really that confusing -- just frustrating!) Any ideas? From nightowl at galnet.dk Wed Sep 5 10:16:11 2007 From: nightowl at galnet.dk (Brian Bendtsen) Date: Wed, 05 Sep 2007 10:16:11 +0200 Subject: [TYPO3] One site - multiple domain records - navigation problem Message-ID: Hi I still have this annoying problem with one website and multiple domains. I think my previous post may have been misunderstood so now I will try and clarify my problem by posting a link to my site. The address is http://kursus.mentor-it.dk I want to have a domain record per menu item in the right menu. So if the user types kursus1.mentor-it.dk you go directly to menu item 1, if the user types kursus2.mentor-it.dk you go directly to menu item 2 and so on. The user still have to be able to go to one of the other top menu items. This is my primary problem. Right now Im testing with one domain record kursus1.mentor-it.dk on the page "Arbejdernes boligforening" and if you click this, the correct content is shown and the browsers address field is changed to kursus1.mentor-it.dk/index.php?id=22. Thats as it should be, but then you are stuck on this branch of the page tree. You cant go to any of the other pages in the right menu. Hope this clarifies my problem and someone knows a solution. Brian Bendtsen From vladimir.kubak at upol.cz Wed Sep 5 10:30:39 2007 From: vladimir.kubak at upol.cz (Vladimir Kubak) Date: Wed, 05 Sep 2007 10:30:39 +0200 Subject: [TYPO3] One site - multiple domain records - navigation problem In-Reply-To: References: Message-ID: I?m using simple redirection to the same page on the original site. Just check the redirection and fill up the field with the address http://kursus.mentor-it.dk/index.php?id=22 Brian Bendtsen napsal(a): > Hi > > I still have this annoying problem with one website and multiple domains. > > I think my previous post may have been misunderstood so now I will try > and clarify my problem by posting a link to my site. > > The address is http://kursus.mentor-it.dk > > I want to have a domain record per menu item in the right menu. > > So if the user types kursus1.mentor-it.dk you go directly to menu item > 1, if the user types kursus2.mentor-it.dk you go directly to menu item 2 > and so on. > > The user still have to be able to go to one of the other top menu items. > This is my primary problem. > > Right now Im testing with one domain record kursus1.mentor-it.dk on the > page "Arbejdernes boligforening" and if you click this, the correct > content is shown and the browsers address field is changed to > kursus1.mentor-it.dk/index.php?id=22. > > Thats as it should be, but then you are stuck on this branch of the page > tree. You cant go to any of the other pages in the right menu. > > Hope this clarifies my problem and someone knows a solution. > > Brian Bendtsen > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english From John.de.Stigter at bedrijvenweb.nl Wed Sep 5 10:35:00 2007 From: John.de.Stigter at bedrijvenweb.nl (John de Stigter) Date: Wed, 5 Sep 2007 10:35:00 +0200 Subject: [TYPO3] One site - multiple domain records - navigation problem In-Reply-To: Message-ID: Why use redirection? You should just be able to place a domain record on any page in your tree without consequences for you menu. (As long as you don't place a template on that page that clears the setup or acts like a root template. And keep your config.baseUrl to kursus.mentor-it.dk.) By the way, the page http://kursus.mentor-it.dk/ isn't firefox proof. Cheerios, John > -----Oorspronkelijk bericht----- > Van: typo3-english-bounces at lists.netfielders.de > [mailto:typo3-english-bounces at lists.netfielders.de] Namens > Brian Bendtsen > Verzonden: woensdag 5 september 2007 10:16 > Aan: typo3-english at lists.netfielders.de > Onderwerp: [TYPO3] One site - multiple domain records - > navigation problem > > Hi > > I still have this annoying problem with one website and > multiple domains. > > I think my previous post may have been misunderstood so now I > will try and clarify my problem by posting a link to my site. > > The address is http://kursus.mentor-it.dk > > I want to have a domain record per menu item in the right menu. > > So if the user types kursus1.mentor-it.dk you go directly to > menu item 1, if the user types kursus2.mentor-it.dk you go > directly to menu item 2 and so on. > > The user still have to be able to go to one of the other top > menu items. > This is my primary problem. > > Right now Im testing with one domain record > kursus1.mentor-it.dk on the page "Arbejdernes boligforening" > and if you click this, the correct content is shown and the > browsers address field is changed to > kursus1.mentor-it.dk/index.php?id=22. > > Thats as it should be, but then you are stuck on this branch > of the page tree. You cant go to any of the other pages in > the right menu. > > Hope this clarifies my problem and someone knows a solution. > > Brian Bendtsen > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english > From John.de.Stigter at bedrijvenweb.nl Wed Sep 5 10:42:59 2007 From: John.de.Stigter at bedrijvenweb.nl (John de Stigter) Date: Wed, 5 Sep 2007 10:42:59 +0200 Subject: [TYPO3] Could not fetch translation status In-Reply-To: Message-ID: > > Krystian Szymukowicz wrote: > > > 'sr_feuser_register' with 50k+ downloads is a good > > candidate to join > > > the extensions at translation server. If you want to make > it happen > > > you can ask Dimitry Dulepov to add this extension to > > translation server. > > > > Good idea. Added it there. > > > > > Hi, thanks for the reply so far. I tried it again but it > still says "Could not fetch translation status" for the > "sr_feuser_register" > extension. > > Is this because the dutch translation is not available for > sr_feuser_register? > > Cherios, > John I downgraded back to 2.5.1 back-up version I had for the time beeing. Why are there so few translations avaialbe? Is this because of the TER2 implementation? From kw at hovsa.dk Wed Sep 5 10:47:17 2007 From: kw at hovsa.dk (Kristian Wind) Date: Wed, 5 Sep 2007 10:47:17 +0200 Subject: [TYPO3] Ending slashes on tags in , why? In-Reply-To: References: Message-ID: Hi! Got the same problem! How can I tell Typo3 to not adding the ending slashes: Fibertel A/S: Forside Best regards Kristian kw at hovsa.dk Den 19/04/2007 kl. 9.45 skrev Kasper Ligaard: > S?ndor N?meth skrev: >> Hy, >> >> 2007/4/19, Kasper Ligaard : >>> I am trying to output html 4.01 transitional, but Typo3 puts >>> slashes on >>> the tags in my -part >> >> why is this a problem for you? The W3C validator fails on it? Because >> this is an XHTML compliant mark of ending a tag which has no closing >> tag. > Yes the problem is Typo3 puts in xhtml when I specify html. The ending > slashes are not allowed in html 4.01 trans. > > Regards, Kasper > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english From tapio.markula at xetpoint.fi Wed Sep 5 11:04:36 2007 From: tapio.markula at xetpoint.fi (Tapio Markula) Date: Wed, 05 Sep 2007 12:04:36 +0300 Subject: [TYPO3] tcdmail2danewsletter Message-ID: Hi I installed txdirectmail but noticed that it misses subscription. You have done tcdmail2danewsletter But what it actually does and how I can integrate it with tcdirectmail??? I regard all direct mail related issues for me confusing and difficult to use. From aji.yahya at gmail.com Wed Sep 5 11:20:43 2007 From: aji.yahya at gmail.com (Aji Johannes) Date: Wed, 05 Sep 2007 11:20:43 +0200 Subject: [TYPO3] wil_importcsv Message-ID: Hello List, i am using wil_importcsv for importing fe_users. everything working well but there is no Update of the current UID?s. the Ext. import the data of users in new Fields in the fe_users table with new UID?s do you have any idea about this EXT. many thanks Aji From nightowl at galnet.dk Wed Sep 5 11:57:14 2007 From: nightowl at galnet.dk (Brian Bendtsen) Date: Wed, 05 Sep 2007 11:57:14 +0200 Subject: [TYPO3] One site - multiple domain records - navigation problem In-Reply-To: References: Message-ID: John de Stigter skrev: > Why use redirection? You should just be able to place a domain record on > any page in your tree without consequences for you menu. (As long as you > don't place a template on that page that clears the setup or acts like a > root template. And keep your config.baseUrl to kursus.mentor-it.dk.) > > By the way, the page http://kursus.mentor-it.dk/ isn't firefox proof. > > Cheerios, > John Yeah, I know I have a firefox problem, its on my list. Your tip with config.baseURL almost solved my problem, but when I choose a subpage the domain goes back to kursus.mentor-it.dk, If I can avoid this somehow the problem is solved. Any idea? /Brian From John.de.Stigter at bedrijvenweb.nl Wed Sep 5 12:11:25 2007 From: John.de.Stigter at bedrijvenweb.nl (John de Stigter) Date: Wed, 5 Sep 2007 12:11:25 +0200 Subject: [TYPO3] One site - multiple domain records - navigation problem In-Reply-To: Message-ID: > Yeah, I know I have a firefox problem, its on my list. > > Your tip with config.baseURL almost solved my problem, but > when I choose a subpage the domain goes back to > kursus.mentor-it.dk, If I can avoid this somehow the problem > is solved. > > Any idea? > I doen't go back actually, it just switches to domain set with config.baseUrl. Why do you want the visitor to stay at the kursus1 domain? (As far as I understand you are just using the domain as a option to enter the website at a different point.) If you really want the visitor to stay at that domain you will have to place the domain record in the root of the website and find another solution or go back to using redirects or something. From nightowl at galnet.dk Wed Sep 5 12:22:41 2007 From: nightowl at galnet.dk (Brian Bendtsen) Date: Wed, 05 Sep 2007 12:22:41 +0200 Subject: [TYPO3] One site - multiple domain records - navigation problem In-Reply-To: References: Message-ID: John de Stigter skrev: >> > > I doen't go back actually, it just switches to domain set with > config.baseUrl. Why do you want the visitor to stay at the kursus1 > domain? (As far as I understand you are just using the domain as a > option to enter the website at a different point.) > > If you really want the visitor to stay at that domain you will have to > place the domain record in the root of the website and find another > solution or go back to using redirects or something. Hi "(As far as I understand you are just using the domain as a option to enter the website at a different point.)" This is not the only reason why I use domain records. Im using the extension paymentlib_quickpay for online payment and this ext. needs to check for a domain record to get the correct merchant ID and other information. According to the developer of this extension, this is the only way to use multiple merchant Id's for 1 website. /Brian From vladimir.kubak at upol.cz Wed Sep 5 13:14:01 2007 From: vladimir.kubak at upol.cz (Vladimir Kubak) Date: Wed, 05 Sep 2007 13:14:01 +0200 Subject: [TYPO3] One site - multiple domain records - navigation problem In-Reply-To: References: Message-ID: Then try config.typolinkCheckRootline = 1 I never used it, but maybe it helps. >> >> I doen't go back actually, it just switches to domain set with >> config.baseUrl. Why do you want the visitor to stay at the kursus1 >> domain? (As far as I understand you are just using the domain as a >> option to enter the website at a different point.) >> >> If you really want the visitor to stay at that domain you will have to >> place the domain record in the root of the website and find another >> solution or go back to using redirects or something. > > Hi > > "(As far as I understand you are just using the domain as a > option to enter the website at a different point.)" > This is not the only reason why I use domain records. > > Im using the extension paymentlib_quickpay for online payment and this > ext. needs to check for a domain record to get the correct merchant ID > and other information. > > According to the developer of this extension, this is the only way to > use multiple merchant Id's for 1 website. > > /Brian From aji.yahya at gmail.com Wed Sep 5 13:50:47 2007 From: aji.yahya at gmail.com (Aji Johannes) Date: Wed, 05 Sep 2007 13:50:47 +0200 Subject: [TYPO3] XML Export/Import for Translation >> Multi-Tree Lang. Message-ID: Hello List, i am looking for an Ext. for Exporting/Importing XML files for Translation but for MultiTree Language Conzept. do you have any idea?? Regards Aji From tapio.markula at xetpoint.fi Wed Sep 5 14:07:57 2007 From: tapio.markula at xetpoint.fi (Tapio Markula) Date: Wed, 05 Sep 2007 15:07:57 +0300 Subject: [TYPO3] Creating TCA for a table Message-ID: Hi EXT: Newsletter Subscription Module doesn't have TCA for a table and I would like to create TCA for the table. One field is marked as 'blob'. What to do with it? If I just not define that at all, does Typo3 save the information in that field correctly? From nightowl at galnet.dk Wed Sep 5 15:32:44 2007 From: nightowl at galnet.dk (Brian Bendtsen) Date: Wed, 05 Sep 2007 15:32:44 +0200 Subject: [TYPO3] One site - multiple domain records - navigation problem In-Reply-To: References: Message-ID: Vladimir Kubak skrev: > Then try > config.typolinkCheckRootline = 1 > I never used it, but maybe it helps. I have tried using it but I dont see any difference, what is it suppose to do exactly? /Brian From typo3-english at lists.netfielders.de Wed Sep 5 15:48:16 2007 From: typo3-english at lists.netfielders.de (Brian) Date: Wed, 05 Sep 2007 08:48:16 CDT Subject: [TYPO3] Re: TMenu depth References: <15678753.51188919454281.JavaMail.tomcat@secure.tekdevelopment.com> Message-ID: The answer is not really. From vladimir.kubak at upol.cz Wed Sep 5 16:00:08 2007 From: vladimir.kubak at upol.cz (Vladimir Kubak) Date: Wed, 05 Sep 2007 16:00:08 +0200 Subject: [TYPO3] One site - multiple domain records - navigation problem In-Reply-To: References: Message-ID: Sorry, just saw it in TSref. Never tried it myself. If it doesn't work... Brian Bendtsen napsal(a): > Vladimir Kubak skrev: >> Then try >> config.typolinkCheckRootline = 1 >> I never used it, but maybe it helps. > > I have tried using it but I dont see any difference, what is it suppose > to do exactly? > > /Brian > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english -- ----------------------------------------------------- Vladimir Kubak Univerzita Palackeho v Olomouci vladimir.kubak at upol.cz tel. 585 631 883 From John.de.Stigter at bedrijvenweb.nl Wed Sep 5 16:08:00 2007 From: John.de.Stigter at bedrijvenweb.nl (John de Stigter) Date: Wed, 5 Sep 2007 16:08:00 +0200 Subject: [TYPO3] One site - multiple domain records - navigation problem In-Reply-To: Message-ID: > Hi > > "(As far as I understand you are just using the domain as a > option to enter the website at a different point.)" > This is not the only reason why I use domain records. > > Im using the extension paymentlib_quickpay for online payment > and this ext. needs to check for a domain record to get the > correct merchant ID and other information. > > According to the developer of this extension, this is the > only way to use multiple merchant Id's for 1 website. > You can also use a combination of TypoScript and Apache by using RewriteRule and RewriteCond in your .htaccess file to redirect when the REQUEST_URI is empty. In TypoScript you would have to determine the baseUrl conditionally based on what your HTTP_HOST is. From bedlamhotel at gmail.com Wed Sep 5 16:29:24 2007 From: bedlamhotel at gmail.com (Christopher Torgalson) Date: Wed, 5 Sep 2007 07:29:24 -0700 Subject: [TYPO3] Ending slashes on tags in , why? In-Reply-To: References: Message-ID: On 9/5/07, Kristian Wind wrote: > Hi! > > Got the same problem! How can I tell Typo3 to not adding the ending > slashes: You can't. You'll need to post-process your pages with Tidy, or hack the source. The core team decided a while back that there was no need to support half of the web's current markup languages... -- Christopher Torgalson http://www.typo3apprentice.com/ From nightowl at galnet.dk Wed Sep 5 16:26:20 2007 From: nightowl at galnet.dk (Brian Bendtsen) Date: Wed, 05 Sep 2007 16:26:20 +0200 Subject: [TYPO3] One site - multiple domain records - navigation problem In-Reply-To: References: Message-ID: John de Stigter skrev: >> Hi >> >> "(As far as I understand you are just using the domain as a >> option to enter the website at a different point.)" >> This is not the only reason why I use domain records. >> >> Im using the extension paymentlib_quickpay for online payment >> and this ext. needs to check for a domain record to get the >> correct merchant ID and other information. >> >> According to the developer of this extension, this is the >> only way to use multiple merchant Id's for 1 website. >> > > You can also use a combination of TypoScript and Apache by using > RewriteRule and RewriteCond in your .htaccess file to redirect when the > REQUEST_URI is empty. > > In TypoScript you would have to determine the baseUrl conditionally > based on what your HTTP_HOST is. Hi Im using IIS, not apache. /Brian From dmitry at typo3.org Wed Sep 5 16:30:02 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Wed, 05 Sep 2007 17:30:02 +0300 Subject: [TYPO3] Could not fetch translation status In-Reply-To: References: Message-ID: John de Stigter wrote: > I downgraded back to 2.5.1 back-up version I had for the time beeing. > Why are there so few translations avaialbe? Is this because of the TER2 > implementation? TER does not care. EM always fetches latest available packs. Possibly version 2.5.1 had php language files intead of xml and php files are not editable with current translation process. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From kraftb at kraftb.at Wed Sep 5 17:25:04 2007 From: kraftb at kraftb.at (Bernhard Kraft) Date: Wed, 05 Sep 2007 17:25:04 +0200 Subject: [TYPO3] Creating TCA for a table In-Reply-To: References: Message-ID: Tapio Markula wrote: > Hi > > EXT: Newsletter Subscription Module > > doesn't have TCA for a table It doesn't have TCA for a table - it hasn't got a TCA for any table. There is no table defined for the ext "direct_mail_subscription" Reason: tt_address - which gets used to store address data is already a basic table of TYPO3. (Just install extension tt_address) > and I would like to create TCA for the table. For which table ? Please write the name of the table instead of "the table" I cannot guess it ... > One field is marked as 'blob'. Which field ? Again a name would help as I can really not guess what you are talking about. > What to do with it? That depends on what you want to achieve ... > If I just not define that at all, does Typo3 save the information in > that field correctly? I currently do not really understand what your problem is ... Please write about which table you are talking. And what and how you want to fill data into these field ... using the T3 backend forms ? or by some custom extension ?? T3 will not overwrite the field if you do not include it in the TCA for the respective table. PS: I know many people do not really understand what you are writing but I try to help ... greets, Bernhard From kraftb at kraftb.at Wed Sep 5 17:32:33 2007 From: kraftb at kraftb.at (Bernhard Kraft) Date: Wed, 05 Sep 2007 17:32:33 +0200 Subject: [TYPO3] tt_news category menu and images In-Reply-To: References: Message-ID: Hi ! Cray Flatline wrote: > renderObj = COA > # renderObj.wrap =
  • |
  • > renderObj { > stdWrap.typolink.parameter=32 > stdWrap.typolink.additionalParams.dataWrap = > &tx_ttnews[cat]={field:uid} > stdWrap.typolink.wrap =
  • |
  • > 10 = TEXT > 10 { > field = title > wrap = | > } > 20 = TEXT > 20 { > field = description > wrap =
    |
    > } > } > } Add: 30 = IMAGE 30 { file.import.field = image # max width in pixels file.import.maxW = 320 } and after the description an image will get generated ... see: http://typo3.org/documentation/document-library/references/doc_core_tsref/4.1.0/view/8/6/ greets, Bernhard From christian at kitsunet.de Wed Sep 5 18:15:55 2007 From: christian at kitsunet.de (=?ISO-8859-1?Q?=22Kitsunet_=28Christian_M=FCller=29=22?=) Date: Wed, 05 Sep 2007 18:15:55 +0200 Subject: [TYPO3] TMenu depth In-Reply-To: References: <15678753.51188919454281.JavaMail.tomcat@secure.tekdevelopment.com> Message-ID: Brian wrote: > The answer is not really. Not really, but you could prepare your template with 20 levels, so you do not need to change ist anytime soon. It does not hurt to have that definition, maybe besides some very small speed hit. But there is no x level or similar. From tapio.markula at xetpoint.fi Wed Sep 5 19:33:35 2007 From: tapio.markula at xetpoint.fi (Tapio Markula) Date: Wed, 05 Sep 2007 20:33:35 +0300 Subject: [TYPO3] Creating TCA for a table In-Reply-To: References: Message-ID: Bernhard Kraft kirjoitti: > Tapio Markula wrote: >> Hi >> >> EXT: Newsletter Subscription Module >> >> doesn't have TCA for a table > > It doesn't have TCA for a table - it hasn't got a TCA for any table. > There is no table defined for the ext "direct_mail_subscription" > Reason: tt_address - which gets used to store address data is already > a basic table of TYPO3. (Just install extension tt_address) > > >> and I would like to create TCA for the table. > For which table ? tx_danewslettersubscription_furels in order to easy way delete unwanted items - for example by accident done duplicates > > >> One field is marked as 'blob'. > Which field ? datacontent >> What to do with it? > That depends on what you want to achieve ... > > >> If I just not define that at all, does Typo3 save the information in >> that field correctly? > I currently do not really understand what your problem is ... if I would create TCA form for tx_danewslettersubscription_furels but leaving off 'datacontent' because of that it is blob. > > Please write about which table you are talking. And what and how you want > to fill data into these field ... using the T3 backend forms ? yes - creating TCA for it > T3 will not overwrite the field if you do not include it in the TCA for the > respective table. ok - I can leave off the field. but how normally 'blob' field has been handled in TCA forms. From michiel at netcreators.com Wed Sep 5 20:48:22 2007 From: michiel at netcreators.com (Michiel Roos [netcreators]) Date: Wed, 05 Sep 2007 20:48:22 +0200 Subject: [TYPO3] Looking for someone to implement a small Typo3 website by end of the month In-Reply-To: References: Message-ID: Hi Denise, Your image stream is offline: WordPress database error: [Table 'wp_falbum_cache' is marked as crashed and should be repaired]. Please repair the crashed tables. Regards, Michiel Roos -- Netcreators BV :: creation and innovation www.netcreators.com From ben at netcreators.com Wed Sep 5 21:58:27 2007 From: ben at netcreators.com (ben van 't ende [netcreators]) Date: Wed, 05 Sep 2007 21:58:27 +0200 Subject: [TYPO3] captcha.php Message-ID: Heyla, I use the captcha library by Kasper with mailforms thru the extensio nd_antispam. The captcha.php script does not allow the font to be enlarged. It is bearably readable. Has anyone adapted the script so you can resize the font and use a ttf font? gRTz ben -- netcreators :: creation and innovation www.netcreators.com - www.typo3.nl Interesse in werken bij Netcreators? http://www.netcreators.com/bedrijf/vacatures/ From patrick at typo3quebec.org Wed Sep 5 22:13:26 2007 From: patrick at typo3quebec.org (Patrick Gaumond) Date: Wed, 05 Sep 2007 16:13:26 -0400 Subject: [TYPO3] captcha.php In-Reply-To: References: Message-ID: ben van 't ende [netcreators] wrote: > I use the captcha library by Kasper with mailforms thru the extensio > nd_antispam. The captcha.php script does not allow the font to be enlarged. It > is bearably readable. Has anyone adapted the script so you can resize the font > and use a ttf font? Hey Ben ! Bernhard Kraft's version should help ! http://think-open.org/kraftb/index/T3X_captcha-1_0_0-kb.t3x See you in Karlshruhe ! T3CON 2007 = 15 days! Patrick From proescho-typo3 at informatik.uni-muenchen.de Thu Sep 6 00:02:42 2007 From: proescho-typo3 at informatik.uni-muenchen.de (Timo Proescholdt) Date: Thu, 06 Sep 2007 00:02:42 +0200 Subject: [TYPO3] website structure / menu In-Reply-To: References: Message-ID: Timo Proescholdt a ?crit : > Hello! Hi! thanks for the answers so far! > My question is how to best built up the site structure so as to > minimize redundancy. Obviously page A needs a template and so > do B,C,D. (all the same). > > So what I was thinking was a structure like this > > -> B > / > root -> A -> C > \ > -> D > > with root having the common template for B,C,D and > A an extra import. > But my problem is that that way A inherits the template > from root. On the other hand A has to be the father of > B,C,D since it has to list its children.. > I checked out templavoila and I'm considering to use it. There is, however, another way which I was thinking about. If I did a structure like this, with A (the list of cities) separate. A -> B / root -> C \ -> D then B,C,D would inherit the city layout from root and A get its own. I'm, however, unsure if such kind of layout is unwise to choose, due to a "double root" approach which might cause problems later on? Is there are way in Typoscript to get the children of root in A to generate a menue (actually a drop down) there? I guess it must be easy, I just checked out the typo3 enterprise cms book menu section but could not find something about that.. Maybe someone could give me a hint? many thanks! Timo Proescholdt From daeuble at gmx.de Thu Sep 6 00:21:50 2007 From: daeuble at gmx.de (Frank Daeuble) Date: Thu, 06 Sep 2007 00:21:50 +0200 Subject: [TYPO3] Mailform Plus - Default Form Values not working In-Reply-To: References: Message-ID: Don't know if it solves your problem, but I had the same problem (using version 4.0) until I updated to the last version 4.0.3 Now its working fine. Frank From info at cybercraft.de Thu Sep 6 01:40:42 2007 From: info at cybercraft.de (JoH asenau) Date: Thu, 6 Sep 2007 01:40:42 +0200 Subject: [TYPO3] website structure / menu References: Message-ID: > So what I was thinking was a structure like this > > -> B > / > root -> A -> C > \ > -> D > > with root having the common template for B,C,D and > A an extra import. > But my problem is that that way A inherits the template > from root. On the other hand A has to be the father of > B,C,D since it has to list its children.. > > I'm sure there is a way out of this, like having A extra > and letting it generate a menu of non children, but I could > not find out how to do that. Usually this is not about using TV or not. It's a simple "condition" that can be setup using TypoScript regardless of the templating approach: page = PAGE page { # some default layout here } [treeLevel = 0] page { # do something in addition # for the parent page } [else] page { # do something in addition # for the child pages } [global] Of course you can check for other treeLevels as well. This way you got only one template setup at the root page. Nothing to inherit. No redundancy. And if you still have to change something for a very special page, it can be done using an "extension template" for this one page. HTH Joey -- Wenn man keine Ahnung hat: Einfach mal Fresse halten! (If you have no clues: simply shut your gob sometimes!) Dieter Nuhr, German comedian openBC/Xing: http://www.cybercraft.de T3 cookbook: http://www.typo3experts.com From andrew at avagraphique.com Thu Sep 6 05:25:02 2007 From: andrew at avagraphique.com (Andrew Davis) Date: Wed, 05 Sep 2007 23:25:02 -0400 Subject: [TYPO3] order of the editing fields in TCA, after extension add - on Message-ID: I have created an extension which extends fe_users table with a few extra fields. I see that kickstarter (very nicely) freated the ext_tables.sql which sets my new fields correctly in TCA, but it adds them to the very end of the editing form fields. How can I re-order (rearrange) the input fields in the TCA in this situation? ('types' => array) In other words I have added some fields that I want to go within (order) some of the original ones... Is this possible, and if so - how? thanks, andrew From info at cybercraft.de Thu Sep 6 05:38:09 2007 From: info at cybercraft.de (JoH asenau) Date: Thu, 6 Sep 2007 05:38:09 +0200 Subject: [TYPO3] order of the editing fields in TCA, after extension add - on References: Message-ID: > I have created an extension which extends fe_users table with a few > extra fields. I see that kickstarter (very nicely) freated the > ext_tables.sql which sets my new fields correctly in TCA, but it adds > them to the very end of the editing form fields. > > How can I re-order (rearrange) the input fields in the TCA in this > situation? ('types' => array) > > In other words I have added some fields that I want to go within > (order) some of the original ones... > > Is this possible, and if so - how? Rearrange the fieldnames and other stuff with something like this (all in one line): $TCA['tt_content']['types']['whatever']['showitem'] = 'CType;;4;button;1-1-1,header,--div--,image;;;;4-4-4,--div--,bodytext;;;;4-4 -4,--div--,header_link;LLL:EXT:contentmods/locallang_db.xml:ALT.header_link, subheader;LLL:EXT:contentmods/locallang_db.xml:ALT.subheader,image_link;LLL: EXT:contentmods/locallang_db.xml:ALT.image_link,tx_contentmods_relatedproduc ts'; It has to be done in ext_tables.php Since extensions always come after the default settings, this will override the original setup of this table. Read this one for further instructions: http://typo3.org/documentation/document-library/core-documentation/doc_core_api/current/ HTH Joey -- Wenn man keine Ahnung hat: Einfach mal Fresse halten! (If you have no clues: simply shut your gob sometimes!) Dieter Nuhr, German comedian openBC/Xing: http://www.cybercraft.de T3 cookbook: http://www.typo3experts.com From simon at stwdesign.com Thu Sep 6 06:01:13 2007 From: simon at stwdesign.com (Simon Browning) Date: Thu, 06 Sep 2007 00:01:13 -0400 Subject: [TYPO3] mailform plus question Message-ID: Doing some multipage forms with mailform plus (what an extension!) and not sure how to handle something. Before submitting the form we're displaying a confirmation page for the user, displaying their values like ###lastname###. Not sure though how to display values from select boxes, where each option has its own marker (like ###selected_title_Mr###, ###selected_title_Mrs###). ###selected_title### or ###title### don't seem to work, anybody have any hints? Thank you. simon From andrew at avagraphique.com Thu Sep 6 06:14:41 2007 From: andrew at avagraphique.com (Andrew Davis) Date: Thu, 06 Sep 2007 00:14:41 -0400 Subject: [TYPO3] order of the editing fields in TCA, after extension add - on In-Reply-To: References: Message-ID: perfect, thanks very much JoH asenau wrote: >> I have created an extension which extends fe_users table with a few >> extra fields. I see that kickstarter (very nicely) freated the >> ext_tables.sql which sets my new fields correctly in TCA, but it adds >> them to the very end of the editing form fields. >> >> How can I re-order (rearrange) the input fields in the TCA in this >> situation? ('types' => array) >> >> In other words I have added some fields that I want to go within >> (order) some of the original ones... >> >> Is this possible, and if so - how? > > Rearrange the fieldnames and other stuff with something like this (all in > one line): > > $TCA['tt_content']['types']['whatever']['showitem'] = > 'CType;;4;button;1-1-1,header,--div--,image;;;;4-4-4,--div--,bodytext;;;;4-4 > -4,--div--,header_link;LLL:EXT:contentmods/locallang_db.xml:ALT.header_link, > subheader;LLL:EXT:contentmods/locallang_db.xml:ALT.subheader,image_link;LLL: > EXT:contentmods/locallang_db.xml:ALT.image_link,tx_contentmods_relatedproduc > ts'; > > It has to be done in ext_tables.php > > Since extensions always come after the default settings, this will override > the original setup of this table. > > Read this one for further instructions: > http://typo3.org/documentation/document-library/core-documentation/doc_core_api/current/ > > HTH > > Joey > From tapio.markula at xetpoint.fi Thu Sep 6 08:56:21 2007 From: tapio.markula at xetpoint.fi (Tapio Markula) Date: Thu, 06 Sep 2007 09:56:21 +0300 Subject: [TYPO3] Problem with tcdirectmail Message-ID: Hi I have problem with tcdirectmail. Typo3 doesn't send the correct page - just 'Not in found' -page. Typo3 3.8.1 Typo3 has been put into subdirectory (cms). RealUrl enabled. Frontend editing doesn't work with real url. I took temporarily realUrl off - tcdirectmail had the same problem. From janslu at grupaiis.pl Thu Sep 6 10:07:09 2007 From: janslu at grupaiis.pl (Jan Slusarczyk) Date: Thu, 06 Sep 2007 10:07:09 +0200 Subject: [TYPO3] Changing anchor name Message-ID: Is it possible to change the default anchor name from content id () to the content element title? I want to use anchors for SEO of some of my pages. To do this I need to use a specific text as an anchor name (href=sthing.html#keyword). But all my content elements are already wrapped in anchors. I don't want to put even more anchors by adding them, I'd rather change the default generation scheme. Is it possible? Any hints? Regards Jan From dmitry at typo3.org Thu Sep 6 10:27:12 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Thu, 06 Sep 2007 11:27:12 +0300 Subject: [TYPO3] Changing anchor name In-Reply-To: References: Message-ID: Hi! Jan Slusarczyk wrote: > Is it possible to change the default anchor name from content id ( id="Xid">) to the content element title? > I want to use anchors for SEO of some of my pages. To do this I need to > use a specific text as an anchor name (href=sthing.html#keyword). But > all my content elements are already wrapped in anchors. I > don't want to put even more anchors by adding them, I'd rather change > the default generation scheme. > Is it possible? Any hints? It is possible but if you want to anchor to parts of the page, it will be a problem because RTE will still put numbers to links, not your titles. You need to change the following property in TS setup: tt_content.stdWrap.dataWrap By default it takes this value: | which creates those numbers. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From nightowl at galnet.dk Thu Sep 6 10:43:17 2007 From: nightowl at galnet.dk (Brian Bendtsen) Date: Thu, 06 Sep 2007 10:43:17 +0200 Subject: [TYPO3] One site - multiple domain records - navigation problem In-Reply-To: References: Message-ID: Instead of using baseURL I have tried to use external URL's. Every menu item in top menu to the right is configured as an external URL. Fore example: "Arbejdernes Boligforening" has the URL kursus1.mentor-it.dk/index.php?id=22 and when you click it you get the correct page and the domain name in the address field. If then I click any of the other menu items in menu 1(to the right) nothing happens. The navigation fails. "Esbjergs boligforeninger" for instance has the URL kursus.mentor-it.dk/index.php=24 but clicking it has no effect. Now the interesting part, if I click "Arbejdernes boligforening" and menu item one in the left menu I get back to kursus.mentor-it.dk - I have made this menu item an external URL like the others but apparently it works in this menu. My question is, why? I sometimes get an error: Duplicate entry '220-222419149' for key 1 INSERT INTO cache_pagesection ( content, tstamp, page_id, mpvar_hash ) VALUES ( ------and a whole lot of data here----- My entire Typoscript setup is viewable here: http://kursus.mentor-it.dk/fileadmin/templates/typoscript.txt /Brian From janslu at grupaiis.pl Thu Sep 6 10:45:42 2007 From: janslu at grupaiis.pl (Jan Slusarczyk) Date: Thu, 06 Sep 2007 10:45:42 +0200 Subject: [TYPO3] Changing anchor name In-Reply-To: References: Message-ID: > It is possible but if you want to anchor to parts of the page, it will > be a problem because RTE will still put numbers to links, not your titles. > You need to change the following property in TS setup: > tt_content.stdWrap.dataWrap > By default it takes this value: > | > which creates those numbers. Thanks! It really takes care of the first part of the problem. Any idea where are these links generated in RTE? Cheers Jan From dmitry at typo3.org Thu Sep 6 11:13:48 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Thu, 06 Sep 2007 12:13:48 +0300 Subject: [TYPO3] Changing anchor name In-Reply-To: References: Message-ID: Jan Slusarczyk wrote: > Thanks! It really takes care of the first part of the problem. Any idea > where are these links generated in RTE? I think it is not directly in RTE but in the link wizard. But I did not look deeper to it. Possibly it is configurable too but I am not sure. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From mail at cascaval.com Thu Sep 6 11:40:51 2007 From: mail at cascaval.com (Tomas Mrozek) Date: Thu, 06 Sep 2007 11:40:51 +0200 Subject: [TYPO3] Problem with tcdirectmail In-Reply-To: References: Message-ID: > I have problem with tcdirectmail. Typo3 doesn't send the correct page - > just 'Not in found' -page. I think your problem has something to do with the domain record. Make sure it's set and try some other forms. In your case it probably should be "domain.com/subdir" (without the ending slash!). Tomas Mrozek From tapio.markula at xetpoint.fi Thu Sep 6 12:23:18 2007 From: tapio.markula at xetpoint.fi (Tapio Markula) Date: Thu, 06 Sep 2007 13:23:18 +0300 Subject: [TYPO3] Problem with tcdirectmail In-Reply-To: References: Message-ID: Tomas Mrozek kirjoitti: >> I have problem with tcdirectmail. Typo3 doesn't send the correct page >> - just 'Not in found' -page. > > I think your problem has something to do with the domain record. Make > sure it's set and try some other forms. In your case it probably should > be "domain.com/subdir" (without the ending slash!). > > Tomas Mrozek ok. I try. That seems to work. Thank's. I have tried several version. I tried with subdir forward slash on the end and redirect like www.domain.com/subdir/ But it is enough to set just domain with subdir without the ending slash. From tapio.markula at xetpoint.fi Thu Sep 6 12:25:10 2007 From: tapio.markula at xetpoint.fi (Tapio Markula) Date: Thu, 06 Sep 2007 13:25:10 +0300 Subject: [TYPO3] Problem with tcdirectmail In-Reply-To: References: Message-ID: Tapio Markula kirjoitti: > Tomas Mrozek kirjoitti: >>> I have problem with tcdirectmail. Typo3 doesn't send the correct page >>> - just 'Not in found' -page. >> >> I think your problem has something to do with the domain record. Make >> sure it's set and try some other forms. In your case it probably >> should be "domain.com/subdir" (without the ending slash!). >> >> Tomas Mrozek > > ok. I try. > That seems to work. Thank's. > > I have tried several version. I tried with subdir forward slash on the > end and redirect like www.domain.com/subdir/ > But it is enough to set just domain with subdir without the ending slash. But what might be wrong in the frontend editing. Clicking link to any page goes to page not found page. baseUrl set From ben at netcreators.com Thu Sep 6 12:38:25 2007 From: ben at netcreators.com (ben van 't ende [netcreators]) Date: Thu, 06 Sep 2007 12:38:25 +0200 Subject: [TYPO3] captcha.php In-Reply-To: References: Message-ID: Patrick Gaumond wrote: > ben van 't ende [netcreators] wrote: > >> I use the captcha library by Kasper with mailforms thru the extensio >> nd_antispam. The captcha.php script does not allow the font to be >> enlarged. It >> is bearably readable. Has anyone adapted the script so you can resize >> the font >> and use a ttf font? > > Hey Ben ! > > Bernhard Kraft's version should help ! > > http://think-open.org/kraftb/index/T3X_captcha-1_0_0-kb.t3x > > See you in Karlshruhe ! > T3CON 2007 = 15 days! > > Patrick OK cool. I asked Bernard to add it to the Captcha Library as it is a real must. For anyone that uses 'nd_antispam' you will have to add these lines to the form element: | errorpage=hidden | http://www.yourdomain.com/invalid-captcha/ | label | Fill in the code (captcha) below: | captcha_enabled=hidden | 1 and it seems you have to add a ttf font and check the box 'Use TTF' in Captcha. So don't forget this last part in the configuration of the captcha extension. gRTz ben -- netcreators :: creation and innovation www.netcreators.com - www.typo3.nl Interesse in werken bij Netcreators? http://www.netcreators.com/bedrijf/vacatures/ From mail at cascaval.com Thu Sep 6 12:48:09 2007 From: mail at cascaval.com (Tomas Mrozek) Date: Thu, 06 Sep 2007 12:48:09 +0200 Subject: [TYPO3] Problem with tcdirectmail In-Reply-To: References: Message-ID: > But what might be wrong in the frontend editing. You mean frontend editing of page content? It should work just fine with RealURL and TYPO3 in subdirectory. What do the editing links point at? Tomas Mrozek From tkoopa at gmail.com Thu Sep 6 13:50:03 2007 From: tkoopa at gmail.com (tKoopa) Date: Thu, 6 Sep 2007 13:50:03 +0200 Subject: [TYPO3] Setting page title from record information (like tt_news singleview) Message-ID: Hi all, I'm trying to set the page title from a plugin (like tt_news does on singleviews). I've tried: $GLOBALS['TSFE']->page['title'] = $row['lastname']; $GLOBALS['TSFE']->indexedDocTitle = $row['lastname']; but apparently this doesn't work because my plugin is cached (needs to be) So I looked at doing in TS, and I'm almost there but I can't retrieve the DB record information dynamically page.headerData.3 > page.headerData.3 = TEXT # This works when setting the record id statically #page.headerData.3.data = DB : tx_pixmeps_table:10:lastname #but not using the get var page.headerData.3.data = DB : tx_pixmeps_table:{GPvar:tx_pixmeps_pi3|showUid}:lastname page.headerData.3.wrap = My website: | Any pointer would be great, Thanks, Tiberius From typo3 at andreas-balzer.de Thu Sep 6 13:55:50 2007 From: typo3 at andreas-balzer.de (Andreas Balzer) Date: Thu, 06 Sep 2007 13:55:50 +0200 Subject: [TYPO3] Problems with realurl and different domains In-Reply-To: References: Message-ID: Hi! Dmitry Dulepov [typo3] schrieb: > You surely need not to have configuration for buzz.typo3.org in your file > but you need configuration for your domains and correct rootpage_id > there. Ok. I should have noticed that earlier... :-/ I didn't scroll that much down. > As soon as you change domain names in configuration and set > correct rootpage_id, it will work. You may need to clear cache though. I did it (hopefully) but it doesn't work. see http://pastebin.com/m2f6fa34f This config should send everything to 2 expect everything coming from simget.de right? Well it does send everything to 2 even simget.de :-/ Andreas From dmitry at typo3.org Thu Sep 6 14:40:49 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Thu, 06 Sep 2007 15:40:49 +0300 Subject: [TYPO3] Problems with realurl and different domains In-Reply-To: References: Message-ID: Andreas Balzer wrote: > I did it (hopefully) but it doesn't work. see http://pastebin.com/m2f6fa34f > This config should send everything to 2 expect everything coming from > simget.de right? Well it does send everything to 2 even simget.de :-/ Take a look at this: http://pastebin.com/f677e05e Notes: - if you access web site using "www", you must configure it as well - you must ensure that 2 and 4 are really root page IDs for these domains - it is generally good to use numbers for numbers (not strings for numbers) - do not forget to clear cache in typo3conf -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From dmitry at typo3.org Thu Sep 6 14:41:18 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Thu, 06 Sep 2007 15:41:18 +0300 Subject: [TYPO3] Problems with realurl and different domains In-Reply-To: References: Message-ID: Dmitry Dulepov [typo3] wrote: > Take a look at this: > http://pastebin.com/f677e05e Correct address is: http://pastebin.com/d56b4d2e3 -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From mathias at RaWu.dk Thu Sep 6 15:30:21 2007 From: mathias at RaWu.dk (Mathias R. Wulff) Date: Thu, 06 Sep 2007 15:30:21 +0200 Subject: [TYPO3] All text to TMENU link tekst Message-ID: Hi I would like to have e "try a " included in my links in my TMENU but NO.allWrap =
  • |
  • NO.linkWrap = try a | So the idea was that the output should be
  • try a LINKTEXT
  • but the result is
  • try a LINKTEXT
  • Any idea of what I do wrong? - Mathias From typo3 at andreas-balzer.de Thu Sep 6 15:53:48 2007 From: typo3 at andreas-balzer.de (Andreas Balzer) Date: Thu, 06 Sep 2007 15:53:48 +0200 Subject: [TYPO3] Problems with realurl and different domains In-Reply-To: References: Message-ID: Dmitry Dulepov [typo3] schrieb: > http://pastebin.com/d56b4d2e3 There are some tiny =>'s mistakes I have changed to ='s . Although I don't get any php errors anylonger it doesn't want to work. I still see the default website when accessing simget.de I have set all 3 pages to root level pages and every of them has a realurl enabled config. However realurl doesn't create any path segments or so for simget.de pagetree items. Andreas From headhunterxiii at yahoo.ca Thu Sep 6 16:00:52 2007 From: headhunterxiii at yahoo.ca (Tyler Kraft) Date: Thu, 06 Sep 2007 15:00:52 +0100 Subject: [TYPO3] All text to TMENU link tekst In-Reply-To: References: Message-ID: http://typo3.org/documentation/document-library/references/doc_core_tsref/4.1.0/view/10/8/ stdWrap = try a | Mathias R. Wulff wrote: > Hi > > I would like to have e "try a " included in my links in my TMENU > > but > > NO.allWrap =
  • |
  • > NO.linkWrap = try a | > > So the idea was that the output should be > >
  • try a LINKTEXT
  • > > but the result is > >
  • try a LINKTEXT
  • > > > Any idea of what I do wrong? > > > - Mathias From mail at cascaval.com Thu Sep 6 16:05:43 2007 From: mail at cascaval.com (Tomas Mrozek) Date: Thu, 06 Sep 2007 16:05:43 +0200 Subject: [TYPO3] All text to TMENU link tekst In-Reply-To: References: Message-ID: > So the idea was that the output should be >
  • try a LINKTEXT
  • NO.stdWrap.noTrimWrap = |try a || Tomas Mrozek From dmitry at typo3.org Thu Sep 6 16:22:36 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Thu, 06 Sep 2007 17:22:36 +0300 Subject: [TYPO3] Problems with realurl and different domains In-Reply-To: References: Message-ID: Andreas Balzer wrote: > Dmitry Dulepov [typo3] schrieb: >> http://pastebin.com/d56b4d2e3 > There are some tiny =>'s mistakes I have changed to ='s . Although I > don't get any php errors anylonger it doesn't want to work. I still see > the default website when accessing simget.de > I have set all 3 pages to root level pages and every of them has a > realurl enabled config. However realurl doesn't create any path segments > or so for simget.de pagetree items. Cleared both caches? -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From typo3 at andreas-balzer.de Thu Sep 6 16:54:04 2007 From: typo3 at andreas-balzer.de (Andreas Balzer) Date: Thu, 06 Sep 2007 16:54:04 +0200 Subject: [TYPO3] Problems with realurl and different domains In-Reply-To: References: Message-ID: Dmitry Dulepov [typo3] schrieb: > Andreas Balzer wrote: >> Dmitry Dulepov [typo3] schrieb: >>> http://pastebin.com/d56b4d2e3 >> There are some tiny =>'s mistakes I have changed to ='s . Although I >> don't get any php errors anylonger it doesn't want to work. I still >> see the default website when accessing simget.de >> I have set all 3 pages to root level pages and every of them has a >> realurl enabled config. However realurl doesn't create any path >> segments or so for simget.de pagetree items. > > Cleared both caches? > yep :-/ Is there maybe some other config I have to set aswell? Andreas From headhunterxiii at yahoo.ca Thu Sep 6 17:01:36 2007 From: headhunterxiii at yahoo.ca (Tyler Kraft) Date: Thu, 06 Sep 2007 16:01:36 +0100 Subject: [TYPO3] All text to TMENU link tekst In-Reply-To: References: Message-ID: not sure but you might find that it causes issues as || is also used as part of optionSplit, which is available in the menuitem Tomas Mrozek wrote: >> So the idea was that the output should be >>
  • try a LINKTEXT
  • > > NO.stdWrap.noTrimWrap = |try a || > > Tomas Mrozek From info at cybercraft.de Thu Sep 6 18:32:54 2007 From: info at cybercraft.de (JoH) Date: Thu, 6 Sep 2007 18:32:54 +0200 Subject: [TYPO3] All text to TMENU link tekst References: Message-ID: > http://typo3.org/documentation/document-library/references/doc_core_tsref/4.1.0/view/10/8/ > > stdWrap = try a | stdWrap is just a set of functions so the one above won't work. Should be stdWrap.wrap instead. But usually you should do it this way: linkWrap = try a | ATagBeforeWrap = 1 Saves one level of recursive stdWrap calls and thus some ms while rendering the menu. HTH Joey From headhunterxiii at yahoo.ca Thu Sep 6 19:08:55 2007 From: headhunterxiii at yahoo.ca (Tyler Kraft) Date: Thu, 06 Sep 2007 18:08:55 +0100 Subject: [TYPO3] All text to TMENU link tekst In-Reply-To: References: Message-ID: yes your right just stdWrap as I have it wont work, there needs to be an added wrap in there. But the linkWrap wont accomplish what he needs (as he said above) So i guess were both wrong ;-) but stdWrap.wrap = try a | should work. JoH wrote: >> http://typo3.org/documentation/document-library/references/doc_core_tsref/4.1.0/view/10/8/ >> >> stdWrap = try a | > > stdWrap is just a set of functions so the one above won't work. > Should be stdWrap.wrap instead. > > But usually you should do it this way: > > linkWrap = try a | > ATagBeforeWrap = 1 > > Saves one level of recursive stdWrap calls and thus some ms while rendering > the menu. > > HTH > > Joey > > From a.stoutjesdijk at chello.nl Thu Sep 6 21:34:55 2007 From: a.stoutjesdijk at chello.nl (Edwin Blokker) Date: Thu, 06 Sep 2007 21:34:55 +0200 Subject: [TYPO3] Timtab blog and SEO Message-ID: Hi all, I'm just looking into the timtab as a blog for my site, and I'm wondering how search eninge friendly Timtab is. What about duplicate content issues for example? Any other thoughts / suggestions? Also, would anybody like to share some examples of sites with Timtab implemented as a blog? Regards, Edwin. From tapio.markula at xetpoint.fi Thu Sep 6 21:37:00 2007 From: tapio.markula at xetpoint.fi (Tapio Markula) Date: Thu, 06 Sep 2007 22:37:00 +0300 Subject: [TYPO3] Problem with tcdirectmail In-Reply-To: References: Message-ID: Tomas Mrozek kirjoitti: >> But what might be wrong in the frontend editing. > > You mean frontend editing of page content? > It should work just fine with RealURL and TYPO3 in subdirectory. > What do the editing links point at? > > Tomas Mrozek We have denined 'Error - Page not found' page. Cliking any link goes to that page (?id=1127) Links are format http://www.nordicmind.com/cms/page/ http://www.nordicmind.com/cms/page/subpage/ etc. From mathias at RaWu.dk Thu Sep 6 21:52:11 2007 From: mathias at RaWu.dk (Mathias R. Wulff) Date: Thu, 06 Sep 2007 21:52:11 +0200 Subject: [TYPO3] All text to TMENU link tekst In-Reply-To: References: Message-ID: Strange... At the link to the documentation it seams like stdWrap is just the correct one. but... it seams to ignore the stdWrap instruction... My full code lib.tmp.2 = HMENU lib.tmp.2.entryLevel = 1 lib.tmp.2.1 = TMENU lib.tmp.2.1 { wrap = NO = 1 NO.allWrap =
  • |
  • ACT = 1 ACT.allWrap =
  • |
  • ACTIFSUB = 1 ACTIFSUB.allWrap =
  • | ACTIFSUB.expAll = 1 IFSUB = 1 IFSUB.allWrap =
  • | } lib.tmp.2.2 = TMENU lib.tmp.2.2 { wrap =
      |
  • NO = 1 NO.allWrap =
  • |
  • NO.stdWrap = Try a | ACT = 1 ACT.allWrap =
  • |
  • ACT.stdWrap = Try a | } Any iedas? - Mathias Tyler Kraft skrev: > http://typo3.org/documentation/document-library/references/doc_core_tsref/4.1.0/view/10/8/ > > > stdWrap = try a | > > > > Mathias R. Wulff wrote: >> Hi >> >> I would like to have e "try a " included in my links in my TMENU >> >> but >> >> NO.allWrap =
  • |
  • >> NO.linkWrap = try a | >> >> So the idea was that the output should be >> >>
  • try a LINKTEXT
  • >> >> but the result is >> >>
  • try a LINKTEXT
  • >> >> >> Any idea of what I do wrong? >> >> >> - Mathias From bedlamhotel at gmail.com Thu Sep 6 22:07:01 2007 From: bedlamhotel at gmail.com (Christopher Torgalson) Date: Thu, 6 Sep 2007 13:07:01 -0700 Subject: [TYPO3] All text to TMENU link tekst In-Reply-To: References: Message-ID: Hi, On 9/6/07, Mathias R. Wulff wrote: > Strange... At the link to the documentation it seams like stdWrap is > just the correct one. > > but... it seams to ignore the stdWrap instruction... > > My full code > > > > lib.tmp.2 = HMENU > lib.tmp.2.entryLevel = 1 > lib.tmp.2.1 = TMENU > lib.tmp.2.1 { > > wrap = > > NO = 1 > NO.allWrap =
  • |
  • > > ACT = 1 > ACT.allWrap =
  • |
  • > > ACTIFSUB = 1 > ACTIFSUB.allWrap =
  • | > ACTIFSUB.expAll = 1 > > IFSUB = 1 > IFSUB.allWrap =
  • | > } > > lib.tmp.2.2 = TMENU > lib.tmp.2.2 { > wrap =
      |
  • > > NO = 1 > NO.allWrap =
  • |
  • > NO.stdWrap = Try a | > > ACT = 1 > ACT.allWrap =
  • |
  • > ACT.stdWrap = Try a | > } > > > Any iedas? Yes. Read back through the thread. .stdWrap itself doesn't do anything, ever. Briefly, you have to read the datatype column next to .stdWrap on the TMENUITEM page [1]. The datatype is stdWrap. Then, to see what that means, go to the .../stdWrap section at the beginning of the TSref [2]. There, it says "When a datatype is set to "type /stdWrap" it means that the value is parsed through the stdWrap function with the properties of the value as parameters." The key words are "stdWrap function"--that's the clue to look in the stdWrap section under "Functions" in the TSref [3]. Once you're there, you'll find dozens of useful stdWrap tools such as "wrap" (hint, hint...) For more information about figuring out how to use the TSref, see http://www.typo3apprentice.com/howto/rtfm/ -- Christopher Torgalson http://www.typo3apprentice.com/ [1] http://typo3.org/documentation/document-library/references/doc_core_tsref/4.1.0/view/10/8/ [2] http://typo3.org/documentation/document-library/references/doc_core_tsref/4.1.0/view/3/1/#id3520906 [3] http://typo3.org/documentation/document-library/references/doc_core_tsref/4.1.0/view/5/1/ From info at cybercraft.de Thu Sep 6 22:50:25 2007 From: info at cybercraft.de (JoH asenau) Date: Thu, 6 Sep 2007 22:50:25 +0200 Subject: [TYPO3] All text to TMENU link tekst References: Message-ID: > yes your right just stdWrap as I have it wont work, there needs to be > an added wrap in there. > > But the linkWrap wont accomplish what he needs (as he said above) > > So i guess were both wrong ;-) > > but stdWrap.wrap = try a | should work. You should have a look at both lines ;-) >> linkWrap = try a | >> ATagBeforeWrap = 1 ATagBeforeWrap is the magic switch that lets the -Tag wrap the linkWrap. Default is: Linktext with ATagBeforeWrap = 1 it will be Linktext In this special case the result would be try a Linktext HTH Joey -- Wenn man keine Ahnung hat: Einfach mal Fresse halten! (If you have no clues: simply shut your gob sometimes!) Dieter Nuhr, German comedian openBC/Xing: http://www.cybercraft.de T3 cookbook: http://www.typo3experts.com From andrew at avagraphique.com Thu Sep 6 23:13:37 2007 From: andrew at avagraphique.com (Andrew Davis) Date: Thu, 06 Sep 2007 17:13:37 -0400 Subject: [TYPO3] load order of extensions, where set? Message-ID: Is the actual load order of extensions set in localconf $TYPO3_CONF_VARS['EXT']['extList'] = '1,2,3'; if no, then where? thanks, Andrew From thummel at email.arizona.edu Thu Sep 6 23:26:24 2007 From: thummel at email.arizona.edu (Tracey Hummel) Date: Thu, 6 Sep 2007 14:26:24 -0700 Subject: [TYPO3] error when moving content up or down in FE Message-ID: When trying to move a block of content up or down in the FE, I'm getting the error: Fatal error: Call to a member function on a non-object in /users/thummel/typo3_src-4.1.1/t3lib/class.t3lib_tsfebeuserauth.php on line 1082 I found a fix that worked in version 4.0 but does not work in version 4.1.1: replacing line 1068 in class.t3lib_tsfebeuserauth.php: $GLOBALS['TSFE']->sys_page->enableFields($table,'',$ignore), with: t3lib_pageSelect::enableFields($table,'',$ignore), Please help me with this problem. Thank you, Tracey -- Tracey Hummel UAWeb Team Center for Computing & Information Technology The University of Arizona (520) 626-5139 tracey at uainfo.arizona.edu From andrew at avagraphique.com Thu Sep 6 23:57:02 2007 From: andrew at avagraphique.com (Andrew Davis) Date: Thu, 06 Sep 2007 17:57:02 -0400 Subject: [TYPO3] extension loads blank frame in BE Message-ID: Hi, I have 2.1.2 installed, and when i install the extension (key:) llxmltranslate when I try and switch to that module, the main frame is blank, like the extension is failing to load, but the rest of typo is still working. any ideas? Thanks in advance for any hint. Andrew From mathias at RaWu.dk Fri Sep 7 01:59:42 2007 From: mathias at RaWu.dk (Mathias R. Wulff) Date: Fri, 07 Sep 2007 01:59:42 +0200 Subject: [TYPO3] All text to TMENU link tekst In-Reply-To: References: Message-ID: Thanks for your kind help :) - Mathias Mathias R. Wulff skrev: > Hi > > I would like to have e "try a " included in my links in my TMENU > > but > > NO.allWrap =
  • |
  • > NO.linkWrap = try a | > > So the idea was that the output should be > >
  • try a LINKTEXT
  • > > but the result is > >
  • try a LINKTEXT
  • > > > Any idea of what I do wrong? > > > - Mathias From andrew at avagraphique.com Fri Sep 7 02:37:06 2007 From: andrew at avagraphique.com (Andrew Davis) Date: Thu, 06 Sep 2007 20:37:06 -0400 Subject: [TYPO3] error when moving content up or down in FE In-Reply-To: References: Message-ID: would upgrading to 4.1.2 help perhaps? doe it happen only on that page or on any page? any type of content element? might give some clues? good luck, andrew Tracey Hummel wrote: > When trying to move a block of content up or down in the FE, I'm getting the > error: > > Fatal error: Call to a member function on a non-object in > /users/thummel/typo3_src-4.1.1/t3lib/class.t3lib_tsfebeuserauth.php on line > 1082 > > I found a fix that worked in version 4.0 but does not work in version 4.1.1: > > replacing line 1068 in class.t3lib_tsfebeuserauth.php: > $GLOBALS['TSFE']->sys_page->enableFields($table,'',$ignore), > with: t3lib_pageSelect::enableFields($table,'',$ignore), > > Please help me with this problem. > > Thank you, > Tracey > > -- > Tracey Hummel > UAWeb Team > Center for Computing & Information Technology > The University of Arizona > (520) 626-5139 > tracey at uainfo.arizona.edu > > > > > From andrew at avagraphique.com Fri Sep 7 04:26:22 2007 From: andrew at avagraphique.com (Andrew Davis) Date: Thu, 06 Sep 2007 22:26:22 -0400 Subject: [TYPO3] trying to add fields to sr_feuser_register; not outputting Message-ID: following instruction manual for sr_feuser_register I am trying to add some additional fields. I was able to kickstart a new extension to add the db fields for fe_users, and I have followed the instructions in sr_feuser_register to create the fields in the user registration form, but when I view the form on the frontend, instead of the new field it displays this: ###LABEL_ADDRESS2### ###REQUIRED_ADDRESS2### ###EVAL_ERROR_FIELD_address2### ###MISSING_ADDRESS2### ...not sure what to do here. will try goign thru the instructions again, but does nayone have any other suggesitons? known bugs? any help much appreciated, thanks Andrew From andrew at avagraphique.com Fri Sep 7 05:02:26 2007 From: andrew at avagraphique.com (Andrew Davis) Date: Thu, 06 Sep 2007 23:02:26 -0400 Subject: [TYPO3] trying to add fields to sr_feuser_register; not outputting In-Reply-To: References: Message-ID: my error (of course), I was incorrectly referencing the new table fields.... should have been TX_CORE101EMS_ADDRESS2 instead of ADDRESS2 Seems to be working, except that ###EVAL_ERROR_FIELD_tx_core101ems_address2### seems to be persistently showing in the frontend output. Something to do with my evaluation setting, which I will check next. Andrew Andrew Davis wrote: > > following instruction manual for sr_feuser_register > > I am trying to add some additional fields. I was able to kickstart a new > extension to add the db fields for fe_users, and I have followed the > instructions in sr_feuser_register > > to create the fields in the user registration form, but when I view the > form on the frontend, instead of the new field it displays this: > > ###LABEL_ADDRESS2### ###REQUIRED_ADDRESS2### > ###EVAL_ERROR_FIELD_address2### > ###MISSING_ADDRESS2### > > ...not sure what to do here. will try goign thru the instructions again, > but does nayone have any other suggesitons? known bugs? > > any help much appreciated, thanks > > Andrew From andrew at avagraphique.com Fri Sep 7 06:18:51 2007 From: andrew at avagraphique.com (Andrew Davis) Date: Fri, 07 Sep 2007 00:18:51 -0400 Subject: [TYPO3] trying to add fields to sr_feuser_register; not outputting In-Reply-To: References: Message-ID: in the manual it says to set evaluation settings like this to clear them out: (in setup typoscript i na template record on that page): plugin.tx_srfeuserregister_pi1.create.evalValues.tx_core101ems_address2 = I verifiecd this is correct in ts object browser, as i found the other, working fields listed there similarly. i set this for all my new fields, but for those new fields, I still am getting ###EVAL_ERROR_FIELD_tx_core101ems_address2### output to the frontend... where should i be looking next (stumped...) Thanks for any help, Andrew Andrew Davis wrote: > my error (of course), I was incorrectly referencing the new table > fields.... should have been > > TX_CORE101EMS_ADDRESS2 > > instead of > > ADDRESS2 > > Seems to be working, except that > ###EVAL_ERROR_FIELD_tx_core101ems_address2### > > seems to be persistently showing in the frontend output. Something to do > with my evaluation setting, which I will check next. > > Andrew > > > > > Andrew Davis wrote: >> >> following instruction manual for sr_feuser_register >> >> I am trying to add some additional fields. I was able to kickstart a >> new extension to add the db fields for fe_users, and I have followed >> the instructions in sr_feuser_register >> >> to create the fields in the user registration form, but when I view >> the form on the frontend, instead of the new field it displays this: >> >> ###LABEL_ADDRESS2### ###REQUIRED_ADDRESS2### >> ###EVAL_ERROR_FIELD_address2### >> ###MISSING_ADDRESS2### >> >> ...not sure what to do here. will try goign thru the instructions >> again, but does nayone have any other suggesitons? known bugs? >> >> any help much appreciated, thanks >> >> Andrew From andrew at avagraphique.com Fri Sep 7 07:17:00 2007 From: andrew at avagraphique.com (Andrew Davis) Date: Fri, 07 Sep 2007 01:17:00 -0400 Subject: [TYPO3] trying to add fields to sr_feuser_register; not outputting In-Reply-To: References: Message-ID: solved, incorrect case for some of the markers. Andrew Davis wrote: > in the manual it says to set evaluation settings like this to clear them > out: > > (in setup typoscript i na template record on that page): > > plugin.tx_srfeuserregister_pi1.create.evalValues.tx_core101ems_address2 = > > > I verifiecd this is correct in ts object browser, as i found the other, > working fields listed there similarly. > > i set this for all my new fields, but for those new fields, I still am > getting > ###EVAL_ERROR_FIELD_tx_core101ems_address2### > output to the frontend... > > where should i be looking next (stumped...) > > Thanks for any help, > Andrew > > > > Andrew Davis wrote: >> my error (of course), I was incorrectly referencing the new table >> fields.... should have been >> >> TX_CORE101EMS_ADDRESS2 >> >> instead of >> >> ADDRESS2 >> >> Seems to be working, except that >> ###EVAL_ERROR_FIELD_tx_core101ems_address2### >> >> seems to be persistently showing in the frontend output. Something to >> do with my evaluation setting, which I will check next. >> >> Andrew >> >> >> >> >> Andrew Davis wrote: >>> >>> following instruction manual for sr_feuser_register >>> >>> I am trying to add some additional fields. I was able to kickstart a >>> new extension to add the db fields for fe_users, and I have followed >>> the instructions in sr_feuser_register >>> >>> to create the fields in the user registration form, but when I view >>> the form on the frontend, instead of the new field it displays this: >>> >>> ###LABEL_ADDRESS2### ###REQUIRED_ADDRESS2### >>> ###EVAL_ERROR_FIELD_address2### >>> ###MISSING_ADDRESS2### >>> >>> ...not sure what to do here. will try goign thru the instructions >>> again, but does nayone have any other suggesitons? known bugs? >>> >>> any help much appreciated, thanks >>> >>> Andrew From dmitry at typo3.org Fri Sep 7 08:42:25 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Fri, 07 Sep 2007 09:42:25 +0300 Subject: [TYPO3] Problems with realurl and different domains In-Reply-To: References: Message-ID: Andreas Balzer wrote: > Is there maybe some other config I have to set aswell? Do two thing: - install quixplorer - send me login/password so that I can take a quick look. Make a separate admin user for it and you can disable it later -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From dmitry at typo3.org Fri Sep 7 08:47:10 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Fri, 07 Sep 2007 09:47:10 +0300 Subject: [TYPO3] Timtab blog and SEO In-Reply-To: References: Message-ID: Edwin Blokker wrote: > I'm just looking into the timtab as a blog for my site, and I'm > wondering how search eninge friendly Timtab is. What about duplicate > content issues for example? Any other thoughts / suggestions? > > Also, would anybody like to share some examples of sites with Timtab > implemented as a blog? Look at my typo3bloke.net. I do not post often and do not promote it much but it is on the first page in Google for queries like: - performance typo3 (7th result) - realurl typo3 (2nd result) - templavoila typo3 (1st result) Timtab is not easy to setup though. Wordpress is much easier. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From dmitry at typo3.org Fri Sep 7 08:57:12 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Fri, 07 Sep 2007 09:57:12 +0300 Subject: [TYPO3] load order of extensions, where set? In-Reply-To: References: Message-ID: Andrew Davis wrote: > Is the actual load order of extensions set in localconf > > $TYPO3_CONF_VARS['EXT']['extList'] = '1,2,3'; > > if no, then where? Yes. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From dmitry at typo3.org Fri Sep 7 08:59:42 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Fri, 07 Sep 2007 09:59:42 +0300 Subject: [TYPO3] extension loads blank frame in BE In-Reply-To: References: Message-ID: Andrew Davis wrote: > I have 2.1.2 installed, and when i install the extension (key:) > llxmltranslate when I try and switch to that module, the main frame is > blank, like the extension is failing to load, but the rest of typo is > still working. What is "2.1.2"? > any ideas? Thanks in advance for any hint. Enable error reporting in Install tool and see what errors you get. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From kw at hovsa.dk Fri Sep 7 09:22:10 2007 From: kw at hovsa.dk (Kristian Wind) Date: Fri, 7 Sep 2007 09:22:10 +0200 Subject: [TYPO3] Background images - again In-Reply-To: References: Message-ID: Hello everyone! This has been covered before, but there was no solution, as far as I could see. What I need is to map the field "Files:" from the advanced page properties into a backend style. Like this:
    How do I do that? Thanks in advance! Best regards, Kristian kw at hovsa.dk From elmar07 at googlemail.com Fri Sep 7 09:20:25 2007 From: elmar07 at googlemail.com (Elmar Hinz) Date: Fri, 07 Sep 2007 09:20:25 +0200 Subject: [TYPO3] Form libraries - what do you use? Message-ID: Hello, I am regularly surprised, that there are that few form libraries for PHP although PHP is many years old now and nearly every site has forms. What's the reason? If you look for template engines there are standards like smarty, but form libraries, validation? Still everybody seems to prefer home brewery. For example the pear repository. There is HTML_QuickForm, but it's recommended to use HTML_QuickForm2 now. On the other hand HTML_QuickForm2 is alpha since a long time. Just an example. Certainly you can write forms in plain PHP or use the T3 build in forms. Both isn't that satisfying. I am curious. What is your preferred solution to build forms in FE extensions and BE modules? Regards Elmar From bedlamhotel at gmail.com Fri Sep 7 09:34:09 2007 From: bedlamhotel at gmail.com (Christopher Torgalson) Date: Fri, 7 Sep 2007 00:34:09 -0700 Subject: [TYPO3] Background images - again In-Reply-To: References: Message-ID: Hi, On 9/7/07, Kristian Wind wrote: > Hello everyone! > > This has been covered before, but there was no solution, as far as I > could see. > > What I need is to map the field "Files:" from the advanced page > properties into a backend style. Like this: > >
    > > How do I do that? Simple: use IMG_RESOURCE instead of IMAGE--IMG_RESOURCE returns the file location, not a complete img element. If you're interested in using TS to generate CSS on-the-fly, have a look at the extension bh_firtools. -- Christopher Torgalson http://www.typo3apprentice.com/ From Nagita.k at gmail.com Fri Sep 7 09:34:50 2007 From: Nagita.k at gmail.com (Nagita Karunaratne) Date: Fri, 07 Sep 2007 00:34:50 -0700 Subject: [TYPO3] not rendering   Message-ID: Hi, I had a site that was using menuitems NO.allWrap = |  |  |*| |  |  |*| etc. It was working find but them I moved it to another server and the   and replaced by ? ie. replaced by the question mark character. This is done by TYPO3 and I cannot find where the problems is. Thanks/ From pslele at gmail.com Fri Sep 7 09:43:15 2007 From: pslele at gmail.com (Pankaj Lele) Date: Fri, 07 Sep 2007 13:13:15 +0530 Subject: [TYPO3] Form libraries - what do you use? In-Reply-To: References: Message-ID: > What is your preferred solution > to build forms in FE extensions and BE modules? I just use simple markers driven html templates for forms in FE extensions and simple form html in BE module index.php. I would welcome any best method to achieve this. Thanks, Pankaj Lele From bedlamhotel at gmail.com Fri Sep 7 09:44:35 2007 From: bedlamhotel at gmail.com (Christopher Torgalson) Date: Fri, 7 Sep 2007 00:44:35 -0700 Subject: [TYPO3] not rendering   In-Reply-To: References: Message-ID: Hi Nagita, On 9/7/07, Nagita Karunaratne wrote: > Hi, > > I had a site that was using menuitems > > NO.allWrap = |  |  |*| |  |  |*| > > > etc. > > It was working find but them I moved it to another server and > the   and replaced by ? > > ie. replaced by the question mark character. > > This is done by TYPO3 and I cannot find where the problems is. I just saw what sounds like the same problem on the TYPO3 IRC channel a week or so ago. I would guess you're using Tidy and utf-8, right? If so, either a) disable Tidy, or b) add "-utf8" (without the quotes) to the [FE][tidy_path] variable in the install tool. -- Christopher Torgalson http://www.typo3apprentice.com/ From Nagita.k at gmail.com Fri Sep 7 09:41:31 2007 From: Nagita.k at gmail.com (Nagita Karunaratne) Date: Fri, 07 Sep 2007 00:41:31 -0700 Subject: [TYPO3] not rendering   In-Reply-To: References: Message-ID: Nagita Karunaratne wrote: > Hi, > > I had a site that was using menuitems > > NO.allWrap = |  |  |*| |  |  |*| > > etc. > > It was working find but them I moved it to another server and > the   and replaced by ? > > ie. replaced by the question mark character. > > This is done by TYPO3 and I cannot find where the problems is. > http://members.shaw.ca/ntkar/rendering_problem.jpg From l.mul-nospam-ler at ameos.com Fri Sep 7 09:44:11 2007 From: l.mul-nospam-ler at ameos.com (Luc Muller) Date: Fri, 7 Sep 2007 09:44:11 +0200 Subject: [TYPO3] RealURL in japanese References: Message-ID: Is this the only solution ? to make a manual SQL query to update all the realurl segment path for japanese page title ? I think that it won't be very easy to use for a content manager who do not know SQL. Is there a way to make possible for the user to edit a translation of the realurl segment path when translating a page ? he can already edit the navigation title... Another question, does anyone made a BE module to execute those kind of query to retrieve the default title/realurlpath for any language to adapt the url segment automatically ? I think this can be a good BE module or extension for real URL. Thanks for ideas... Luc Muller "Manuel Rego Casasnovas" a ?crit dans le message de news: mailman.1570.1187857554.17142.typo3-english at lists.netfielders.de... > > Hi Sebastian, > > I've to change the value for the field 'tx_realurl_pathsegment' in the > table 'pages' and it works well ;-) > > Thank you very much, > Rego > > > -- > Manuel Rego Casasnovas > Computer Science Engineer > mailto:mrego at igalia.com > Tel: +34 986 10 76 10 > Fax: +34 981 91 39 49 > Igalia - http://www.igalia.com From Nagita.k at gmail.com Fri Sep 7 09:57:45 2007 From: Nagita.k at gmail.com (Nagita Karunaratne) Date: Fri, 07 Sep 2007 00:57:45 -0700 Subject: [TYPO3] not rendering   In-Reply-To: References: Message-ID: Hi Chris, Yes that did it. Thank you. Nagita Christopher Torgalson wrote: > Hi Nagita, > > I just saw what sounds like the same problem on the TYPO3 IRC channel > a week or so ago. I would guess you're using Tidy and utf-8, right? If > so, either a) disable Tidy, or b) add "-utf8" (without the quotes) to > the [FE][tidy_path] variable in the install tool. > > From kw at hovsa.dk Fri Sep 7 10:08:53 2007 From: kw at hovsa.dk (Kristian Wind) Date: Fri, 7 Sep 2007 10:08:53 +0200 Subject: [TYPO3] Background images - again In-Reply-To: References: Message-ID: Hello Christopher! Can you give an example? I am missing a link of some sort. Could this be a way? lib.baggrund = IMG_RESOURCE lib.baggrund { file.import = fileadmin/right_backgrounds/ file.import.field = media file.import.listNum = 0 stdWrap.wrap = } lib.bild_b1 < temp.bild_b1 This returns: I have added a picture to the "Files:" field in the page properties... Best regards, Kristian kw at hovsa.dk Den 07/09/2007 kl. 9.34 skrev Christopher Torgalson: > Hi, > > On 9/7/07, Kristian Wind wrote: >> Hello everyone! >> >> This has been covered before, but there was no solution, as far as I >> could see. >> >> What I need is to map the field "Files:" from the advanced page >> properties into a backend style. Like this: >> >>
    >> >> How do I do that? > > > Simple: use IMG_RESOURCE instead of IMAGE--IMG_RESOURCE returns the > file location, not a complete img element. If you're interested in > using TS to generate CSS on-the-fly, have a look at the extension > bh_firtools. > > -- > Christopher Torgalson > http://www.typo3apprentice.com/ > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english From mrego at igalia.com Fri Sep 7 10:20:14 2007 From: mrego at igalia.com (Manuel Rego Casasnovas) Date: Fri, 07 Sep 2007 10:20:14 +0200 Subject: [TYPO3] RealURL in japanese In-Reply-To: References: Message-ID: Hi Muller, Luc Muller escribi?: > Is this the only solution ? to make a manual SQL query to update all the > realurl segment path for japanese page title ? > I think that it won't be very easy to use for a content manager who do not > know SQL. > Is there a way to make possible for the user to edit a translation of the > realurl segment path when translating a page ? he can already edit the > navigation title... > Yo can modified the ext_tables.php of RealURL (or other ext_tables.php file) and make that the administrators site can be modified this field manually: t3lib_extMgm::addToAllTCAtypes('pages','tx_realurl_pathsegment','','after:nav_title'); Best regards, Rego -- Manuel Rego Casasnovas Computer Science Engineer mailto:mrego at igalia.com Tel: +34 986 10 76 10 Fax: +34 981 91 39 49 Igalia - http://www.igalia.com From kw at hovsa.dk Fri Sep 7 10:29:45 2007 From: kw at hovsa.dk (Kristian Wind) Date: Fri, 7 Sep 2007 10:29:45 +0200 Subject: [TYPO3] Background images - again In-Reply-To: References: Message-ID: Hello again! It was copied wrong! The code I'm using is: lib.baggrund = IMG_RESOURCE lib.baggrund { file.import = fileadmin/right_backgrounds/ file.import.field = media file.import.listNum = 0 stdWrap.wrap = } lib. baggrund < temp. baggrund Sorry! Best regards, Kristian kw at hovsa.dk Den 07/09/2007 kl. 10.08 skrev Kristian Wind: > Hello Christopher! > > Can you give an example? I am missing a link of some sort. > > Could this be a way? > > lib.baggrund = IMG_RESOURCE > lib.baggrund { > file.import = fileadmin/right_backgrounds/ > file.import.field = media > file.import.listNum = 0 > stdWrap.wrap = > } > lib.bild_b1 < temp.bild_b1 > > This returns: > > > > I have added a picture to the "Files:" field in the page properties... > > > Best regards, > Kristian > > kw at hovsa.dk > > > > Den 07/09/2007 kl. 9.34 skrev Christopher Torgalson: > >> Hi, >> >> On 9/7/07, Kristian Wind wrote: >>> Hello everyone! >>> >>> This has been covered before, but there was no solution, as far as I >>> could see. >>> >>> What I need is to map the field "Files:" from the advanced page >>> properties into a backend style. Like this: >>> >>>
    >>> >>> How do I do that? >> >> >> Simple: use IMG_RESOURCE instead of IMAGE--IMG_RESOURCE returns the >> file location, not a complete img element. If you're interested in >> using TS to generate CSS on-the-fly, have a look at the extension >> bh_firtools. >> >> -- >> Christopher Torgalson >> http://www.typo3apprentice.com/ >> _______________________________________________ >> TYPO3-english mailing list >> TYPO3-english at lists.netfielders.de >> http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english > > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english From thorsten.kahler at dkd.de Fri Sep 7 11:08:03 2007 From: thorsten.kahler at dkd.de (Thorsten Kahler) Date: Fri, 07 Sep 2007 11:08:03 +0200 Subject: [TYPO3] error when moving content up or down in FE In-Reply-To: References: Message-ID: Hi Tracey, Tracey Hummel wrote on 06.09.2007 23:26: > When trying to move a block of content up or down in the FE, I'm getting the > error: > > Fatal error: Call to a member function on a non-object in > /users/thummel/typo3_src-4.1.1/t3lib/class.t3lib_tsfebeuserauth.php on line > 1082 > this one is fixed but not yet released. See bugtracker issue 4160 [1]. Regards Thorsten [1] http://bugs.typo3.org/view.php?id=4160 From headhunterxiii at yahoo.ca Fri Sep 7 12:02:50 2007 From: headhunterxiii at yahoo.ca (Tyler Kraft) Date: Fri, 07 Sep 2007 11:02:50 +0100 Subject: [TYPO3] All text to TMENU link tekst In-Reply-To: References: Message-ID: Hi Joey > You should have a look at both lines ;-) Again, as usual you are entirely correct :-) *sigh* I have no idea why I thought you were wrong, I should know better by now ;-) Thanks for again teaching me something. Cheers, Ty From kw at hovsa.dk Fri Sep 7 12:29:07 2007 From: kw at hovsa.dk (Kristian Wind) Date: Fri, 7 Sep 2007 12:29:07 +0200 Subject: [TYPO3] Background images - again In-Reply-To: References: Message-ID: Hello! I think that what I'm looking for is the "name" for the "Files" field to do something like: 10 = TEXT 10.field = header - so I can parse it into my template. Anyone got an ide - og am I way off...? Best regards, Kristian kw at hovsa.dk Den 07/09/2007 kl. 10.29 skrev Kristian Wind: > Hello again! > > It was copied wrong! The code I'm using is: > > lib.baggrund = IMG_RESOURCE > lib.baggrund { > file.import = fileadmin/right_backgrounds/ > file.import.field = media > file.import.listNum = 0 > stdWrap.wrap = > } > lib. baggrund < temp. baggrund > > > Sorry! > > Best regards, > Kristian > > kw at hovsa.dk > > > > Den 07/09/2007 kl. 10.08 skrev Kristian Wind: > >> Hello Christopher! >> >> Can you give an example? I am missing a link of some sort. >> >> Could this be a way? >> >> lib.baggrund = IMG_RESOURCE >> lib.baggrund { >> file.import = fileadmin/right_backgrounds/ >> file.import.field = media >> file.import.listNum = 0 >> stdWrap.wrap = >> } >> lib.bild_b1 < temp.bild_b1 >> >> This returns: >> >> >> >> I have added a picture to the "Files:" field in the page >> properties... >> >> >> Best regards, >> Kristian >> >> kw at hovsa.dk >> >> >> >> Den 07/09/2007 kl. 9.34 skrev Christopher Torgalson: >> >>> Hi, >>> >>> On 9/7/07, Kristian Wind wrote: >>>> Hello everyone! >>>> >>>> This has been covered before, but there was no solution, as far >>>> as I >>>> could see. >>>> >>>> What I need is to map the field "Files:" from the advanced page >>>> properties into a backend style. Like this: >>>> >>>>
    >>>> >>>> How do I do that? >>> >>> >>> Simple: use IMG_RESOURCE instead of IMAGE--IMG_RESOURCE returns the >>> file location, not a complete img element. If you're interested in >>> using TS to generate CSS on-the-fly, have a look at the extension >>> bh_firtools. >>> >>> -- >>> Christopher Torgalson >>> http://www.typo3apprentice.com/ >>> _______________________________________________ >>> TYPO3-english mailing list >>> TYPO3-english at lists.netfielders.de >>> http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english >> >> _______________________________________________ >> TYPO3-english mailing list >> TYPO3-english at lists.netfielders.de >> http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english > > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english From typo3 at andreas-balzer.de Fri Sep 7 12:35:27 2007 From: typo3 at andreas-balzer.de (Andreas Balzer) Date: Fri, 07 Sep 2007 12:35:27 +0200 Subject: [TYPO3] Problems with realurl and different domains In-Reply-To: References: Message-ID: Dmitry Dulepov [typo3] schrieb: > - send me login/password so that I can take a quick look. Make a > separate admin user for it and you can disable it later Thanks in advance. I have sent the login information to dmitry at typo3.org Greetings Andreas From typo3-german-02 at oliverklee.de Fri Sep 7 12:44:39 2007 From: typo3-german-02 at oliverklee.de (Oliver Klee) Date: Fri, 07 Sep 2007 12:44:39 +0200 Subject: [TYPO3] Form libraries - what do you use? In-Reply-To: References: Message-ID: Hi, Elmar Hinz schrieb: > Certainly you can write forms in plain PHP or use the T3 build in forms. > Both isn't that satisfying. I am curious. What is your preferred solution > to build forms in FE extensions and BE modules? In the FE, I use ameos_formidable. AFAIK it works in the BE as well. Regards Oliver From kw at hovsa.dk Fri Sep 7 13:17:11 2007 From: kw at hovsa.dk (Kristian Wind) Date: Fri, 7 Sep 2007 13:17:11 +0200 Subject: [TYPO3] Background images - again In-Reply-To: References: Message-ID: Found it: lib.baggrund = COA lib.baggrund { 10= TEXT 10.data = page:media <-- THIS 10.wrap = } Best regards Kristian kw at hovsa.dk Den 07/09/2007 kl. 12.29 skrev Kristian Wind: > Hello! > > I think that what I'm looking for is the "name" for the "Files" field > to do something like: > > 10 = TEXT > 10.field = header > > - so I can parse it into my template. > > Anyone got an ide - og am I way off...? > > > Best regards, > Kristian > > kw at hovsa.dk > > > > Den 07/09/2007 kl. 10.29 skrev Kristian Wind: > >> Hello again! >> >> It was copied wrong! The code I'm using is: >> >> lib.baggrund = IMG_RESOURCE >> lib.baggrund { >> file.import = fileadmin/right_backgrounds/ >> file.import.field = media >> file.import.listNum = 0 >> stdWrap.wrap = >> } >> lib. baggrund < temp. baggrund >> >> >> Sorry! >> >> Best regards, >> Kristian >> >> kw at hovsa.dk >> >> >> >> Den 07/09/2007 kl. 10.08 skrev Kristian Wind: >> >>> Hello Christopher! >>> >>> Can you give an example? I am missing a link of some sort. >>> >>> Could this be a way? >>> >>> lib.baggrund = IMG_RESOURCE >>> lib.baggrund { >>> file.import = fileadmin/right_backgrounds/ >>> file.import.field = media >>> file.import.listNum = 0 >>> stdWrap.wrap = >>> } >>> lib.bild_b1 < temp.bild_b1 >>> >>> This returns: >>> >>> >>> >>> I have added a picture to the "Files:" field in the page >>> properties... >>> >>> >>> Best regards, >>> Kristian >>> >>> kw at hovsa.dk >>> >>> >>> >>> Den 07/09/2007 kl. 9.34 skrev Christopher Torgalson: >>> >>>> Hi, >>>> >>>> On 9/7/07, Kristian Wind wrote: >>>>> Hello everyone! >>>>> >>>>> This has been covered before, but there was no solution, as far >>>>> as I >>>>> could see. >>>>> >>>>> What I need is to map the field "Files:" from the advanced page >>>>> properties into a backend style. Like this: >>>>> >>>>>
    >>>>> >>>>> How do I do that? >>>> >>>> >>>> Simple: use IMG_RESOURCE instead of IMAGE--IMG_RESOURCE returns the >>>> file location, not a complete img element. If you're interested in >>>> using TS to generate CSS on-the-fly, have a look at the extension >>>> bh_firtools. >>>> >>>> -- >>>> Christopher Torgalson >>>> http://www.typo3apprentice.com/ >>>> _______________________________________________ >>>> TYPO3-english mailing list >>>> TYPO3-english at lists.netfielders.de >>>> http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english >>> >>> _______________________________________________ >>> TYPO3-english mailing list >>> TYPO3-english at lists.netfielders.de >>> http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english >> >> _______________________________________________ >> TYPO3-english mailing list >> TYPO3-english at lists.netfielders.de >> http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english > > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english From florian.schupp at former03.de Fri Sep 7 13:42:03 2007 From: florian.schupp at former03.de (Florian Schupp | FORMER 03 GmbH) Date: Fri, 07 Sep 2007 13:42:03 +0200 Subject: [TYPO3] Sitemap with Subtitle AND Abstract Message-ID: Hi List, i'm looking for a way to display a sitemap (tt_content.menu.20.4) on a page which should additionally show the "subtitle" AND the "abstract" fields under the title // navtitle at the moment i have the sitemap and it displays the title plus subtitle, which is overwritten by "abstract" (if set). How can i display both, the subtitle AND the abstract?? Thanks Flo From dmitry at typo3.org Fri Sep 7 14:18:09 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Fri, 07 Sep 2007 15:18:09 +0300 Subject: [TYPO3] Background images - again In-Reply-To: References: Message-ID: Hello! Kristian Wind wrote: > Hello everyone! > > This has been covered before, but there was no solution, as far as I > could see. Your message has come to a thread named "Timtab blog and SEO", so very few people will see it. Never use "reply" button when posting new messages to the list - they will not appear as top messsages but will go to wrong thread. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From dmitry at typo3.org Fri Sep 7 14:22:25 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Fri, 07 Sep 2007 15:22:25 +0300 Subject: [TYPO3] Problems with realurl and different domains In-Reply-To: References: Message-ID: Andreas Balzer wrote: > I have sent the login information to dmitry at typo3.org Please, check your mail. As I thought this has nothing to do with realurl. There were several errors with somain records + web server does not see to send requests to these domains but to a subdirectory in another domain. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From andrew at avagraphique.com Fri Sep 7 14:28:11 2007 From: andrew at avagraphique.com (Andrew Davis) Date: Fri, 07 Sep 2007 08:28:11 -0400 Subject: [TYPO3] extension loads blank frame in BE In-Reply-To: References: Message-ID: oops, i meant I have TYPO3 4.1.2 installed. I will try your suggestion, thank you! Andrew Dmitry Dulepov [typo3] wrote: > Andrew Davis wrote: >> I have 2.1.2 installed, and when i install the extension (key:) >> llxmltranslate when I try and switch to that module, the main frame is >> blank, like the extension is failing to load, but the rest of typo is >> still working. > > What is "2.1.2"? > >> any ideas? Thanks in advance for any hint. > > Enable error reporting in Install tool and see what errors you get. > From catepeter at optusnet.com.au Fri Sep 7 14:47:09 2007 From: catepeter at optusnet.com.au (Cate & Peter) Date: Fri, 7 Sep 2007 22:47:09 +1000 Subject: [TYPO3] using command line interface from extension "lowlevel" Message-ID: Hi all I read that the new version of Typo3 has a command line interface, but I can't work out how to access it. I have found it in the extension manager, but it isn't showing in my Tools area. In the extension information page, I get the warning Backend module conf file "dbint/cli/conf.php" should exist but does not! I have uninstalled and reinstalled, and cleared caches - is there something else I should do? Thanks in advance Cate From a.stoutjesdijk at chello.nl Fri Sep 7 15:04:47 2007 From: a.stoutjesdijk at chello.nl (Edwin Blokker) Date: Fri, 07 Sep 2007 15:04:47 +0200 Subject: [TYPO3] Timtab blog and SEO In-Reply-To: References: Message-ID: Dmitry Dulepov [typo3] schreef: > Look at my typo3bloke.net. I do not post often and do not promote it > much but it is on the first page in Google for queries like: > - performance typo3 (7th result) > - realurl typo3 (2nd result) > - templavoila typo3 (1st result) > > Timtab is not easy to setup though. Wordpress is much easier. Thanks for the comment, Dmitry. So what are the difficulties in setting up Timtab? The manual says it's very easy and fast to set up ;) From typo3-english at lists.netfielders.de Fri Sep 7 15:31:07 2007 From: typo3-english at lists.netfielders.de (Brian) Date: Fri, 07 Sep 2007 08:31:07 CDT Subject: [TYPO3] Conditional menu Message-ID: Hello all. On my site I have a menu structure that is pretty typical in that it shows pages on the same level and any subpages of the active page. Suppose that on one particular page (id = 15 suppose) that I do not want to show any of the subpages even on the active page but I still want to show the pages on the same level (suppose that is level 3). Now for a subpage of that page (level 4), I do not want to show pages on level 4 but only the pages on level 3 (so essentially the same menu that its parent page showed). Finally, on level 5, I want to only show the level 5 pages and nothing more. I know that I could set this manually on each page but the number of level 4 pages is too large for this to be feasible. Currently what I have is all pages on level 3 or below only showing the level 3 menu which is essentially what I want except for level 5. What I would like to do is to set some TypoScript on the level 3 page that would apply ONLY to its subpages. I was thinking that there might be a way to do this with a conditional statement saying if the ID of the page is not whatever the level 3 page is (I can set that manually because there are only 3 of them). Thoughts? From petro.boychuk at gmail.com Fri Sep 7 15:44:32 2007 From: petro.boychuk at gmail.com (=?KOI8-R?B?4s/K3tXLIPDF1NLP?=) Date: Fri, 7 Sep 2007 16:44:32 +0300 Subject: [TYPO3] Simulate page for menus Message-ID: Hi list! I would like you to give me an advice of how to solve the following problem. I have pages-categories: cat1 - subcat 1-1 -- subsubcat 1-1-1 -- subsubcat 1-1-2 -- subsubcat 1-1-3 -- subsubcat 1-1-4 - subcat 1-2 -- subsubcat 1-2-1 -- subsubcat 1-2-2 - subcat 1-3 ... cat2 ... cat3 ... Each page has items-articles in it, simple table with several fields. I created plugin to show items on these pages. Using TemplaVoila I've created typoscript element lib.itemsList and in setup I wrote: lib.ItemsList < plugin.tx_itemslist_pi1 On each page I show list of all items from this page and all subpages. Besides, each page has its own image (use Files filed in backend), navigation - list of subcategories, list of all categories on this level (with active element) and so on. Now I have to show single view for each article, all navigation output must be used from page where this article is located. F.e. if article is located on page "subsubcat 1-1-3" then in navigation this page must be shown as active. I have 3 solutions. Which one is the best solution to your mind? 1) Create on each page-category new page-singleview and place plugin with single view on each and show article with id from piVars. 2) Create 1 page for all items. I mean 1 page for single view and show needed article with id from piVars 3) Create mode for existing plugin, and show this mode when I have piVar set Pros and cons 1) This is not a good way of doing it. 2) The problem is that it is impossible to show navigation, because i am on different page. Maybe someone can tell how to simulate one page on another? 3) This is the easiest way, but not good enough. I can pass id of element from one category to page from another category, what then? And I can't create link like http://somesite.com/article/2345/ not http://somesite/cat1/subcat1-1/article/2345/ Could you please suggest me which one is the best way to go? Maybe you have some other ideas? thanks in advance. -- ? ???????, ?????? ????? From tjpatter at svsu.edu Fri Sep 7 15:52:51 2007 From: tjpatter at svsu.edu (Timothy Patterson) Date: Fri, 07 Sep 2007 09:52:51 -0400 Subject: [TYPO3] Stop the post RTE processing!!! Message-ID: I've been trying for ages to get the post-rte processing to behave properly with no luck. I have turned off my rte and dropping down to the html level to test my results. An example of the problem I am having is that occasionally I will get

    tags when I mix and match

    and

    tags throughout my code. The behavior of some of the cleanup functions is very erratic and spontaneous. Ultimately I would like a way to disable the post rte processing of both the

    and

    tags. Another alternative would be to stop post rte processing and allow my rte's code to go directly into the database. Any ideas? Anyone else have this problem? From andrew at avagraphique.com Fri Sep 7 16:01:59 2007 From: andrew at avagraphique.com (Andrew Davis) Date: Fri, 07 Sep 2007 10:01:59 -0400 Subject: [TYPO3] Add file extensions to the "Filelinks" content element? In-Reply-To: References: Message-ID: could this line be added to localconf.php instead of as part of an extension? i tried it and it didnt work, so im guessing no, but I wanted to ask. thanks, andrew Bernhard Kraft wrote: > Bjarne HELLIGSOE wrote: >> Hi, >> >> Simple question: Where and how do I add new file extensions to the >> "Filelinks" content element? >> On a webpage I am using this element with links to WMV files, and the >> element doesn't not know this file extension, and therefore using the >> default icon. I would like to add the WMV extension. >> But how? >> >> Thanks in advanced >> >> Best Regards, Bjarne >> >> > > You would either have to rewrite the core-file > > typo3/sysext/cms/tbl_ttcontent.php (or like that) > > In the TCA you have a field > > 'media' => array( > ... > 'allowed' => 'exe,png,bla,blub,add_yours_here', > > or remove this line and add: > > 'disallowed' => 'php,php3,php4,php5,cgi,sh' > > (just for security reason so no editor uploads his own scripts) > > > Or you could write your own little extension (Do so by using the kickstarter - > configure nothing except "General" - choose "Backend" as type ... doesn't really > matter what you choose as type). > > Then create a new "ext_tables.php" file in the new extension directory and put > the following code in it: > > ---------------------------- > if (!defined ('TYPO3_MODE')) die ('Access denied.'); > t3lib_div::loadTCA('tt_content'); > $TCA['tt_content']['columns']['media']['config']['allowed'] .= ',wmv'; > ?> > ---------------------------- > > take care to not have any leading or trailing newline after the > > greets, > Bernhard From andrew at avagraphique.com Fri Sep 7 16:17:06 2007 From: andrew at avagraphique.com (Andrew Davis) Date: Fri, 07 Sep 2007 10:17:06 -0400 Subject: [TYPO3] how to set a static_info field as dropdown choice for sr_frontenduser registration form Message-ID: I see on the extension for sr_feuser_register in the form (.tmpl) itself there is a dropdown for a static info field for country. I see in static info tables, there is a "country_zone" field that contains states. I want to use this as a source for dropdown for STATE choice in the registration process. I have added the item in the .tmpl for the extension, and matched the syntax for the other dropdown which is already working. but mine is not working, and Im not sure why... any advice here? Thanks in advance for help, Andrew From info at cybercraft.de Fri Sep 7 17:38:47 2007 From: info at cybercraft.de (JoH) Date: Fri, 7 Sep 2007 17:38:47 +0200 Subject: [TYPO3] how to set a static_info field as dropdown choice for sr_frontenduser registration form References: Message-ID: > I see on the extension for sr_feuser_register > in the form (.tmpl) itself there is a dropdown for a static info field > for country. > > I see in static info tables, there is a "country_zone" field that > contains states. I want to use this as a source for dropdown for > STATE choice in the registration process. > > I have added the item in the .tmpl for the extension, and matched the > syntax for the other dropdown which is already working. but mine is > not working, and Im not sure why... What exactly is not working? Did you add the field to the field list in the TS-Constants/-Setup? Without it the template part will just be ignored. HTH Joey From andrew at avagraphique.com Fri Sep 7 17:46:44 2007 From: andrew at avagraphique.com (Andrew Davis) Date: Fri, 07 Sep 2007 11:46:44 -0400 Subject: [TYPO3] email confirm link is incompete from sr_feuser_register Message-ID: In sr_feuser_register ... In the email that is sent with a link to confirm membership, the link url does not contain any parameters to pass back to typo, so clicking it just returns you to homepage... any ideas, this is giving me a headache ;-) thanks in advance, Andrew From mail at cascaval.com Fri Sep 7 17:48:54 2007 From: mail at cascaval.com (Tomas Mrozek) Date: Fri, 07 Sep 2007 17:48:54 +0200 Subject: [TYPO3] All text to TMENU link tekst In-Reply-To: References: Message-ID: >> NO.stdWrap.noTrimWrap = |try a || > not sure but you might find that it causes issues as || is also used as > part of optionSplit, which is available in the menuitem You are right. That doesn't work. It makes noTrimWrap kinda troublesome. Hmm, pity. Tomas Mrozek From headhunterxiii at yahoo.ca Fri Sep 7 17:51:30 2007 From: headhunterxiii at yahoo.ca (Tyler Kraft) Date: Fri, 07 Sep 2007 16:51:30 +0100 Subject: [TYPO3] All text to TMENU link tekst In-Reply-To: References: Message-ID: Yeah I know... I had that happen for me, and it took forever to figure out why. In the end it was Joey who managed to figure out what the issue was actually. Its a bit of pain really. Tomas Mrozek wrote: > >> NO.stdWrap.noTrimWrap = |try a || > >> not sure but you might find that it causes issues as || is also used >> as part of optionSplit, which is available in the menuitem > > You are right. That doesn't work. It makes noTrimWrap kinda troublesome. > Hmm, pity. > > Tomas Mrozek From dmitry at typo3.org Fri Sep 7 18:51:53 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Fri, 07 Sep 2007 19:51:53 +0300 Subject: [TYPO3] Timtab blog and SEO In-Reply-To: References: Message-ID: Edwin Blokker wrote: > Thanks for the comment, Dmitry. So what are the difficulties in setting > up Timtab? The manual says it's very easy and fast to set up ;) For me it took three days. And I am not a novice... I do not remember what it was but it was not easy. I prefer WordPress for its ease of installation and much better backend for blogging but since I already installed timtab, I live with it. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From typo3-english at lists.netfielders.de Fri Sep 7 21:46:40 2007 From: typo3-english at lists.netfielders.de (Brian) Date: Fri, 07 Sep 2007 14:46:40 CDT Subject: [TYPO3] Conditional menu References: Message-ID: Just an update, I came up with the following TypoScript that doesn't work but may explain better what I'm trying to accomplish: side.menu_1 = HMENU side.menu_1.if { value.data = 4 equals = treeLevel } side.menu_1.isTrue.entryLevel = 3 side.menu_1.isFalse.entryLevel = 1 So basically what I'm trying to do, is if the tree level value is 4, I want the entry level to be 3. If it is anything else, I want it to be 1. From info at cybercraft.de Fri Sep 7 22:35:49 2007 From: info at cybercraft.de (JoH asenau) Date: Fri, 7 Sep 2007 22:35:49 +0200 Subject: [TYPO3] Conditional menu References: Message-ID: > Just an update, I came up with the following TypoScript that doesn't > work but may explain better what I'm trying to accomplish: > > side.menu_1 = HMENU > side.menu_1.if { > value.data = 4 > equals = treeLevel > } There's no if that would work like this in TYPO3. Have a look at TSref to find out how to do it. http://typo3.org/documentation/document-library/references/doc_core_tsref/4.1.0/view/5/7/ TS is not a real language but a configuration array, so don't expect the "if" settings to have any similarity to PHP or languages you might already know. > side.menu_1.isTrue.entryLevel = 3 > side.menu_1.isFalse.entryLevel = 1 Doesn't exist, thus won't do anything. What you are looking for is called "Conditions". http://typo3.org/documentation/document-library/references/doc_core_tsref/4.1.0/view/4/1/ One of them is treeLevel so you can do something like this: First setup the default (same as the "isFalse" in your example) side.menu_1 = HMENU side.menu_1 { entryLevel = 1 1 = TMENU 1 { # blah } } # then come up with the condition [treeLevel = 4] side.menu_1.entryLevel = 3 [global] That's all HTH Joey -- Wenn man keine Ahnung hat: Einfach mal Fresse halten! (If you have no clues: simply shut your gob sometimes!) Dieter Nuhr, German comedian openBC/Xing: http://www.cybercraft.de T3 cookbook: http://www.typo3experts.com From catepeter at optusnet.com.au Sat Sep 8 02:29:26 2007 From: catepeter at optusnet.com.au (Cate & Peter) Date: Sat, 8 Sep 2007 10:29:26 +1000 Subject: [TYPO3] no PHPMyAdmin in Tools of 4.1.2 Message-ID: I no longer have access to PHPMyAdmin in the backend of my Typo3 installation, following upgrade to 4.1.2 - has it been removed??? Surely not? Cate Deans Smith From typo3 at rvt.dds.nl Sat Sep 8 05:20:32 2007 From: typo3 at rvt.dds.nl (ries van Twisk) Date: Fri, 7 Sep 2007 22:20:32 -0500 Subject: [TYPO3] no PHPMyAdmin in Tools of 4.1.2 In-Reply-To: References: Message-ID: On Sep 7, 2007, at 7:29 PM, Cate & Peter wrote: > > > I no longer have access to PHPMyAdmin in the backend of my Typo3 > installation, following upgrade to 4.1.2 - has it been removed??? > Surely > not? > > > Cate Deans Smith > > > It's an extension that can be downloaded from TER. Ries -- Ries van Twisk Freelance TYPO3 Developer email: ries at vantwisk.nl web: http://www.rvantwisk.nl/ skype: callto://r.vantwisk Phone: + 1 810-476-4193 From jkokino at gmail.com Sat Sep 8 10:01:18 2007 From: jkokino at gmail.com (Darko) Date: Sat, 8 Sep 2007 10:01:18 +0200 Subject: [TYPO3] cooluri ext: CoolURIConf.xml in fileadmin/ Message-ID: Hey folks, I have coolURI 1.0.4 but I still cant manage to properly initiate CoolUriConf.xml from fileadmin/templates Typo v4.1.1 here. I set XMLPATH = fileadmin/templates/ from Extension Manager by clicking cooluri extension. I then go to "COOLUri" in Tool section (Typo3 BE) and I get XML Config file not found. Jan tells me he fixed it but I cannot see this. fileadmin has 777, templates 755 access permissions if it matters. Thanks for looking Darko From typo3 at andreas-balzer.de Sat Sep 8 12:06:02 2007 From: typo3 at andreas-balzer.de (Andreas Balzer) Date: Sat, 08 Sep 2007 12:06:02 +0200 Subject: [TYPO3] Set a type for T3 PHP functionn typoLink Message-ID: Hi! I'd like to create a speicial link within an extens?on. Therefore I use the function typoLink. It works almost fine except I can't figure out how to pass a type parameter that is recognized by simulate static? If I just add one via & it works without simulate static but I have to find a way to get it working. The online API of TYPO3 isn't commented very well for this function... :-/ Any idea? Andreas From catepeter at optusnet.com.au Sat Sep 8 12:44:44 2007 From: catepeter at optusnet.com.au (Cate & Peter) Date: Sat, 8 Sep 2007 20:44:44 +1000 Subject: [TYPO3] no PHPMyAdmin in Tools of 4.1.2 In-Reply-To: <25717300.1189227177345.JavaMail.root@m48> Message-ID: Hi Ries > > I no longer have access to PHPMyAdmin in the backend of my Typo3 > > installation, following upgrade to 4.1.2 - has it been removed??? > > Surely > > not? > > > > It's an extension that can be downloaded from TER. Thanks - found it. Was this a documented drop anywhere? I have had it in every version since I don't know when, and it just disappeared in this upgrade. Cate From c_nabil68 at yahoo.fr Sat Sep 8 12:54:35 2007 From: c_nabil68 at yahoo.fr (nabil cha) Date: Sat, 8 Sep 2007 10:54:35 +0000 (GMT) Subject: [TYPO3] wfqbe - 'update on change' option Message-ID: Hello, I work with wfqbe . How ca I use the 'update on change' option in the 'Wizard for search form' ? Thanks a lot Nabil CHAOUI _____________________________________________________________________________ Ne gardez plus qu'une seule adresse mail ! Copiez vos mails vers Yahoo! Mail From typo3-german-02 at oliverklee.de Sat Sep 8 13:33:51 2007 From: typo3-german-02 at oliverklee.de (Oliver Klee) Date: Sat, 08 Sep 2007 13:33:51 +0200 Subject: [TYPO3] One Time Passwords for FE/BE In-Reply-To: References: Message-ID: Hi, T.M.Snyder schrieb: ["onetimeaccount" extension] > Will this work also for BE USers or is there a solution at hand? No, the onetimeaccount extension only works for FE users. Regards Oliver From shewett at sitescience.co.uk Sat Sep 8 14:13:16 2007 From: shewett at sitescience.co.uk (Steven Hewett) Date: Sat, 8 Sep 2007 13:13:16 +0100 Subject: [TYPO3] UK Typo3 developer wanted ASAP In-Reply-To: Message-ID: Cheshire (Chester) agency looking for an extra pair of hands. Preferably permanent in-house but will consider freelance in short-term. We've finished a handful of Typo3 projects and have quite a few more on the books. Jobs could range from simple SME sites to clients with subsites spread over multiple servers (and occasionally talking to each other!). You don't have to be a core developer but will need to demonstrate a good level of understanding and experience. You should be capable of constructing high quality sites to meet our artwork and schedules and work well with the rest of the team. We're a friendly bunch and work hard at what we do. Please send details, rates, availability etc. to steve at rapportcreative.co.uk (No recruitment agencies.) Thanks, Steve Hewett Rapport Creative www.rapportcreative.co.uk No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.485 / Virus Database: 269.13.9/994 - Release Date: 07/09/2007 16:40 From typo3 at rvt.dds.nl Sat Sep 8 14:55:18 2007 From: typo3 at rvt.dds.nl (ries van Twisk) Date: Sat, 8 Sep 2007 07:55:18 -0500 Subject: [TYPO3] no PHPMyAdmin in Tools of 4.1.2 In-Reply-To: References: Message-ID: On Sep 8, 2007, at 5:44 AM, Cate & Peter wrote: > Hi Ries > >>> I no longer have access to PHPMyAdmin in the backend of my Typo3 >>> installation, following upgrade to 4.1.2 - has it been removed??? >>> Surely >>> not? >>> > >> >> It's an extension that can be downloaded from TER. > > > > Thanks - found it. > > Was this a documented drop anywhere? I have had it in every version > since I > don't know when, and it just disappeared in this upgrade. It was documented.. somewhere at some place :) > > > Cate > > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english -- Ries van Twisk Freelance TYPO3 Developer email: ries at vantwisk.nl web: http://www.rvantwisk.nl/ skype: callto://r.vantwisk Phone: + 1 810-476-4193 From typo3 at andreas-balzer.de Sat Sep 8 15:03:04 2007 From: typo3 at andreas-balzer.de (Andreas Balzer) Date: Sat, 08 Sep 2007 15:03:04 +0200 Subject: [TYPO3] Set a type for T3 PHP functionn typoLink In-Reply-To: References: Message-ID: I have figured out thanks to the T3 chat. The array element "parameter" has to hold a comma seperated value. ID,TYPE that triggers T3 to use the correct type. From oliver at liquidlight.co.uk Sat Sep 8 15:09:04 2007 From: oliver at liquidlight.co.uk (Oliver Rowlands) Date: Sat, 08 Sep 2007 14:09:04 +0100 Subject: [TYPO3] Setting page title from record information (like tt_news singleview) In-Reply-To: References: Message-ID: Hi Tiberius, Try using the RECORDS content object instead: page.headerData { 3 > 3 { preCObject = RECORDS preCObject { dontCheckPid = 1 tables = tx_pixmeps_table source.data = GPvar:tx_pixmeps_pi3|showUid conf { tx_pixmeps_table = TEXT tx_pixmeps_table { field = lastname htmlSpecialChars = 1 } } wrap = My website: | } } } Hope this help, Oliver tKoopa wrote: > Hi all, > > I'm trying to set the page title from a plugin (like tt_news does on > singleviews). I've tried: > > $GLOBALS['TSFE']->page['title'] = $row['lastname']; > $GLOBALS['TSFE']->indexedDocTitle = $row['lastname']; > > but apparently this doesn't work because my plugin is cached (needs to be) > > So I looked at doing in TS, and I'm almost there but I can't retrieve > the DB record information dynamically > > page.headerData.3 > > page.headerData.3 = TEXT > # This works when setting the record id statically > #page.headerData.3.data = DB : tx_pixmeps_table:10:lastname > #but not using the get var > page.headerData.3.data = DB : > tx_pixmeps_table:{GPvar:tx_pixmeps_pi3|showUid}:lastname > page.headerData.3.wrap = My website: | > > Any pointer would be great, > > Thanks, > > Tiberius -- Oliver Rowlands :: Liquid Light :: E - oliver at liquidlight.co.uk W - http://www.liquidlight.co.uk T - 00 44 (0)845 6 58 88 35 F - 00 44 (0)845 6 58 44 35 From dmitry at typo3.org Sat Sep 8 18:03:30 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Sat, 08 Sep 2007 19:03:30 +0300 Subject: [TYPO3] cooluri ext: CoolURIConf.xml in fileadmin/ In-Reply-To: References: Message-ID: Darko wrote: > I have coolURI 1.0.4 but I still cant manage to properly initiate > CoolUriConf.xml from fileadmin/templates I am really very hard resisting to say: "Try RealURL instead!" :D Only joking, sorry :D -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From dirnbauer at web-consulting.at Sat Sep 8 19:52:49 2007 From: dirnbauer at web-consulting.at (Kurt Dirnbauer) Date: Sat, 08 Sep 2007 19:52:49 +0200 Subject: [TYPO3] incomplete tarball typo3_src-4.2.0alpha1.tar.gz Message-ID: hi, There seems to be an Upload-error of the tarball source file. (new 4.2.0.alpha-version) All the other downloads seem to be ok. typo3_src-4.2.0alpha1.tar.gz --> only 1.1M. --> Maybe someone (ingo renner?) could upload the tarball again? 9435 dummy-4.2.0alpha1.tar.gz 20929 dummy-4.2.0alpha1.zip 9186270 typo3_src+dummy-4.2.0alpha1.zip 1126400 typo3_src-4.2.0alpha1.tar.gz 9135873 typo3_src-4.2.0alpha1.zip Thanks for your work on TYPO3 4.2! cheers, kurt -- web:consulting DI(FH) Kurt Dirnbauer? http://www.web-consulting.at E: dirnbauer at web-consulting.at T: +43 699 1134 6402 Landstra?er Hauptstra?e 75-77, Top 6 (Linker Aufgang), 1030 Wien S?tzgasse 5, 7210 Mattersburg From robert.flach at webtooldeveloper.com Sat Sep 8 20:06:54 2007 From: robert.flach at webtooldeveloper.com (Robert Flach, Developer) Date: Sat, 08 Sep 2007 13:06:54 -0500 Subject: [TYPO3] TemplaVoila Dynamic Access to stored content element Message-ID: The task: I have sections of my template whose content needs to be dynamically generated, will be static across most of the pages of the site (but will be changed periodically through the back end), but will be different for certain pages. The Idea: 1. Create a content element in a storage folder containing the content. 2. Creating a mapping of type TypoScriptObject in the DS for the main template of the site. 3. In the root page typoscript, create a typoscript object that points to or pulls in the content element from the storage folder. Make this object the path for the typoscriptobject in the DS. 4. In any sub page in which the content needs to change, override that object in an extension template with the alternate content either by pulling in a different content element from the storage folder, or creating a menu, etc. The problem: I can't seem to find how I can refer to and thus pull in the content from the content element in the storage folder via typoscript. I'm sure it must be possible and indeed it seems like it would be one of the more basic typoscript functions, but I'm not being able to figure out how to do it. If anyone can help me out with this problem I'd be very grateful :) If you have suggestions for a better way to approach the problem I'd be interested in that too. Thanks, Robert Flach From robert.flach at webtooldeveloper.com Sat Sep 8 20:08:08 2007 From: robert.flach at webtooldeveloper.com (Robert Flach, Developer) Date: Sat, 08 Sep 2007 13:08:08 -0500 Subject: [TYPO3] wec_map directions In-Reply-To: References: Message-ID: Wow. I know I did at some point, but apparently in moving elements around etc. I ended up with the map on a page that I hadn't included the static template. Thanks for the pointer. Jeff Segars wrote: > Robert, > Did you add the static Typoscript template? > > See > map/1.3.1/view/3/3/.> > > THanks, > Jeff > > > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english > From sandeep at netcontinuum.com Sun Sep 9 08:30:31 2007 From: sandeep at netcontinuum.com (Sandeep A.S) Date: Sun, 9 Sep 2007 12:00:31 +0530 (IST) Subject: [TYPO3] LDAP Authentication and some permission problem. Message-ID: Hi All, I am using macmade ldap authentication module.And authentication is perfectly fine.I am using it for both BE and FE authentication. I imported two users to typo3 database with authentication directly to ldap password.With the user admin I configured the user and given db mount point to a particular page.And through Web-Access I gave access permission like showpages,editpages,deletepages,create newpages etc... When I login as particular user It gaves me the edit option and create a sub page options.But when I click on either edit content or create a new page under the tree it gaves me blank page.The same happens if I go to the edit page properties page. Please suggest some points to troubleshoot . Thanks Sandeep From jkokino at gmail.com Sun Sep 9 09:30:48 2007 From: jkokino at gmail.com (Darko) Date: Sun, 9 Sep 2007 09:30:48 +0200 Subject: [TYPO3] cooluri ext: CoolURIConf.xml in fileadmin/ Message-ID: > > I have coolURI 1.0.4 but I still cant manage to properly initiate > > CoolUriConf.xml from fileadmin/templates > > I am really very hard resisting to say: "Try RealURL instead!" :D > > Only joking, sorry :D One point being, that I would like to see others trying to set fileadmin/templates/ path instead of the default typo3conf/ path. For testing purposes so we can verify that this works elsewhere and it is just me. Which I doubt actually because I've tried on different servers. Best, Darko From ab.becker at web.de Sun Sep 9 10:11:07 2007 From: ab.becker at web.de (Andreas Becker) Date: Sun, 9 Sep 2007 15:11:07 +0700 Subject: [TYPO3] cooluri ext: CoolURIConf.xml in fileadmin/ In-Reply-To: References: Message-ID: Hi Darko. If you go here: http://www.t3pack.org you can see that the xml can be in another folder. OK it is not in fileadmin, but it is in a subfolder of the abcstarter extension. http://www.t3pack.org/typo3conf/ext/abcstarter/scripts/CoolUriConf.xml Test: http://www.t3pack.org/typo3conf/CoolUriConf.xml (Page not found) http://www.t3pack.org/typo3conf/deactivierteCoolUriConf.xml (hier ist die deactivierte XML, vergleiche sie mal mit deiner) Check in your localconf.php file and if you are using i.e. abcstarter or other similar addicional starting packages, then check also here if everywhere the path is to the fileadmin folder. There was a Problem with an older Version but Jan fixed it. Perhaps the old path is still written down in the localconf.php files Andi From kaufmann at dwwd.ch Sun Sep 9 12:15:09 2007 From: kaufmann at dwwd.ch (Stefan Kaufmann) Date: Sun, 09 Sep 2007 11:15:09 +0100 Subject: [TYPO3] macina_banners with TemplaVoila In-Reply-To: References: Message-ID: Frederik Mortensen wrote: > Thanks, I didn't quite understand the details, but somehow I figured it > out. > > I mapped the cells for my banners as TS object path's and used the > lib.bannertop class instead of temp. and it works thank U !! > > Frederik > > Hello Frederik or anyone else reading this... I am trying exactly the same thing to do and I know this topic is a bit old butr maybe you can help. My banners just won't appear on the site. I use templavoila and macina_banners 1.5.0 Here my TS setup: lib.topbanner < plugin.tx_macinabanners_pi1 lib.topbanner { # show banners with this attribute (topbanner is a banner category...) placement = topbanner #mode to show banners. Options are: all, random mode = random # list of page IDs where the banners should be taken from (comma seperated. i.e.: 1,5,7) pidList = 285 # levels of recursion to search for banners recursive = 0 # Limit number of banners results_at_a_time = 3 } I am not sure if there is something wrong with my Typoscript. I use a TypoScript Object Path (lib.topbanner) to map it to the templavoila html-template... Any help appreciated. I've searched all documentation but have no further hint! Many thanks From kaufmann at dwwd.ch Sun Sep 9 12:18:57 2007 From: kaufmann at dwwd.ch (Stefan Kaufmann) Date: Sun, 09 Sep 2007 11:18:57 +0100 Subject: [TYPO3] macina_banners with TemplaVoila In-Reply-To: References: Message-ID: Frederik Mortensen wrote: > Thanks, I didn't quite understand the details, but somehow I figured it > out. > > I mapped the cells for my banners as TS object path's and used the > lib.bannertop class instead of temp. and it works thank U !! > > Frederik > > Dear Frederik or anyone else reading this... I have exactly the same Problem as you but I am stuck with it. My banners simply won't show in the FE. Searched all documentation and forums but I do not have any further hint. Is there something wrong with my typoscript? I map the extension with a typoscript object path to the TV template. Any help greatly appreciated... Stefan My Typoscript Setup: lib.topbanner < plugin.tx_macinabanners_pi1 lib.topbanner { # show banners with this attribute, default options are: "top, left, bottom, right", all Descriptions of Banner Categories can be used placement = topbanner #mode to show banners. Options are: all, random mode = random # list of page IDs where the banners should be taken from (comma seperated. i.e.: 1,5,7) pidList = 285 # levels of recursion to search for banners recursive = 0 # Limit number of banners results_at_a_time = 3 } From typo3 at andreas-balzer.de Sun Sep 9 13:09:22 2007 From: typo3 at andreas-balzer.de (Andreas Balzer) Date: Sun, 09 Sep 2007 13:09:22 +0200 Subject: [TYPO3] Newloginbox user listing problem Message-ID: Hi! I'd like to use the user listing of newloginbox but only want to show users of a specific usergroup. Is that somehow possibele? I only get all users.. :-/ Andreas From typo3 at andreas-balzer.de Sun Sep 9 14:03:14 2007 From: typo3 at andreas-balzer.de (Andreas Balzer) Date: Sun, 09 Sep 2007 14:03:14 +0200 Subject: [TYPO3] Newloginbox user listing problem In-Reply-To: References: Message-ID: answer: http://bugs.typo3.org/view.php?id=4532 From sd at ixnl.com Sun Sep 9 16:03:23 2007 From: sd at ixnl.com (sd at ixnl.com) Date: Sun, 9 Sep 2007 16:03:23 +0200 Subject: [TYPO3] horizontal listed menu Message-ID: Hi does anyone know of agood tutorial for menus. (horizontal) I am totally clueless. I have seen the movie on the typo3 site but is it totally outdated I think. A example would be appreciated with Typoscript css html A would appreciate it. Thanks Stan From typo3 at andreas-balzer.de Sun Sep 9 16:35:04 2007 From: typo3 at andreas-balzer.de (Andreas Balzer) Date: Sun, 09 Sep 2007 16:35:04 +0200 Subject: [TYPO3] Looking for an extension to manage files through FE Message-ID: Hi! Is there an extension that enables users to upload files in categories and manage their files then? Those files should be downloadable by others then. Andreas From proescho-typo3 at informatik.uni-muenchen.de Sun Sep 9 16:56:42 2007 From: proescho-typo3 at informatik.uni-muenchen.de (Timo Proescholdt) Date: Sun, 09 Sep 2007 16:56:42 +0200 Subject: [TYPO3] website structure / menu In-Reply-To: References: Message-ID: Timo Proescholdt a ?crit : > > My question is how to best built up the site structure so as to > minimize redundancy. Obviously page A needs a template and so > do B,C,D. (all the same). > > So what I was thinking was a structure like this > > -> B > / > root -> A -> C > \ > -> D > I found "Template on next level" (when you define template includes") today.. suits my needs. I hope this is gona help others as well! Timo From vladimir.kubak at upol.cz Sun Sep 9 17:05:33 2007 From: vladimir.kubak at upol.cz (Vladimir Kubak) Date: Sun, 9 Sep 2007 17:05:33 +0200 (CEST) Subject: [TYPO3] horizontal listed menu In-Reply-To: References: Message-ID: Look in the documentation for the document Typoscript by example > Hi > > does anyone know of agood tutorial for menus. (horizontal) > > I am totally clueless. > I have seen the movie on the typo3 site but is it totally outdated I > think. > > A example would be appreciated with > > Typoscript > css > html > > A would appreciate it. > > Thanks > > Stan > > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english > From proescho-typo3 at informatik.uni-muenchen.de Sun Sep 9 17:15:13 2007 From: proescho-typo3 at informatik.uni-muenchen.de (Timo Proescholdt) Date: Sun, 09 Sep 2007 17:15:13 +0200 Subject: [TYPO3] backend user sign up Message-ID: Hi, pretended that I want a site to be accessible only to users who have signed up previously and among which some should have editor rights, what would be the best way to go about that? What I thought was that it would be best to make them all backend users, but I'm not sure if some of my constraints hold.. Is there a way set up backend users (without the right to actually login into the backend) through a form automatically? Can a user group restricted page be protected so that the auth form checks username password against the backend? many thanks! Timo From stancza at stancza.cz Sun Sep 9 18:40:29 2007 From: stancza at stancza.cz (=?windows-1250?B?THVr4ZogU3Rhbujtaw==?=) Date: Sun, 09 Sep 2007 18:40:29 +0200 Subject: [TYPO3] bidirectional relation between tt_products and tt_news records Message-ID: Hello, I am using tt_products and tt_news extensions [ TYPO3 4.1.1 / tt_products 2.5.2 / tt_news 2.5.0 ] on my current project and I wonder if it is possible to establish relation between news item and product item in both directions and display them in SINGLE view. The project is mostly about press releases regarding installation of several products in one place (new building for example) and I want to assign those products to the news record and display links to their full details in frontend. It would be great to be able to have similar list of related news records in product SINGLE view too. Is something like that possible? If I understand it right, the bidirectional M-M relations extension could be possibly used for that. I have installed it, got the example "news categories" vs "news records" working, but I am not able to set it to my needs myself yet. I have been looking for some working example of what I have described above nearly all the weekend but without any success. Thanks in advance for any suggestions. Best Regards, Lukas Stancik PS: Sorry for my poor English From andrew at avagraphique.com Sun Sep 9 22:20:20 2007 From: andrew at avagraphique.com (Andrew Davis) Date: Sun, 09 Sep 2007 16:20:20 -0400 Subject: [TYPO3] get rlmp_securedownloads to use usergroup instead of user for specifying downloads Message-ID: trying to use rlmp_securedownloads which works nicely, but it uses the user session_id as the key basically, allowing you to specify a download available for a specific user. I wish to make a download available for a specific USERGROUP. I have tried to figure out the changes in the classs to make this happen, but I fear it is beyond me at this point... anybody tried this already i wonder? or perhaps can someone suggest another 'secure downloads' type extension that uses usergroup instead? thanks, Andrew From cloot at ukr.net Sun Sep 9 23:33:15 2007 From: cloot at ukr.net (Cloot) Date: Sun, 9 Sep 2007 14:33:15 -0700 (PDT) Subject: [TYPO3] Wrap the content in RTE (htmlArea RTE) In-Reply-To: References: Message-ID: Hi all. I have a bit different task, but i guess it is close to this topic: i need to wrap links in a definite content column. I've found this code tt_content.text.20.parseFunc.tags.link.typolink.wrap =
    |
    it wraps all links in all TEXT elements. May be you know how can I define wrapping only for Border or Right column? Thanks. Tyler Kraft wrote: > > Hi, > > and if you need it just on one page you can use either an extension > template on that page (and all subpages) or a condition > > [globalVar = TSFE:id=XX] > tt_content.text.20.wrap =
    |
    > [global] > > -- View this message in context: http://www.nabble.com/Wrap-the-content-in-RTE-%28htmlArea-RTE%29-tf4377642.html#a12581723 Sent from the TYPO3 English mailing list archive at Nabble.com. From jkokino at gmail.com Mon Sep 10 01:14:29 2007 From: jkokino at gmail.com (Darko Jr. Gonzalez) Date: Mon, 10 Sep 2007 01:14:29 +0200 Subject: [TYPO3] cooluri ext: CoolURIConf.xml in fileadmin/ In-Reply-To: References: Message-ID: Hi Andreas > Hi Darko. > > If you go here: http://www.t3pack.org you can see that the xml can be in > another folder. OK it is not in fileadmin, but it is in a subfolder of the > abcstarter extension. > > http://www.t3pack.org/typo3conf/ext/abcstarter/scripts/CoolUriConf.xml > > Test: > http://www.t3pack.org/typo3conf/CoolUriConf.xml (Page not found) > http://www.t3pack.org/typo3conf/deactivierteCoolUriConf.xml (hier ist die > deactivierte XML, vergleiche sie mal mit deiner) > > Check in your localconf.php file and if you are using i.e. abcstarter or > other similar addicional starting packages, then check also here if > everywhere the path is to the fileadmin folder. There was a Problem with an > older Version but Jan fixed it. Perhaps the old path is still written down > in the localconf.php files typo3conf/ is something that works on my end too. It doesnt work outside of typo3conf as intended. I know about that in the older version. I discussed with Jan about that back then. We are trying to resolve this with him now, actually he tries. What I would like to see, maybe you can try (if you have 1.0.4) and do test, do two tests: 1. move CoolUriXml.conf to fileadmin/templates/ 2. move CoolUriXml.conf to fileadmin/ And adjust XMLPATH field via the extension manager for cooluri, and let us know if it works. and your typo3 version, plus php. Regards, Darko From andrew at avagraphique.com Mon Sep 10 04:54:53 2007 From: andrew at avagraphique.com (Andrew Davis) Date: Sun, 09 Sep 2007 22:54:53 -0400 Subject: [TYPO3] get rlmp_securedownloads to use usergroup instead of user for specifying downloads In-Reply-To: References: Message-ID: hmm actually it doesnt look as though it is actually checking the user anyways... the method exists in the class but is never called (lol) a Andrew Davis wrote: > trying to use rlmp_securedownloads > which works nicely, but it uses the user session_id as the key > basically, allowing you to specify a download available for a specific > user. I wish to make a download available for a specific USERGROUP. > > I have tried to figure out the changes in the classs to make this > happen, but I fear it is beyond me at this point... > > anybody tried this already i wonder? or perhaps can someone suggest > another 'secure downloads' type extension that uses usergroup instead? > > thanks, > Andrew From patrick at typo3quebec.org Mon Sep 10 05:33:26 2007 From: patrick at typo3quebec.org (Patrick Gaumond) Date: Sun, 09 Sep 2007 23:33:26 -0400 Subject: [TYPO3] no PHPMyAdmin in Tools of 4.1.2 In-Reply-To: References: <25717300.1189227177345.JavaMail.root@m48> Message-ID: Cate & Peter wrote: >>> I no longer have access to PHPMyAdmin in the backend of my Typo3 >>> installation, following upgrade to 4.1.2 - has it been removed??? >>> Surely not? > Was this a documented drop anywhere? I have had it in every version since I > don't know when, and it just disappeared in this upgrade. Since 4.0 it was removed from Core: http://wiki.typo3.org/index.php/TYPO3_4.0 Removed Extensions The following extensions were shipped as default global extensions in TYPO3 3.8 and have been removed from the TYPO3 source. They are either still available through TER or have been phased out: ... phpmyadmin ... Also mentionned in the Stucki interview: http://news.typo3.org/news/article/interview-with-michael-stucki/ Extract: "Michael: There were several reasons. The idea to remove global extensions from the core distribution was planned since the introduction of the system extensions. The main advantage is that these extensions can be developed (and released) independently from the core. Another reason was - as you guessed correctly - that the size of the core was too big (e.g. phpmyadmin is solely 10MB)." Patrick Gaumond DMR Conseil From mauro.lorenzutti at webformat.com Mon Sep 10 09:40:11 2007 From: mauro.lorenzutti at webformat.com (Mauro Lorenzutti) Date: Mon, 10 Sep 2007 09:40:11 +0200 Subject: [TYPO3] wfqbe - 'update on change' option In-Reply-To: References: Message-ID: Hi Nabil, > Hello, > > I work with wfqbe . > How ca I use the 'update on change' option in the 'Wizard for search form' ? > > Thanks a lot > > Nabil CHAOUI > you can use it to automatically update a field after changing another field. Let's make an example. Suppose that you have two search markers: WFQBE_MARKER1 and WFQBE_MARKER2 marker1 is a selector box that lists all the usergroups marker2 is a selector box that lists all the fe_users you need that when a user selects a usergroup (in marker1), the second selector box has to be updated with the list of fe_users that belong to the selected usergroup. To do this, you have to set WFQBE_MARKER2 in the "update on change" field of the MARKER1 configuration. In the MARKER2 configuration you have to define a where clause like this: "usergroup=###WFQBE_MARKER1###" I hope this example is clear enough. Regards, -- Mauro Lorenzutti e-mail: mauro.lorenzutti at webformat.com --------------------------------------------------------- WEBFORMAT srl | Corte Europa, 12 | I-33097 SPILIMBERGO PN Tel +39-0427-926.389 -- Fax +39-0427-927.653 info at webformat.com -- http://www.webformat.com --------------------------------------------------------- From dmitry at typo3.org Mon Sep 10 09:42:31 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Mon, 10 Sep 2007 10:42:31 +0300 Subject: [TYPO3] TemplaVoila Dynamic Access to stored content element In-Reply-To: References: Message-ID: Hi! Robert Flach, Developer wrote: > I can't seem to find how I can refer to and thus pull in the content > from the content element in the storage folder via typoscript. I'm sure > it must be possible and indeed it seems like it would be one of the more > basic typoscript functions, but I'm not being able to figure out how to > do it. > > If anyone can help me out with this problem I'd be very grateful :) If > you have suggestions for a better way to approach the problem I'd be > interested in that too. Looks like as simple as using CONTENT object in TypoScript. See examples in TSRef. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From dmitry at typo3.org Mon Sep 10 09:43:59 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Mon, 10 Sep 2007 10:43:59 +0300 Subject: [TYPO3] macina_banners with TemplaVoila In-Reply-To: References: Message-ID: Stefan Kaufmann wrote: > I have exactly the same Problem as you but I am stuck with it. > My banners simply won't show in the FE. Searched all documentation and > forums but I do not have any further hint. Is there something wrong with > my typoscript? I map the extension with a typoscript object path to the > TV template. Any help greatly appreciated... > # show banners with this attribute, default options are: "top, left, > bottom, right", all Descriptions of Banner Categories can be used > placement = topbanner What is "topbanner"? Does not look like a correct location. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From unai at alambre.net Mon Sep 10 09:59:43 2007 From: unai at alambre.net (Unai Aizpurua) Date: Mon, 10 Sep 2007 09:59:43 +0200 Subject: [TYPO3] Ajax don't working on backend! Message-ID: Hi all, I have an instalation of typo3 updated from 3.7 to 4.0 correctly. But the ajax in the backend don't work, for example: ? When you click over the icon of a file, it have no menu, ? Can't move the pages ? Everything that depends of contextual menus doesn't work. I have updated to typo3 4.1.2 and the menus doesn't work. The debugger tells errors on file:alt_db_navdframe.php xmldoc has no properties var t3ajax = xmldoc.getElementsByTagName("t3ajax")[0]; line 106 What can I do? Someone has seen something like that? Is very important to have it runing. Thanks in advance. Unai Aizpurua alambre estudio From florian.schupp at former03.de Mon Sep 10 10:18:41 2007 From: florian.schupp at former03.de (Florian Schupp | FORMER 03 GmbH) Date: Mon, 10 Sep 2007 10:18:41 +0200 Subject: [TYPO3] Different Menu Layout when only one Item Message-ID: Hi there, I have to give my Menuitem a different background if the menu only holds 1 item. When there are more than one items, the menu is already defined. How can i create such a menu? thanks in advance! Flo From hamel at urbansecurity.org Mon Sep 10 12:11:21 2007 From: hamel at urbansecurity.org (Fred) Date: Mon, 10 Sep 2007 12:11:21 +0200 Subject: [TYPO3] Making a menu with pretected pages. Message-ID: I have a website on typo3 (v4.1 on a windows server with iis) on which i have a pretected area like this : PageRubrique |__ Section01 | |__ Article01 | |__ Article02 |__ Section02 |__ Section03_login |__ Section03 |__ Article01 |__ Article02 The Section03_login is a page on which the login box (native) redirect on Section03. Section03 had "members" as general properties and I cheked "Include subpages" to protect all af them. Everything is working fine. I was asked to make a menu on Page Section_03 so users can see all the links of the pretected pages. The problem is they don't appear on it because they are pretected. Do you know a way of making a menu with pretected pages ? The other solution is to put the "member" group on the properties of the content and not on the page, but I don't know how to insert the login box on each page automatically and to translate it on the good language. I'm trying to do this with TypoScript but it's a bit tought. Thanks for the ideas. From headhunterxiii at yahoo.ca Mon Sep 10 12:33:16 2007 From: headhunterxiii at yahoo.ca (Tyler Kraft) Date: Mon, 10 Sep 2007 11:33:16 +0100 Subject: [TYPO3] horizontal listed menu In-Reply-To: References: Message-ID: Hi Start first with building good html and css the same way you would for any menu, and then just configure t3 to output that - let you css handle the horizontal menu layout. Perhaps look on www.alistapart.com hth Tyler sd at ixnl.com wrote: > Hi > > does anyone know of agood tutorial for menus. (horizontal) > > I am totally clueless. > I have seen the movie on the typo3 site but is it totally outdated I think. > > A example would be appreciated with > > Typoscript > css > html > > A would appreciate it. > > Thanks > > Stan > From headhunterxiii at yahoo.ca Mon Sep 10 12:37:15 2007 From: headhunterxiii at yahoo.ca (Tyler Kraft) Date: Mon, 10 Sep 2007 11:37:15 +0100 Subject: [TYPO3] Wrap the content in RTE (htmlArea RTE) In-Reply-To: References: Message-ID: Hi What your looking for is column specific rendering, and there are several previous posts on how to achieve that. You need to break it into different columns. So tt_content is a case to begin with, except its a case for the content types. Start buy making it a case for the column and then for each column break it into a case for content type. Then you can apply this wrapping to content in a specific column hth Tyler Cloot wrote: > Hi all. > I have a bit different task, but i guess it is close to this topic: i need > to wrap links in a definite content column. I've found this code > > tt_content.text.20.parseFunc.tags.link.typolink.wrap =
    style="link_style">|
    > > it wraps all links in all TEXT elements. May be you know how can I define > wrapping only for Border or Right column? > Thanks. > > > Tyler Kraft wrote: >> Hi, >> >> and if you need it just on one page you can use either an extension >> template on that page (and all subpages) or a condition >> >> [globalVar = TSFE:id=XX] >> tt_content.text.20.wrap =
    |
    >> [global] >> >> > From John.de.Stigter at bedrijvenweb.nl Mon Sep 10 13:25:06 2007 From: John.de.Stigter at bedrijvenweb.nl (John de Stigter) Date: Mon, 10 Sep 2007 13:25:06 +0200 Subject: [TYPO3] Manipulate BE field labels with TSConfig Message-ID: Hi, Is it possible to manipulate the labels of fields in the backend forms with TSConfig? Cheerios, John From catepeter at optusnet.com.au Mon Sep 10 13:33:25 2007 From: catepeter at optusnet.com.au (Cate & Peter) Date: Mon, 10 Sep 2007 21:33:25 +1000 Subject: [TYPO3] no PHPMyAdmin in Tools of 4.1.2 In-Reply-To: <24755476.1189398172440.JavaMail.root@m48> Message-ID: Hi Patrick Thanks for that :) I did search around a bit, but that article didn't come to my attention. > Cate & Peter wrote: > >>> I no longer have access to PHPMyAdmin in the backend of my Typo3 > >>> installation, following upgrade to 4.1.2 - has it been removed??? > >>> Surely not? > > > Was this a documented drop anywhere? I have had it in every version since I > > don't know when, and it just disappeared in this upgrade. > > Since 4.0 it was removed from Core: > > http://wiki.typo3.org/index.php/TYPO3_4.0 > > Removed Extensions > > The following extensions were shipped as default global extensions in > TYPO3 3.8 and have been removed from the TYPO3 source. They are either > still available through TER or have been phased out: > > ... > phpmyadmin > ... > > Also mentionned in the Stucki interview: > http://news.typo3.org/news/article/interview-with-michael-stucki/ > > Extract: > > "Michael: > There were several reasons. The idea to remove global extensions from > the core distribution was planned since the introduction of the system > extensions. The main advantage is that these extensions can be developed > (and released) independently from the core. Another reason was - as you > guessed correctly - that the size of the core was too big (e.g. > phpmyadmin is solely 10MB)." > Fair enough - just threw me a bit when it suddenly disappeared :) Cate From typo3-english at lists.netfielders.de Mon Sep 10 15:10:16 2007 From: typo3-english at lists.netfielders.de (Brian) Date: Mon, 10 Sep 2007 08:10:16 CDT Subject: [TYPO3] Conditional menu References: Message-ID: Thank you. Your solution worked like a charm. From typo3-english at lists.netfielders.de Mon Sep 10 15:10:39 2007 From: typo3-english at lists.netfielders.de (Brian) Date: Mon, 10 Sep 2007 08:10:39 CDT Subject: [TYPO3] Re: Conditional menu References: <1811756.111189171898072.JavaMail.tomcat@secure.tekdevelopment.com> Message-ID: [treeLevel = 4] ..code... [global] From dmitry at typo3.org Mon Sep 10 15:19:17 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Mon, 10 Sep 2007 16:19:17 +0300 Subject: [TYPO3] Conditional menu In-Reply-To: References: <1811756.111189171898072.JavaMail.tomcat@secure.tekdevelopment.com> Message-ID: Hi! Brian wrote: > [treeLevel = 4] > ..code... > [global] What is this about? -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From rgn at windinternet.nl Mon Sep 10 15:21:47 2007 From: rgn at windinternet.nl (Rudy Gnodde) Date: Mon, 10 Sep 2007 15:21:47 +0200 Subject: [TYPO3] Making a menu with pretected pages. In-Reply-To: References: Message-ID: Hello Fred, Fred wrote: > I have a website on typo3 (v4.1 on a windows server with iis) on which i > have a pretected area like this : > PageRubrique > |__ Section01 > | |__ Article01 > | |__ Article02 > |__ Section02 > |__ Section03_login > |__ Section03 > |__ Article01 > |__ Article02 > > The Section03_login is a page on which the login box (native) redirect > on Section03. Section03 had "members" as general properties and I cheked > "Include subpages" to protect all af them. Everything is working fine. > > I was asked to make a menu on Page Section_03 so users can see all the > links of the pretected pages. The problem is they don't appear on it > because they are pretected. Do you know a way of making a menu with > pretected pages ? > > The other solution is to put the "member" group on the properties of the > content and not on the page, but I don't know how to insert the login > box on each page automatically and to translate it on the good language. > I'm trying to do this with TypoScript but it's a bit tought. This can be done through TypoScript using the showAccessRestrictedPages property of TMENU (or GMENU). For example: lib.menu = HMENU lib.menu.1 = TMENU lib.menu.1.showAccessRestrictedPages = [uid to the login page] lib.menu.1.showAccessRestrictedPages.addParams = &redirect_url=###RETURN_URL### lib.menu.1.wrap =
      |
    lib.menu.1.NO { wrapItemAndSub =
  • |
  • } > Thanks for the ideas. You're welcome. Regards, Rudy Gnodde WIND Internet http://www.windinternet.nl From hamel at urbansecurity.org Mon Sep 10 17:28:22 2007 From: hamel at urbansecurity.org (Fred) Date: Mon, 10 Sep 2007 17:28:22 +0200 Subject: [TYPO3] Making a menu with pretected pages. In-Reply-To: References: Message-ID: Thanks for this answer; I'll try this ASAP ! For the plan B (/from outer space/), does anyone have an idea of how to insert in my template a login form that can be translated according to the curent language ? I'm trying with Typo3 but I'd like to include it as a content element so the users won't have to do it. Rudy Gnodde a ?crit : > Hello Fred, > > Fred wrote: >> I have a website on typo3 (v4.1 on a windows server with iis) on >> which i have a pretected area like this : >> PageRubrique >> |__ Section01 >> | |__ Article01 >> | |__ Article02 >> |__ Section02 >> |__ Section03_login >> |__ Section03 >> |__ Article01 >> |__ Article02 >> >> The Section03_login is a page on which the login box (native) >> redirect on Section03. Section03 had "members" as general properties >> and I cheked "Include subpages" to protect all af them. Everything is >> working fine. >> >> I was asked to make a menu on Page Section_03 so users can see all >> the links of the pretected pages. The problem is they don't appear on >> it because they are pretected. Do you know a way of making a menu >> with pretected pages ? >> >> The other solution is to put the "member" group on the properties of >> the content and not on the page, but I don't know how to insert the >> login box on each page automatically and to translate it on the good >> language. I'm trying to do this with TypoScript but it's a bit tought. > > This can be done through TypoScript using the > showAccessRestrictedPages property of TMENU (or GMENU). > > For example: > lib.menu = HMENU > lib.menu.1 = TMENU > lib.menu.1.showAccessRestrictedPages = [uid to the login page] > lib.menu.1.showAccessRestrictedPages.addParams = > &redirect_url=###RETURN_URL### > lib.menu.1.wrap =
      |
    > lib.menu.1.NO { > wrapItemAndSub =
  • |
  • > } > >> Thanks for the ideas. > You're welcome. > > Regards, > > Rudy Gnodde > WIND Internet > http://www.windinternet.nl From patrick at typo3quebec.org Mon Sep 10 17:31:10 2007 From: patrick at typo3quebec.org (Patrick Gaumond) Date: Mon, 10 Sep 2007 11:31:10 -0400 Subject: [TYPO3] Manipulate BE field labels with TSConfig In-Reply-To: References: Message-ID: John de Stigter wrote: > Is it possible to manipulate the labels of fields in the backend forms > with TSConfig? http://typo3.org/extensions/repository/view/alt_forms_field_title/1.0.1/ Have fun ! Patrick Gaumond DMR Conseil Qu?bec From andrew at avagraphique.com Mon Sep 10 20:09:37 2007 From: andrew at avagraphique.com (Andrew Davis) Date: Mon, 10 Sep 2007 14:09:37 -0400 Subject: [TYPO3] use typenum in a conditional... how Message-ID: I want to use the typenum passed in a url to be in a conditional, somehting like [globalVar = TSFE:page|typenum = 1] do something [GLOBAL] is this correct? Am I close? Hints ;-) I have read thru the conditionals section of tsref and see no mention of typenum... any help much appreciated! Andrew From dominik.smatana at gmail.com Mon Sep 10 21:43:33 2007 From: dominik.smatana at gmail.com (Dominik Smatana) Date: Mon, 10 Sep 2007 21:43:33 +0200 Subject: [TYPO3] Private TER (+ SVN) Message-ID: Hello, there is an "Enter repository URL" option in TYPO3 4.1.2 BE -> EM -> Settings -> "Mirror selection" with following note: If you set a repository URL, this overrides the use of a mirror. Use this to select a specific (private) repository. I've got two questions: - where can I find more information how to setup a private TER? - is there any way to "connect" EM to SVN repository directly? :) Thanks for help. Dominik Smatana From headhunterxiii at yahoo.ca Mon Sep 10 21:47:52 2007 From: headhunterxiii at yahoo.ca (Tyler Kraft) Date: Mon, 10 Sep 2007 20:47:52 +0100 Subject: [TYPO3] use typenum in a conditional... how In-Reply-To: References: Message-ID: what do you mean by typenum? the page type number from the BE template? If its a get variable (therefore passes in the url) or a post variable then you use [globalVar = GP:typenum=1] Andrew Davis wrote: > I want to use the typenum passed in a url to be in a conditional, > somehting like > > > [globalVar = TSFE:page|typenum = 1] > do something > [GLOBAL] > > is this correct? Am I close? Hints ;-) I have read thru the > conditionals section of tsref and see no mention of typenum... > > any help much appreciated! > Andrew From cloot at ukr.net Mon Sep 10 22:11:23 2007 From: cloot at ukr.net (=?WINDOWS-1251?Q?=C4=E0=F0=FC=FF_=CB=EE=EDc=EA=E0=FF?=) Date: Mon, 10 Sep 2007 23:11:23 +0300 Subject: [TYPO3] Wrap the content in RTE (htmlArea RTE) In-Reply-To: Message-ID: Hi and thank you? for answer. If I understand you right it should be something like this??? it doesn't work yet :)) temp.border_content=CONTENT temp.border_content { ?? table=tt_content ?? select { ?? where= colPos = 3 ? } ?? renderObj=COA ?? renderObj.wrap =
  • |
  • ?? } or, in other way i've found subparts.BORDER.renderObj.stdWrap.wrap= | ?could it? be used to wrap links inside the Border column? I'm new to TS, any help will be appreciated. > Hi > > What your looking for is column specific rendering, and there are > several previous posts on how to achieve that. > > You need to break it into different columns. So tt_content is a case to > begin with, except its a case for the content types. Start buy making it > a case for the column and then for each column break it into a case for > content type. Then you can apply this wrapping to content in a specific > column > > hth > Tyler > > > Cloot wrote: > > Hi all. > > I have a bit different task, but i guess it is close to this topic: i need > > to wrap links in a definite content column. I've found this code > > > > tt_content.text.20.parseFunc.tags.link.typolink.wrap = > > style="link_style">| > > > > it wraps all links in all TEXT elements. May be you know how can I define > > wrapping only for Border or Right column? > > Thanks. From nrdimatteo at tiscali.it Mon Sep 10 22:28:43 2007 From: nrdimatteo at tiscali.it (Nicola Raffaele Di Matteo) Date: Mon, 10 Sep 2007 22:28:43 +0200 Subject: [TYPO3] How remove the width attribute in img tag Message-ID: I'd like to remove the width and height attributes in img tag. I'd like to use css to set the width and other things (for example in imgtext content I'd like to have width:100% for the image). Many thanks for your help. Regards, Nicola. From headhunterxiii at yahoo.ca Mon Sep 10 22:31:00 2007 From: headhunterxiii at yahoo.ca (Tyler Kraft) Date: Mon, 10 Sep 2007 21:31:00 +0100 Subject: [TYPO3] Wrap the content in RTE (htmlArea RTE) In-Reply-To: References: Message-ID: No you need to make all the content in the column render differently temp.customRender = CASE temp.customRender.key.field = colPos temp.customRender.0 < tt_content temp.customRender.1 < tt_content temp.customRender.2 < tt_content temp.customRender.3 < tt_content temp.customRender.default < tt_content tt_content > tt_content < temp.customRender tt_content.0.textpic.20 < tt_content.0.image.20 tt_content.0.textpic.20.text.20 < tt_content.0.text.20 tt_content.1.textpic.20 < tt_content.1.image.20 tt_content.1.textpic.20.text.20 < tt_content.1.text.20 tt_content.2.textpic.20 < tt_content.2.image.20 tt_content.2.textpic.20.text.20 < tt_content.2.text.20 tt_content.3.textpic.20 < tt_content.3.image.20 tt_content.3.textpic.20.text.20 < tt_content.3.text.20 tt_content.default.textpic.20 < tt_content.default.image.20 tt_content.default.textpic.20.text.20 < tt_content.default.text.20 This has now made each column render individually of the others - that means we can now adjust the content rendering serperately So if we wanted to adjust the border column we would add this line: tt_content.3.text.20.parseFunc.tags.link.typolink.wrap =
    |
    hth (note the typoscript might not be perfectly correct, its just an example of what you need) ????? ???c??? wrote: > Hi and thank you for answer. If I understand you right it should be something like this? it doesn't work yet :)) > > temp.border_content=CONTENT > temp.border_content { > table=tt_content > select { > where= colPos = 3 } > renderObj=COA > renderObj.wrap =
  • |
  • > } > or, in other way i've found > > subparts.BORDER.renderObj.stdWrap.wrap= | > > could it be used to wrap links inside the Border column? > > I'm new to TS, any help will be appreciated. > >> Hi >> >> What your looking for is column specific rendering, and there are >> several previous posts on how to achieve that. >> >> You need to break it into different columns. So tt_content is a case to >> begin with, except its a case for the content types. Start buy making it >> a case for the column and then for each column break it into a case for >> content type. Then you can apply this wrapping to content in a specific >> column >> >> hth >> Tyler >> >> >> Cloot wrote: >>> Hi all. >>> I have a bit different task, but i guess it is close to this topic: i need >>> to wrap links in a definite content column. I've found this code >>> >>> tt_content.text.20.parseFunc.tags.link.typolink.wrap = > > > style="link_style">| >>> >>> it wraps all links in all TEXT elements. May be you know how can I define >>> wrapping only for Border or Right column? >>> Thanks. > > From cloot at ukr.net Mon Sep 10 23:04:07 2007 From: cloot at ukr.net (=?WINDOWS-1251?Q?=C4=E0=F0=FC=FF_=CB=EE=EDc=EA=E0=FF?=) Date: Tue, 11 Sep 2007 00:04:07 +0300 Subject: [TYPO3] Wrap the content in RTE (htmlArea RTE) In-Reply-To: Message-ID: Yeah - thanks. It works! :) temp.customRender = CASE temp.customRender.key.field = colPos temp.customRender.default < tt_content temp.customRender.0 < tt_content temp.customRender.1 < tt_content temp.customRender.2 < tt_content temp.customRender.3 < tt_content temp.customRender.2.text.20.parseFunc.tags.link.typolink.wrap =
    |
    tt_content > tt_content < temp.customRender That's correct. Thanks a lot )) --- ???????? ????????? --- ?? ????: Tyler Kraft (headhunterxiii at yahoo.ca) ????: typo3-english at lists.netfielders.de ????: 10 ????????, 23:31:00 ????: Re: [TYPO3] Wrap the content in RTE (htmlArea RTE) > No you need to make all the content in the column render differently > > > temp.customRender = CASE > temp.customRender.key.field = colPos > temp.customRender.0 < tt_content > temp.customRender.1 < tt_content > temp.customRender.2 < tt_content > temp.customRender.3 < tt_content > temp.customRender.default < tt_content > tt_content > > tt_content < temp.customRender > tt_content.0.textpic.20 < tt_content.0.image.20 > tt_content.0.textpic.20.text.20 < tt_content.0.text.20 > tt_content.1.textpic.20 < tt_content.1.image.20 > tt_content.1.textpic.20.text.20 < tt_content.1.text.20 > tt_content.2.textpic.20 < tt_content.2.image.20 > tt_content.2.textpic.20.text.20 < tt_content.2.text.20 > tt_content.3.textpic.20 < tt_content.3.image.20 > tt_content.3.textpic.20.text.20 < tt_content.3.text.20 > tt_content.default.textpic.20 < tt_content.default.image.20 > tt_content.default.textpic.20.text.20 < tt_content.default.text.20 > > This has now made each column render individually of the others - that > means we can now adjust the content rendering serperately > > So if we wanted to adjust the border column we would add this line: > > tt_content.3.text.20.parseFunc.tags.link.typolink.wrap = > style="link_style">| > > hth > > (note the typoscript might not be perfectly correct, its just an example > of what you need) > > > > > ????? ???c??? wrote: > > Hi and thank you for answer. If I understand you right it should be something like this? it doesn't work yet :)) > > > > temp.border_content=CONTENT > > temp.border_content { > > table=tt_content > > select { > > where= colPos = 3 } > > renderObj=COA > > renderObj.wrap = | > > } > > or, in other way i've found > > > > subparts.BORDER.renderObj.stdWrap.wrap= | > > > > could it be used to wrap links inside the Border column? > > > > I'm new to TS, any help will be appreciated. > > > >> Hi > >> > >> What your looking for is column specific rendering, and there are > >> several previous posts on how to achieve that. > >> > >> You need to break it into different columns. So tt_content is a case to > >> begin with, except its a case for the content types. Start buy making it > >> a case for the column and then for each column break it into a case for > >> content type. Then you can apply this wrapping to content in a specific > >> column > >> > >> hth > >> Tyler > >> > >> > >> Cloot wrote: > >>> Hi all. > >>> I have a bit different task, but i guess it is close to this topic: i need > >>> to wrap links in a definite content column. I've found this code > >>> > >>> tt_content.text.20.parseFunc.tags.link.typolink.wrap = > > > > style="link_style">| > >>> > >>> it wraps all links in all TEXT elements. May be you know how can I define > >>> wrapping only for Border or Right column? > >>> Thanks. > > > > > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english -- ??????? ?????? ?????? ? ?????? ?? JOB.ukr.net http://job.ukr.net From eric.y at spingroup.com Mon Sep 10 23:30:33 2007 From: eric.y at spingroup.com (eric young) Date: Mon, 10 Sep 2007 21:30:33 +0000 Subject: [TYPO3] macina banners not rotating Message-ID: has anyone got the macina banners extension to actually rotate? From bstoltz81 at comcast.net Tue Sep 11 06:38:18 2007 From: bstoltz81 at comcast.net (Bill Stoltz) Date: Tue, 11 Sep 2007 00:38:18 -0400 Subject: [TYPO3] Previewing Template changes in Workspace? Message-ID: Hi, Once you have a live site, and you want to make some changes, seems like a workspace might be a good place for this. Does the following make sense? You could do some things like map a DS to an new template, or update an Object to point to a new lib.newmenu, link to a new css file to change color scheme, etc Then you could preview this using the preview page in draft / custom workspace. Then once you have it work, Can you publish all the changes at one time? or do you have to publish each change? Are there any good examples of extensions that force things to use the workspace and how to use the api correctly. The Core Api manual lists a lot of calls, but does not give a lot of examples of how to use them. As always, thanks in advance for all the help and suggestions. Bill Stoltz From kw at hovsa.dk Tue Sep 11 08:03:39 2007 From: kw at hovsa.dk (Kristian Wind) Date: Tue, 11 Sep 2007 08:03:39 +0200 Subject: [TYPO3] Mailing lists in Typo3 Message-ID: Hello all! Are there any updated (or just good) case study on how to install, configure and handle html mailing lists in Typo3. Best regards, Kristian kw at hovsa.dk From ranjeet at fivee.in Tue Sep 11 08:58:23 2007 From: ranjeet at fivee.in (Ranjeet Kumar) Date: Tue, 11 Sep 2007 12:28:23 +0530 Subject: [TYPO3] Image Not Upload By Flexform Message-ID: Hi All, I want to upload two images by flexform so I have done the flowing in flexform file group file gif, jpg,jpeg,png 100 uploads/tx_vincent5emaps 1 1 1 Width:180px check But Image Not uploaded What I have done wrong? Please Help me Thank in advance Ranjeet Kumar From bidau at ensci.com Tue Sep 11 09:22:53 2007 From: bidau at ensci.com (=?ISO-8859-1?Q?Isma=EBl_Bidau?=) Date: Tue, 11 Sep 2007 09:22:53 +0200 Subject: [TYPO3] LDAP authentification and User setup : how to desactivate change password ? Message-ID: Hi, I use ldap_lib and ldap_server to authenticated my FE and BE users on Active Directoy. It works. But I would like to desactivate the "new password" feature in User setup (cause it doesn't change the password on my Active Directory). Is there a way to achieve this ? Must I fill a feature request ? Isma?l BIDAU www.ensci.com From dmitry at typo3.org Tue Sep 11 09:48:44 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Tue, 11 Sep 2007 10:48:44 +0300 Subject: [TYPO3] macina banners not rotating In-Reply-To: References: Message-ID: eric young wrote: > has anyone got the macina banners extension to actually rotate? Yes. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From dmitry at typo3.org Tue Sep 11 09:50:08 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Tue, 11 Sep 2007 10:50:08 +0300 Subject: [TYPO3] Private TER (+ SVN) In-Reply-To: References: Message-ID: Hi! Dominik Smatana wrote: > there is an "Enter repository URL" option in TYPO3 4.1.2 BE -> EM -> > Settings -> "Mirror selection" with following note: > > If you set a repository URL, this overrides the use of a mirror. Use > this to select a specific (private) repository. > > I've got two questions: > - where can I find more information how to setup a private TER? Gold rule: search before you post. http://www.google.com/search?q=private+ter > - is there any way to "connect" EM to SVN repository directly? :) No. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From florian.schupp at former03.de Tue Sep 11 09:56:44 2007 From: florian.schupp at former03.de (Florian Schupp | FORMER 03 GmbH) Date: Tue, 11 Sep 2007 09:56:44 +0200 Subject: [TYPO3] Different Menu Layout when only one Item In-Reply-To: References: Message-ID: not one hint? please! thanks Flo Florian Schupp | FORMER 03 GmbH wrote: > Hi there, > > I have to give my Menuitem a different background if the menu only holds > 1 item. When there are more than one items, the menu is already defined. > > How can i create such a menu? > > thanks in advance! > Flo From dominik.smatana at gmail.com Tue Sep 11 10:36:16 2007 From: dominik.smatana at gmail.com (Dominik Smatana) Date: Tue, 11 Sep 2007 10:36:16 +0200 Subject: [TYPO3] Private TER (resolved) Message-ID: Hi Dmitry, On 11/09/2007, Dmitry Dulepov [typo3] wrote: > Hi! > > Dominik Smatana wrote: > > there is an "Enter repository URL" option in TYPO3 4.1.2 BE -> EM -> > > Settings -> "Mirror selection" with following note: > > > > If you set a repository URL, this overrides the use of a mirror. Use > > this to select a specific (private) repository. > > > > I've got two questions: > > - where can I find more information how to setup a private TER? > > Gold rule: search before you post. > > http://www.google.com/search?q=private+ter Sorry... I use Google of course, but it doesn't tell me which information is relevant, correct, actual, etc... so I will still try to ask on forums and mailing list too :) I've found good article: http://blog.web-crossing.com/2007/2/28/your-own-typo3-private-exension-repository-tutorial > > > - is there any way to "connect" EM to SVN repository directly? :) > > No. Thanks for info... -- Dominik Smatana From nightowl at galnet.dk Tue Sep 11 10:55:58 2007 From: nightowl at galnet.dk (Brian Bendtsen) Date: Tue, 11 Sep 2007 10:55:58 +0200 Subject: [TYPO3] Menu doesnt work with multiple domain records Message-ID: Hi I have posted about this problem a few times before but I have gotten nowhere, so now I will submit a link to the site where you will see my problem. The site is kursus.mentor-it.dk. I have a top menu to the right, with 6 menu items, each one is supposed to be accessible by a different domain name. I have defined all menu items as external URL's. Im currently testing with one extra domain name called kursus1.mentor-it.dk - if you type this address in your browser you will go to the top menu item "Arbejdernes boligforening". This works but then the top menu stop working. Clicking one the other top menu items has no effect. clicking the link, also defined as an external link "G? tilbage til forsiden" do work. Any idea how I can fix my menu? /Brian Bendtsen From haefti at gmx.de Tue Sep 11 11:13:51 2007 From: haefti at gmx.de (Michael) Date: Tue, 11 Sep 2007 11:13:51 +0200 Subject: [TYPO3] Private TER (+ SVN) In-Reply-To: References: Message-ID: >> I've got two questions: >> - where can I find more information how to setup a private TER? > > Gold rule: search before you post. > > http://www.google.com/search?q=private+ter Platinum rule: use the right keywords. http://www.google.com/search?hl=de&q=private+ter+typo3&btnG=Suche&lr= SCNR From mail at cascaval.com Tue Sep 11 11:32:28 2007 From: mail at cascaval.com (Tomas Mrozek) Date: Tue, 11 Sep 2007 11:32:28 +0200 Subject: [TYPO3] BE - multilingual page tree Message-ID: PROBLEM: ------- I've already built a couple of multilingual sites using "one page tree" concept. However, all the additional languages were actually maintained by the editors who understood the default language. Now I'm facing situation in which other languages will be maintained by people who don't understand the default language and... here it comes... the backend page tree will be a mystery for them since it always displays page titles of the default language. QUESTION: -------- Is there any way to get the page tree to show translation of the page titles (if available) if the user's allowed language matches one of the page translations? Thanks in advance for any hint or comment! Tomas Mrozek From headhunterxiii at yahoo.ca Tue Sep 11 11:43:38 2007 From: headhunterxiii at yahoo.ca (Tyler Kraft) Date: Tue, 11 Sep 2007 10:43:38 +0100 Subject: [TYPO3] Wrap the content in RTE (htmlArea RTE) In-Reply-To: References: Message-ID: Its been a while since I needed to do this so I might be wrong, but I think you might find that the text with image item doesn't work. Thats what the last few lines are for (but I made a mistake in my original post) tt_content.0.textpic.20 =< tt_content.0.image.20 tt_content.0.textpic.20.text.20 =< tt_content.0.text.20 tt_content.1.textpic.20 =< tt_content.1.image.20 tt_content.1.textpic.20.text.20 =< tt_content.1.text.20 tt_content.2.textpic.20 =< tt_content.2.image.20 tt_content.2.textpic.20.text.20 =< tt_content.2.text.20 tt_content.3.textpic.20 =< tt_content.3.image.20 tt_content.3.textpic.20.text.20 =< tt_content.3.text.20 tt_content.default.textpic.20 =< tt_content.default.image.20 tt_content.default.textpic.20.text.20 =< tt_content.default.text.20 hth ????? ???c??? wrote: > Yeah - thanks. It works! :) > > > temp.customRender = CASE > temp.customRender.key.field = colPos > temp.customRender.default < tt_content > temp.customRender.0 < tt_content > temp.customRender.1 < tt_content > temp.customRender.2 < tt_content > temp.customRender.3 < tt_content > > temp.customRender.2.text.20.parseFunc.tags.link.typolink.wrap =
    |
    > > tt_content > > tt_content < temp.customRender > > > That's correct. Thanks a lot )) > > > > --- ???????? ????????? --- > ?? ????: Tyler Kraft (headhunterxiii at yahoo.ca) > ????: typo3-english at lists.netfielders.de > ????: 10 ????????, 23:31:00 > ????: Re: [TYPO3] Wrap the content in RTE (htmlArea RTE) > >> No you need to make all the content in the column render differently >> >> >> temp.customRender = CASE >> temp.customRender.key.field = colPos >> temp.customRender.0 < tt_content >> temp.customRender.1 < tt_content >> temp.customRender.2 < tt_content >> temp.customRender.3 < tt_content >> temp.customRender.default < tt_content >> tt_content > >> tt_content < temp.customRender >> tt_content.0.textpic.20 < tt_content.0.image.20 >> tt_content.0.textpic.20.text.20 < tt_content.0.text.20 >> tt_content.1.textpic.20 < tt_content.1.image.20 >> tt_content.1.textpic.20.text.20 < tt_content.1.text.20 >> tt_content.2.textpic.20 < tt_content.2.image.20 >> tt_content.2.textpic.20.text.20 < tt_content.2.text.20 >> tt_content.3.textpic.20 < tt_content.3.image.20 >> tt_content.3.textpic.20.text.20 < tt_content.3.text.20 >> tt_content.default.textpic.20 < tt_content.default.image.20 >> tt_content.default.textpic.20.text.20 < tt_content.default.text.20 >> >> This has now made each column render individually of the others - that >> means we can now adjust the content rendering serperately >> >> So if we wanted to adjust the border column we would add this line: >> >> tt_content.3.text.20.parseFunc.tags.link.typolink.wrap = > > style="link_style">| >> >> hth >> >> (note the typoscript might not be perfectly correct, its just an example >> of what you need) >> >> >> >> >> ????? ???c??? wrote: >>> Hi and thank you for answer. If I understand you right it should be something like this? it doesn't work yet :)) >>> >>> temp.border_content=CONTENT >>> temp.border_content { >>> table=tt_content >>> select { >>> where= colPos = 3 } >>> renderObj=COA >>> renderObj.wrap = | >>> } >>> or, in other way i've found >>> >>> subparts.BORDER.renderObj.stdWrap.wrap= | >>> >>> could it be used to wrap links inside the Border column? >>> >>> I'm new to TS, any help will be appreciated. >>> >>>> Hi >>>> >>>> What your looking for is column specific rendering, and there are >>>> several previous posts on how to achieve that. >>>> >>>> You need to break it into different columns. So tt_content is a case to >>>> begin with, except its a case for the content types. Start buy making it >>>> a case for the column and then for each column break it into a case for >>>> content type. Then you can apply this wrapping to content in a specific >>>> column >>>> >>>> hth >>>> Tyler >>>> >>>> >>>> Cloot wrote: >>>>> Hi all. >>>>> I have a bit different task, but i guess it is close to this topic: i need >>>>> to wrap links in a definite content column. I've found this code >>>>> >>>>> tt_content.text.20.parseFunc.tags.link.typolink.wrap = >>>>> style="link_style">| >>>>> >>>>> it wraps all links in all TEXT elements. May be you know how can I define >>>>> wrapping only for Border or Right column? >>>>> Thanks. >>> >>> >> _______________________________________________ >> TYPO3-english mailing list >> TYPO3-english at lists.netfielders.de >> http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english > > > -- > ??????? ?????? ?????? ? ?????? ?? JOB.ukr.net > http://job.ukr.net > > > From mail at cascaval.com Tue Sep 11 11:57:20 2007 From: mail at cascaval.com (Tomas Mrozek) Date: Tue, 11 Sep 2007 11:57:20 +0200 Subject: [TYPO3] BE - content translations Message-ID: PROBLEM: ------- When creating a content translation there's a selectbox which displays possible parents (l18n_parent). If the parent content has a header set then it's displayed in the selectbox. If it doesn't then part of the actual content text is displayed. However the text is too long (> 150 characters) and thus so is the selectbox. In TYPO3 4.0.x the selectbox width/text length was somehow limited. In TYPO3 4.1.x this limit has been apparently increased. QUESTION: -------- Does anynone know how to crop the text length and get the orginal setting as in TYPO3 4.0.x? Thanks in advance! Tomas Mrozek From dmitry at typo3.org Tue Sep 11 13:03:07 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Tue, 11 Sep 2007 14:03:07 +0300 Subject: [TYPO3] Private TER (+ SVN) In-Reply-To: References: Message-ID: Michael wrote: > Platinum rule: use the right keywords. > > http://www.google.com/search?hl=de&q=private+ter+typo3&btnG=Suche&lr= Does it make much difference in this case? :) The very first result in my query gives the answer. And yet another rule: you should use full name in these mailing lists ;) See here: http://typo3.org/1438.0.html -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From lasse at clioonline.dk Tue Sep 11 14:45:08 2007 From: lasse at clioonline.dk (Lasse Guldsborg) Date: Tue, 11 Sep 2007 14:45:08 +0200 Subject: [TYPO3] Problems with FE login by IP ( cc_iplogin_fe ) References: Message-ID: Just to answer my own question, in case anyone is interested =) The T3 guru Thomas Lorenzen made an extension for me. I think he plans to publish it to TER (tl_ipfelogin), but in case it takes a while before he gets around to it I'll just post the main part of the extension code here so you guys can se how it was done: function main($content,$conf) { if($GLOBALS["TSFE"]->fe_user->user) { return; } $ip = $_SERVER["REMOTE_ADDR"]; $query = 'select * from fe_users where FIND_IN_SET("'.$ip.'",tx_tlipfelogin_autologin_ips)'.$this->cObj->enableFields("fe_users"); $res = $GLOBALS["TYPO3_DB"]->sql_query($query); $FE_USER = $GLOBALS["TYPO3_DB"]->sql_fetch_assoc($res); if($FE_USER) { $content .= ' id).'"> '; return $content; } } Best regards, Lasse Guldsborg "Lasse Guldsborg" skrev i en meddelelse news:mailman.1.1186742038.14391.typo3-english at lists.netfielders.de... > Hi > > I would like to have certain FE users auto-login by IP, but I can't get > the cc_iplogin_fe / cc_ipauth extensions working. > > I have installed the following: > typo3 4.1.1 > cc_iplogin_fe 1.1.1 > cc_ipauth 1.1.1 > > I believe I have followed the (fairly short) manual to the letter. Can > anyone tell me if the extensions are even compatible with t3 4.1.1, or if > there is a good alternative solution? > > Any help is much appreciated! > > Best regards, > Lasse > From mangoo at wpkg.org Tue Sep 11 15:01:46 2007 From: mangoo at wpkg.org (Tomasz Chmielewski) Date: Tue, 11 Sep 2007 15:01:46 +0200 Subject: [TYPO3] "Template -> Include static -> Items" is empty Message-ID: I just wanted to create a new TYPO3 website. I downloaded TYPO3 4.1.2, unpacked it, configured database, logged in as admin, wanted to create a new template, but "Items" in "Template -> Include static" is just empty - no "cSet stylesheet", no "content (default)" there, it's just empty with no items to choose. Did I forget about anything obvious? -- Tomasz Chmielewski http://wpkg.org From mortenkjems at gmail.com Tue Sep 11 15:27:20 2007 From: mortenkjems at gmail.com (Morten Kjems) Date: Tue, 11 Sep 2007 15:27:20 +0200 Subject: [TYPO3] News pagebrowser will not show page two??? Message-ID: Hi. I have implementet tt_news before and it works just fine on the different projects. But now I have a wierd problem with my current project. If I click "next" or "page 2" in the page browser in list view nothing happens. The list view shows the same news as before. "Next" and "page 2" points to this URL: http://domain.com/subpage.html?tx_ttnews%5Bpointer%5D=1 But the url dos not change either. It just stays on http://domain.com/subpage.html. Any suggestion on how to solve this problem? Thanks /Morten From eric.y at spingroup.com Tue Sep 11 15:47:04 2007 From: eric.y at spingroup.com (eric young) Date: Tue, 11 Sep 2007 13:47:04 +0000 Subject: [TYPO3] macina banners not rotating In-Reply-To: References: Message-ID: is there anything special i need to do to get it to rotate banner records?? mine always shows the first banner i created in each location. Dmitry Dulepov [typo3] wrote: > eric young wrote: > >> has anyone got the macina banners extension to actually rotate? >> > > Yes. > > From tkoopa at gmail.com Tue Sep 11 15:56:47 2007 From: tkoopa at gmail.com (tkoopa at gmail.com) Date: Tue, 11 Sep 2007 15:56:47 +0200 Subject: [TYPO3] Setting page title from record information (like tt_news singleview) In-Reply-To: References: Message-ID: Thanks Oliver, I made a couple of changes but that's what I was looking for. Here is the final code for those that are looking to do something similar config.noPageTitle = 2 page.headerData.3 > page.headerData.3 = COA page.headerData.3.1 = RECORDS page.headerData.3.1 { dontCheckPid = 1 source.data = GPvar:tx_pixmeps_pi3|showUid tables = tx_pixmeps_table conf.tx_pixmeps_table > conf.tx_pixmeps_table = TEXT conf.tx_pixmeps_table.field = lastname conf.tx_pixmeps_table.htmlSpecialChars = 1 } page.headerData.3.2 = TEXT page.headerData.3.2.value =   page.headerData.3.3 = RECORDS page.headerData.3.3 { dontCheckPid = 1 source.data = GPvar:tx_pixmeps_pi3|showUid tables = tx_pixmeps_table conf.tx_pixmeps_table > conf.tx_pixmeps_table = TEXT conf.tx_pixmeps_table.field = firstname conf.tx_pixmeps_table.htmlSpecialChars = 1 } page.headerData.3.wrap = Member : | On 9/8/07, Oliver Rowlands wrote: > Hi Tiberius, > > Try using the RECORDS content object instead: > > page.headerData { > 3 > > 3 { > preCObject = RECORDS > preCObject { > dontCheckPid = 1 > tables = tx_pixmeps_table > source.data = GPvar:tx_pixmeps_pi3|showUid > conf { > tx_pixmeps_table = TEXT > tx_pixmeps_table { > field = lastname > htmlSpecialChars = 1 > } > } > wrap = My website: | > } > } > } > > Hope this help, > > Oliver > > tKoopa wrote: > > Hi all, > > > > I'm trying to set the page title from a plugin (like tt_news does on > > singleviews). I've tried: > > > > $GLOBALS['TSFE']->page['title'] = $row['lastname']; > > $GLOBALS['TSFE']->indexedDocTitle = $row['lastname']; > > > > but apparently this doesn't work because my plugin is cached (needs to be) > > > > So I looked at doing in TS, and I'm almost there but I can't retrieve > > the DB record information dynamically > > > > page.headerData.3 > > > page.headerData.3 = TEXT > > # This works when setting the record id statically > > #page.headerData.3.data = DB : tx_pixmeps_table:10:lastname > > #but not using the get var > > page.headerData.3.data = DB : > > tx_pixmeps_table:{GPvar:tx_pixmeps_pi3|showUid}:lastname > > page.headerData.3.wrap = My website: | > > > > Any pointer would be great, > > > > Thanks, > > > > Tiberius > > > -- > Oliver Rowlands > :: Liquid Light :: > > E - oliver at liquidlight.co.uk > W - http://www.liquidlight.co.uk > > T - 00 44 (0)845 6 58 88 35 > F - 00 44 (0)845 6 58 44 35 > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english > From typo3-english at lists.netfielders.de Tue Sep 11 16:45:54 2007 From: typo3-english at lists.netfielders.de (Jake Cooper) Date: Tue, 11 Sep 2007 09:45:54 CDT Subject: [TYPO3] mailformplus saving to DB table Message-ID: I am using mailformplus to generate forms on my website. I want to save the information from each form to a Database Table. I have multiple forms on my site and would like to save each form to a separate table. I cannot figure out how to do that. I can only see where I can specify one table name to use for all form data. I also experimented with Tmailform, but am having problems getting it to work, so since I am more familiar with mailformplus, I'd like to make it work for me for saving each form to a different DB table. Any help/suggestions/documentation would be greatly appreciated. Thank you in advance for your time. Jake Cooper From hamel at urbansecurity.org Tue Sep 11 18:24:35 2007 From: hamel at urbansecurity.org (Fred) Date: Tue, 11 Sep 2007 18:24:35 +0200 Subject: [TYPO3] Making a menu with pretected pages. In-Reply-To: References: Message-ID: So I tried but I failed, thank you anyway. I'm trying to do this : I want to delete the page Section03_login and to let Section03 properties to public access. On the pages Article01... I set the properties of the content elements to "members". My problem is : I have a lot of pages like and my users want the most simple solution, so I'm trying to make a loginbox in the template, with "hide at login" property, but I can't manage to find how. Rudy Gnodde a ?crit : > Hello Fred, > > Fred wrote: >> I have a website on typo3 (v4.1 on a windows server with iis) on >> which i have a pretected area like this : >> PageRubrique >> |__ Section01 >> | |__ Article01 >> | |__ Article02 >> |__ Section02 >> |__ Section03_login >> |__ Section03 >> |__ Article01 >> |__ Article02 >> >> The Section03_login is a page on which the login box (native) >> redirect on Section03. Section03 had "members" as general properties >> and I cheked "Include subpages" to protect all af them. Everything is >> working fine. >> >> I was asked to make a menu on Page Section_03 so users can see all >> the links of the pretected pages. The problem is they don't appear on >> it because they are pretected. Do you know a way of making a menu >> with pretected pages ? >> >> The other solution is to put the "member" group on the properties of >> the content and not on the page, but I don't know how to insert the >> login box on each page automatically and to translate it on the good >> language. I'm trying to do this with TypoScript but it's a bit tought. > > This can be done through TypoScript using the > showAccessRestrictedPages property of TMENU (or GMENU). > > For example: > lib.menu = HMENU > lib.menu.1 = TMENU > lib.menu.1.showAccessRestrictedPages = [uid to the login page] > lib.menu.1.showAccessRestrictedPages.addParams = > &redirect_url=###RETURN_URL### > lib.menu.1.wrap =
      |
    > lib.menu.1.NO { > wrapItemAndSub =
  • |
  • > } > >> Thanks for the ideas. > You're welcome. > > Regards, > > Rudy Gnodde > WIND Internet > http://www.windinternet.nl From katja.lampela at lieska.net Tue Sep 11 18:30:35 2007 From: katja.lampela at lieska.net (Katja Lampela) Date: Tue, 11 Sep 2007 19:30:35 +0300 Subject: [TYPO3] Menu doesnt work with multiple domain records In-Reply-To: References: Message-ID: Hi Brian, I don't know much of the previous discussion but here's my working ts setup for multiple domain (and realURL): config.simulateStaticDocuments = 0 config.baseURL = http://www.mydomain.fi/ config.tx_realurl_enable = 1 config.linkVars = config.prefixLocalAnchors = all config.domainTarget = _top - Katja Brian Bendtsen kirjoitti: > Hi > > I have posted about this problem a few times before but I have gotten > nowhere, so now I will submit a link to the site where you will see my > problem. > > The site is kursus.mentor-it.dk. > > I have a top menu to the right, with 6 menu items, each one is supposed > to be accessible by a different domain name. I have defined all menu items > as external URL's. > > Im currently testing with one extra domain name called > kursus1.mentor-it.dk - if you type this address in your browser you will > go to the top menu item > "Arbejdernes boligforening". > > This works but then the top menu stop working. Clicking one the other > top menu items has no effect. clicking the link, also defined as an > external link > "G? tilbage til forsiden" do work. > > Any idea how I can fix my menu? > > /Brian Bendtsen From eric.y at spingroup.com Tue Sep 11 18:52:29 2007 From: eric.y at spingroup.com (eric young) Date: Tue, 11 Sep 2007 16:52:29 +0000 Subject: [TYPO3] macina banners not rotating In-Reply-To: References: Message-ID: my boss figured it out for me. "results_at_a_time", as a configuration variable, is bad grammar. please change this to "maximum_records" "results_at_a _time" would lead me to believe it is only used when "all" is the mode. eric young wrote: > has anyone got the macina banners extension to actually rotate? > > > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english > From katja.lampela at lieska.net Tue Sep 11 19:08:54 2007 From: katja.lampela at lieska.net (Katja Lampela) Date: Tue, 11 Sep 2007 20:08:54 +0300 Subject: [TYPO3] Making a menu with pretected pages. In-Reply-To: References: Message-ID: Hi Fred, Try newloginbox extension. You can add a marker, for example ###login### to your html template and check the template setup code from the ext manual. HTH - Katja Fred kirjoitti: > So I tried but I failed, thank you anyway. > I'm trying to do this : I want to delete the page Section03_login and to > let Section03 properties to public access. > On the pages Article01... I set the properties of the content elements > to "members". > My problem is : I have a lot of pages like and my users want the most > simple solution, so I'm trying to make a loginbox in the template, with > "hide at login" property, but I can't manage to find how. > > Rudy Gnodde a ?crit : >> Hello Fred, >> >> Fred wrote: >>> I have a website on typo3 (v4.1 on a windows server with iis) on >>> which i have a pretected area like this : >>> PageRubrique >>> |__ Section01 >>> | |__ Article01 >>> | |__ Article02 >>> |__ Section02 >>> |__ Section03_login >>> |__ Section03 >>> |__ Article01 >>> |__ Article02 >>> From Chris.Baril at cossette.com Tue Sep 11 21:43:52 2007 From: Chris.Baril at cossette.com (Baril, Chris) Date: Tue, 11 Sep 2007 15:43:52 -0400 Subject: [TYPO3] crawler and indexed_search and tt_news Message-ID: Hello all. I am trying to set up the indexed_search extension to work with crawler.... I have gotten crawler to work and it detects my tt_news entries and creates the correct urls... Although, when I run the crawler CLI, it indexes all static pages, but NOT my dynamic tt_news ones.... So, I think I have crawler working, but can't get indexed_search to find all urls listed in crawler. I am now trying to see if I can use indexed_search's database-lookup option instead of getting my tt_news urls straight from crawler (since they do not get carried over), but so far without success. Does anyone know where I should start looking? Thanks in advance. From antoni_al at yahoo.com Tue Sep 11 21:46:30 2007 From: antoni_al at yahoo.com (Antoni Alvarez) Date: Tue, 11 Sep 2007 12:46:30 -0700 (PDT) Subject: [TYPO3] Content Rendering Message-ID: Hello all! I need to do the following: 1. Add a "Text" content element one line of text. eg. Applying for a job 2. Add an "Image" content element afterwards, which is basically a line of golden dots, like ................................... However, I need the image to appear right below the text. In other words, if I were to write html code to generate such elements I would do as follows: Applying for a job
    Now, my problem is the following: Typo3 wraps "Applying for jobs" in a

    tag and the image in

    tags, so the code is something equivalent to this:

    Applying for a job

    Anybody know how (or where in the documentation is) can I instruct Typo3 to enclose a "Text" content element to be enclosed in tags for example, and not to enclose "Image" content elements in any tag?. So the code generated would look like: Applying for a job
    Thanks, Antoni. ____________________________________________________________________________________ Luggage? GPS? Comic books? Check out fitting gifts for grads at Yahoo! Search http://search.yahoo.com/search?fr=oni_on_mail&p=graduation+gifts&cs=bz From andrew at avagraphique.com Tue Sep 11 21:52:57 2007 From: andrew at avagraphique.com (Andrew Davis) Date: Tue, 11 Sep 2007 15:52:57 -0400 Subject: [TYPO3] how can I access a variable set in insert plugin cobject? Message-ID: hi i have what im suer is a dumb question, but having problem finding answer I have a variable that indicates pid (startingpoint) for a plugin on a page, set thru the typo3 backend (insert plugin on a page, then set config there). How can i access that value within the plugin (php), to use with a query ? thanks for your help andrew From katja.lampela at lieska.net Tue Sep 11 22:43:28 2007 From: katja.lampela at lieska.net (Katja Lampela) Date: Tue, 11 Sep 2007 23:43:28 +0300 Subject: [TYPO3] Content Rendering In-Reply-To: References: Message-ID: Hi Antoni, This is quite basic rendering question (doesn't mean easy! ;) and you could start checking the module Web/Template/Constant editor/CONTENT - there you have the different elements and the wrappings. And to make sure it's not that simple, you must dig into the deeps of configuring the rich text editor. I guess the tinyrte is simpler to use, but maybe not so configurable.. but just guessing. - katja Antoni Alvarez kirjoitti: > Hello all! > I need to do the following: > > 1. Add a "Text" content element one line of text. eg. Applying for a job > 2. Add an "Image" content element afterwards, which is basically a line of golden dots, like ................................... > > However, I need the image to appear right below the text. In other words, if I were to write html code to generate such elements I would do as follows: > > Applying for a job
    > > > Now, my problem is the following: Typo3 wraps "Applying for jobs" in a

    tag and the image in

    tags, so the code is something equivalent to this: > >

    > Applying for a job >

    >
    > >
    > > Anybody know how (or where in the documentation is) can I instruct Typo3 to enclose a "Text" content element to be enclosed in tags for example, and not to enclose "Image" content elements in any tag?. So the code generated would look like: > > > > Applying for a job > >
    > > > Thanks, > > Antoni. > > > > > > ____________________________________________________________________________________ > Luggage? GPS? Comic books? > Check out fitting gifts for grads at Yahoo! Search > http://search.yahoo.com/search?fr=oni_on_mail&p=graduation+gifts&cs=bz From antoni_al at yahoo.com Tue Sep 11 22:55:51 2007 From: antoni_al at yahoo.com (Antoni Alvarez) Date: Tue, 11 Sep 2007 13:55:51 -0700 (PDT) Subject: [TYPO3] Consecutive lines in the RTE Message-ID: Hello all! In the RTE in I press 'enter', a

    tag is inserted. If I press 'shift + enter', a
    tag is inserted. This is great. However, when I save the information and show it in the front end, it is impossible to get consecutive lines, even though I used 'shift + enter'. For example, I want to write: Yesterday I went swimming. After that I went to the supermarket. There I found my friend from work. When I save that text and show it in the front end it shows like this: Yesterday I went swimming. After that I went to the supermarket. There I found my friend from work. Anybody knows why? Thank you, Antoni. ____________________________________________________________________________________ Shape Yahoo! in your own image. Join our Network Research Panel today! http://surveylink.yahoo.com/gmrs/yahoo_panel_invite.asp?a=7 From denyerec at gmail.com Tue Sep 11 23:24:58 2007 From: denyerec at gmail.com (Denyer Ec) Date: Tue, 11 Sep 2007 22:24:58 +0100 Subject: [TYPO3] Consecutive lines in the RTE In-Reply-To: References: Message-ID: Refer to this page in the HTML Area manual: http://typo3.org/documentation/document-library/extension-manuals/rtehtmlarea/1.4.4/view/3/1/ Regards, Denyerec On 9/11/07, Antoni Alvarez wrote: > Hello all! > > In the RTE in I press 'enter', a

    tag is inserted. If I press 'shift + enter', a
    tag is inserted. This is great. However, when I save the information and show it in the front end, it is impossible to get consecutive lines, even though I used 'shift + enter'. > > For example, I want to write: > > Yesterday I went swimming. > After that I went to the supermarket. > There I found my friend from work. > > When I save that text and show it in the front end it shows like this: > > Yesterday I went swimming. > > > After that I went to the supermarket. > > > There I found my friend from work. > > > Anybody knows why? > > Thank you, > > Antoni. > > > > > > ____________________________________________________________________________________ > Shape Yahoo! in your own image. Join our Network Research Panel today! http://surveylink.yahoo.com/gmrs/yahoo_panel_invite.asp?a=7 > > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english > -- ------- http://gallery.denyerec.co.uk From kevin at dauphin-mm.nl Wed Sep 12 00:06:25 2007 From: kevin at dauphin-mm.nl (Kevin Renskers) Date: Wed, 12 Sep 2007 00:06:25 +0200 Subject: [TYPO3] Content Rendering In-Reply-To: References: Message-ID: Hello Antoni, Maybe it would be easier just to use CSS styles to remove any margins so that the image appears right below the text? Should not be any problem with p and div tags really.. p { margin-bottom: 0px; } Cheers, Kevin > Hello all! > I need to do the following: > > 1. Add a "Text" content element one line of text. eg. Applying for a job > 2. Add an "Image" content element afterwards, which is basically a line of golden dots, like ................................... > > However, I need the image to appear right below the text. In other words, if I were to write html code to generate such elements I would do as follows: > > Applying for a job
    > > > Now, my problem is the following: Typo3 wraps "Applying for jobs" in a

    tag and the image in

    tags, so the code is something equivalent to this: > >

    > Applying for a job >

    >
    > >
    > > Anybody know how (or where in the documentation is) can I instruct Typo3 to enclose a "Text" content element to be enclosed in tags for example, and not to enclose "Image" content elements in any tag?. So the code generated would look like: > > > > Applying for a job > >
    > > > Thanks, > > Antoni. > > > > > > ____________________________________________________________________________________ > Luggage? GPS? Comic books? > Check out fitting gifts for grads at Yahoo! Search > http://search.yahoo.com/search?fr=oni_on_mail&p=graduation+gifts&cs=bz From proescho-typo3 at informatik.uni-muenchen.de Wed Sep 12 02:58:55 2007 From: proescho-typo3 at informatik.uni-muenchen.de (Timo Proescholdt) Date: Wed, 12 Sep 2007 02:58:55 +0200 Subject: [TYPO3] list children in menu Message-ID: Hi, sorry for writing so many mails lately.. I have been quite busy learning. And although I learned quite a lot in the last weeks there is something that drives me crazy.. I have been trying to find that out for ours now.. learned a lot of other things, but still have no clue.. I hope somebody can help me! I have a template with a menu in which the children of the current page should be listed. The thing is that this can occur at any hight of the tree.. so I cannot hardcode the entryLevel. So tried to set entryLevel of my menu object to treeLevel, but that does not yield the expected results. Please find my codesnippet (which I took from the typo3 enterprise book listings) below! many thanks! Timo Proescholdt temp.subnavigation = HMENU temp.subnavigation.entryLevel = 1 temp.subnavigation.1 = TMENU temp.subnavigation.1{ wrap =
      |
    NO { wrapItemAndSub =
  • |
  • stdWrap.case = lower } CUR < .NO CUR.wrapItemAndSub = CUR = 1 } temp.subnavigation { 2 < .1 } From offline at gmx.net Wed Sep 12 07:39:07 2007 From: offline at gmx.net (Th. Ernst) Date: Wed, 12 Sep 2007 05:39:07 +0000 (UTC) Subject: [TYPO3] Switch off extension for print view Message-ID: Hi there, I've got an issue with my print view. I'm using extension rgsmoothgallery to display pictures. I activated the feature to use it within a content element. This works very well in normal view. In the print preview I'd like to deactivate this extension, so that all images are displayed directly instead of only one picture at a time. Thus I need to find a way to deactivate this extension when displaying the print view. I already tried [globalVar = GP:print >0] plugin.tx_rgsmoothgallery_pi1 > [global] but this doesn't work. Anybody knowing how to perform this? Any help is really appreciated. I've been googling for hours now... Thanks Thomas From berfod at organum.hu Wed Sep 12 08:46:42 2007 From: berfod at organum.hu (Bertalan Fodor) Date: Wed, 12 Sep 2007 08:46:42 +0200 Subject: [TYPO3] multiple domain login problem Message-ID: Hi, I have a one-tree-multiple-domain installation. I can only login to the 'master' site, however, both frontends appear correctly. is missing. I mean on http://www.firstdomain.com/typo3 I can log in, but on http://www.seconddomain.com/typo3 I can't, the login screen appears, then but after giving my credentials, the "Login-error or session timed-out No user logged in! Sorry, I can't proceed then! (You must have cookies enabled!)" message appears. I checked the cookies, and I can see that a cookie with PHPSESSID is placed, but the cookie with be_typo_user is missing. Can you help me why this could happen, or where can I enable some logging to see some error message? Thank you, Bert From berfod at organum.hu Wed Sep 12 09:09:01 2007 From: berfod at organum.hu (Bertalan Fodor) Date: Wed, 12 Sep 2007 09:09:01 +0200 Subject: [TYPO3] multiple domain login problem In-Reply-To: References: Message-ID: I'm happy to answer myself :-) Install tool and $TYPO3_CONF_VARS['SYS']['cookieDomain'] is the solution. Bert Bertalan Fodor ?rta: > Hi, > > I have a one-tree-multiple-domain installation. I can only login to the > 'master' site, however, both frontends appear correctly. > is missing. I mean on http://www.firstdomain.com/typo3 I can log in, > but on http://www.seconddomain.com/typo3 I can't, the login screen > appears, then but after giving my credentials, the "Login-error or > session timed-out No user logged in! Sorry, I can't proceed then! (You > must have cookies enabled!)" message appears. I checked the cookies, and > I can see that a cookie with PHPSESSID is placed, but the cookie with > be_typo_user is missing. > > Can you help me why this could happen, or where can I enable some > logging to see some error message? > > Thank you, > > Bert From jeroen at roquin.nl Wed Sep 12 09:40:03 2007 From: jeroen at roquin.nl (Jeroen Visser) Date: Wed, 12 Sep 2007 09:40:03 +0200 Subject: [TYPO3] standard cellspacing and cellpadding in HTMLArea RTE Message-ID: Hello everyone, Does anyone have a idea how to set cellspacing and cellpadding standard to 0 in the TS configuration of the HTMLArea RTE. This code does not what I have hoped for: RTE.default.proc.entryHTMLparser_db = 1 RTE.default.proc.entryHTMLparser_db.tags.table.fixAttrib.cellspacing.set = 0 Thank's in advance Jeroen Visser From jeroen at roquin.nl Wed Sep 12 09:45:50 2007 From: jeroen at roquin.nl (Jeroen Visser) Date: Wed, 12 Sep 2007 09:45:50 +0200 Subject: [TYPO3] Problem with class=bodytext in htmlArea RTE Message-ID: Hello everyone, I have a problem with styles in the RTE. When I write this in the BE it looks as follow's:

    Lorem ipsum dolor sit amet.

    Morbi mattis, dui in gravida commodo, felis libero interdum metus, et condimentum magna nibh ut sapien. Morbi neque erat, nonummy a

    When I save this it does not save the class given to the pragraph but instead it becomes just a

    . When I look in the FE source I see:

    Lorem ipsum dolor sit amet.

    Morbi mattis, du. Does anyone has a idea howto fix this? When I say the class should be "a" then I really want it to be "a" J My TS is as follow's: // // Project: // Version: 1.0.0 // Date: // Auhor: // // Done with SweeTS - delicious TypoScript development. // http://typo3.area42.de // #RTE.default > RTE.default { contentCSS = fileadmin/styles/rte.css useCSS = 0 # showTagFreeClasses = 1 # hideTags = font, font (full) # classesParagraph = Hinweis, Gross #mainStyleOverride = 1 #ignoreMainStyleOverride = 1 #classesParagraph = #classesCharacter = #disablePCexamples = 1 proc.entryHTMLparser_db.tags.img > proc.allowTagsOutside := addToList(img) proc.dontConvBRtoParagraph = 1 proc.preserveTables = 1 proc.typolist = 0 } #RTE.classes > #RTE.default > ## Define labels and styles to be applied to class selectors in the interface of the RTE ## The examples included here make partial re-use of color scheme and frame scheme from CSS Styled Content extension RTE.classes { align-left { name = LLL:EXT:rtehtmlarea/htmlarea/locallang_tooltips.xml:justifyleft value = text-align: left; } // en meer } ## Anchor classes configuration for use by the anchor accesibility feature (htmlArea RTE only) RTE.classesAnchor { externalLink { class = external-link type = url titleText = LLL:EXT:rtehtmlarea/htmlarea/plugins/TYPO3Browsers/locallang.xml:external_li nk_titleText } // en meer } ## Default RTE configuration RTE.default { showTagFreeClasses = 1 disablePCexamples = 1 ## Markup options (htmlArea RTE only) enableWordClean = 1 removeTrailingBR = 1 removeComments = 1 removeTags = center, font, o:p, sdfield, strike,u removeTagsAndContents = style,script ## Toolbar options ## The TCA configuration may add buttons to the toolbar ## The following buttons are specific to Classic RTE: class ## The following buttons are specific to htmlArea RTE: blockstylelabel, blockstyle, textstylelabel, textstyle, ## insertcharacter, findreplace, removeformat, toggleborders, tableproperties, ## rowproperties, rowinsertabove, rowinsertunder, rowdelete, rowsplit, ## columninsertbefore, columninsertafter, columndelete, columnsplit, ## cellproperties, cellinsertbefore, cellinsertafter, celldelete, cellsplit, cellmerge showButtons ( class, blockstylelabel, blockstyle, textstylelabel, textstyle, formatblock, bold, italic, subscript, superscript, textindicator, insertcharacter, link, table, findreplace, chMode, removeformat, undo, redo, about, toggleborders, tableproperties, rowproperties, rowinsertabove, rowinsertunder, rowdelete, rowsplit, columninsertbefore, columninsertafter, columndelete, columnsplit, cellproperties, cellinsertbefore, cellinsertafter, celldelete, cellsplit, cellmerge ) ## More toolbar options (htmlArea RTE only) keepButtonGroupTogether = 1 ## Enable status bar (htmlArea RTE only) showStatusBar = 1 ## Hide infrequently used paragraph types in the paragraph type selector (formatblock button) hidePStyleItems = pre,address ## Add default example styles ## The example styles included here make partial re-use of color scheme and frame scheme from CSS Styled Content extension ## Left, center and right alignment of text in paragraphs and cells. inlineStyle.text-alignment ( p.align-left, h1.align-left, h2.align-left, h3.align-left, h4.align-left, h5.align-left, h6.align-left, td.align-left { text-align: left; } p.align-center, h1.align-center, h2.align-center, h3.align-center, h4.align-center, h5.align-center, h6.align-center, td.align-center { text-align: center; } p.align-right, h1.align-right, h2.align-right, h3.align-right, h4.align-right, h5.align-right, h6.align-right, td.align-right { text-align: right; } ) ## Two frame examples taken from the example CSS file of CSS Styled Content extension and applied to p and table block elements. inlineStyle.frames ( p.csc-frame-frame1, table.csc-frame-frame1 { background-color: #EDEBF1; padding: 2px 4px 2px 4px; border: 1px solid #333333; } p.csc-frame-frame2, table.csc-frame-frame2 { background-color: #F5FFAA; padding: 2px 4px 2px 4px; border: 1px solid #333333; } p.csc-frame-frame3, table.csc-frame-frame3 { background-color: #F5FFAA; padding: 2px 4px 2px 4px; border: 1px solid #333333; } ) ## Bullet styles for unordered lists. inlineStyle.ul ( ul.component-items { color: #186900; list-style-type: circle; } ul.action-items { color: #8A0020; list-style-image: url(img/red_arrow_bullet.gif); } ) ## Numbering styles for ordered lists. inlineStyle.ol ( ol.component-items-ordered { color: #10007B; list-style-type: lower-roman; } ol.action-items-ordered { color: #8A0020; list-style-type: lower-greek; } ) ## Three inline text colors taken from the color scheme of CSS Styled Content extension. inlineStyle.inline-text ( span.important { color: #8A0020; } span.name-of-person { color: #10007B; } span.detail { color: #186900; } ) ## Use stylesheet file rather than the above mainStyleOverride and inlineStyle properties to style the contents (htmlArea RTE only) ignoreMainStyleOverride = 1 ## List all class selectors that are allowed on the way to the database proc.allowedClasses ( external-link, external-link-new-window, internal-link, internal-link-new-window, download, mail, align-left, align-center, align-right, csc-frame-frame1, csc-frame-frame2, csc-frame-frame3, component-items, action-items, component-items-ordered, action-items-ordered, important, name-of-person, detail, zwartwit ) ## classesParagraph, classesTable, classesTD, classesLinks, classesCharacter ## Classic RTE: Specify the list of class selectors that should be presented in the RTE interface: ## htmlArea RTE: Restrict the list of class selectors presented by the RTE to the following: classesParagraph ( align-left, align-center, align-right, csc-frame-frame1, csc-frame-frame2, csc-frame-frame3, zwartwit ) classesTable = csc-frame-frame1, csc-frame-frame2, csc-frame-frame3 classesTD = align-left, align-center, align-right classesLinks = external-link, external-link-new-window, internal-link, internal-link-new-window, download, mail classesCharacter = important, name-of-person, detail ## Configuration of the anchor accessibility feature (htmlArea RTE only) ## These classes should also be in the list of allowedClasses. classesAnchor = external-link, external-link-new-window, internal-link, internal-link-new-window, download, mail classesAnchor.default { page = internal-link url = external-link-new-window file = download mail = mail } ## Configuration specific to the TableOperations feature (htmlArea RTE only) ## Remove the following fieldsets from the table operations dialogs disableAlignmentFieldsetInTableOperations = 1 disableSpacingFieldsetInTableOperations = 1 disableColorFieldsetInTableOperations = 1 disableLayoutFieldsetInTableOperations = 1 disableBordersFieldsetInTableOperations = 1 } ## front end RTE configuration for the general public (htmlArea RTE only) RTE.default.FE < RTE.default RTE.default.FE.showStatusBar = 0 RTE.default.FE.hideButtons = chMode, blockstyle, textstyle, underline, strikethrough, subscript, superscript, lefttoright, righttoleft, left, center, right, justifyfull, table, inserttag, findreplace, removeformat, copy, cut, paste RTE.default.FE.FE > RTE.default.FE.userElements > RTE.default.FE.userLinks > ## tt_content TCEFORM configuration ## Let use all the space available for more comfort. TCEFORM.tt_content.bodytext.RTEfullScreenWidth= 100% RTE.default { ## Enable the image button showButtons := addToList(image) ## Tags allowed outside p & div ## Adding img tag to the default list proc.allowTagsOutside := addToList(img) ## Do not remove img tags proc.entryHTMLparser_db.tags.img > showButtons := addToList(image) showButtons := addToList(TableOperations) showButtons := addToList(cut) showButtons := addToList(copy) showButtons := addToList(paste) } RTE.default.FE.showButtons < RTE.default.showButtons RTE.default.FE.proc.allowTagsOutside < RTE.default.proc.allowTagsOutside RTE.default.FE.proc.entryHTMLparser_db.tags.img > RTE.config.tt_news.bodytext < RTE.default # entfernt die class="bodytext"-Attribute aus den

    -Tags ### #lib.parseFunc_RTE.nonTypoTagStdWrap.encapsLines.addAttributes.P.class > #lib.parseFunc_RTE.externalBlocks.table.stdWrap.HTMLparser.tags.table.fixAtt rib.class.list > Thank's in advance. Jeroen Visser From ben at netcreators.com Wed Sep 12 09:50:07 2007 From: ben at netcreators.com (ben van 't ende [netcreators]) Date: Wed, 12 Sep 2007 09:50:07 +0200 Subject: [TYPO3] captcha.php In-Reply-To: References: Message-ID: Hey, The captcha lib was updated by Bernard to 1.1.0 and now includes all his nifty features. Be sure to check that out!! gRTz ben ben van 't ende [netcreators] wrote: > Patrick Gaumond wrote: >> ben van 't ende [netcreators] wrote: >> >>> I use the captcha library by Kasper with mailforms thru the extensio >>> nd_antispam. The captcha.php script does not allow the font to be >>> enlarged. It >>> is bearably readable. Has anyone adapted the script so you can resize >>> the font >>> and use a ttf font? >> Hey Ben ! >> >> Bernhard Kraft's version should help ! >> >> http://think-open.org/kraftb/index/T3X_captcha-1_0_0-kb.t3x >> >> See you in Karlshruhe ! >> T3CON 2007 = 15 days! >> >> Patrick > > OK cool. I asked Bernard to add it to the Captcha Library as it is a real must. > > For anyone that uses 'nd_antispam' you will have to add these lines to the form > element: > > | errorpage=hidden | http://www.yourdomain.com/invalid-captcha/ > | label | Fill in the code (captcha) below: > | captcha_enabled=hidden | 1 > > and it seems you have to add a ttf font and check the box 'Use TTF' in Captcha. > So don't forget this last part in the configuration of the captcha extension. > > gRTz > > ben -- netcreators :: creation and innovation www.netcreators.com - www.typo3.nl Interesse in werken bij Netcreators? http://www.netcreators.com/bedrijf/vacatures/ From jeroen at roquin.nl Wed Sep 12 10:10:17 2007 From: jeroen at roquin.nl (Jeroen Visser) Date: Wed, 12 Sep 2007 10:10:17 +0200 Subject: [TYPO3] TYPO3 4.1.2. & PHP5.2 Message-ID: Hi all, With TYPO4.2. coming soon I want to preparate my new servers with PHP5.2 Does anyone have experience with TYPO3 4.1.2 running on PHP 5.2? I assume it should work without any problems. I love to here some experiences. Thank's in advance. Regards, Jeroen From headhunterxiii at yahoo.ca Wed Sep 12 10:16:06 2007 From: headhunterxiii at yahoo.ca (Tyler Kraft) Date: Wed, 12 Sep 2007 09:16:06 +0100 Subject: [TYPO3] Problem with class=bodytext in htmlArea RTE In-Reply-To: References: Message-ID: Hi Search either the main english list or the content rendering list for removing the bodytext class, as that's quite a common post. Next you need to read the manual for the RTE and configure it to allow your class, or else as you've found it strips it when saving the content to the DB. Hth Tyler Jeroen Visser wrote: > Hello everyone, > > I have a problem with styles in the RTE. > > > > When I write this in the BE it looks as follow's: > > > >

    Lorem ipsum dolor sit amet.

    > >

    Morbi mattis, dui in gravida commodo, felis libero > interdum metus, et condimentum magna nibh ut sapien. Morbi neque erat, > nonummy a

    > > > > When I save this it does not save the class given to the pragraph but > instead it becomes just a

    . > > > > When I look in the FE source I see: > > > >

    Lorem ipsum dolor sit amet.

    > >

    Morbi mattis, du. > > > > Does anyone has a idea howto fix this? When I say the class should be "a" > then I really want it to be "a" J > > My TS is as follow's: > > > > > > // > > // Project: > > // Version: 1.0.0 > > // Date: > > // Auhor: > > // > > // Done with SweeTS - delicious TypoScript development. > > // http://typo3.area42.de > > // > > > > #RTE.default > > > RTE.default { > > > > contentCSS = fileadmin/styles/rte.css > > useCSS = 0 > > > > # showTagFreeClasses = 1 > > # hideTags = font, font (full) > > # classesParagraph = Hinweis, Gross > > #mainStyleOverride = 1 > > #ignoreMainStyleOverride = 1 > > #classesParagraph = > > #classesCharacter = > > #disablePCexamples = 1 > > proc.entryHTMLparser_db.tags.img > > > proc.allowTagsOutside := addToList(img) > > > > proc.dontConvBRtoParagraph = 1 > > proc.preserveTables = 1 > > proc.typolist = 0 > > } > > > > > > > > #RTE.classes > > > #RTE.default > > > ## Define labels and styles to be applied to class selectors in the > interface of the RTE > > ## The examples included here make partial re-use of color scheme and frame > scheme from CSS Styled Content extension > > RTE.classes { > > align-left { > > name = > LLL:EXT:rtehtmlarea/htmlarea/locallang_tooltips.xml:justifyleft > > value = text-align: left; > > } > > // en meer > > } > > > > ## Anchor classes configuration for use by the anchor > accesibility feature (htmlArea RTE only) > > RTE.classesAnchor { > > externalLink { > > class = external-link > > type = url > > titleText = > LLL:EXT:rtehtmlarea/htmlarea/plugins/TYPO3Browsers/locallang.xml:external_li > nk_titleText > > } > > // en meer > > } > > > > ## Default RTE configuration > > RTE.default { > > showTagFreeClasses = 1 > > disablePCexamples = 1 > > ## Markup options (htmlArea RTE only) > > enableWordClean = 1 > > removeTrailingBR = 1 > > removeComments = 1 > > removeTags = center, font, o:p, sdfield, strike,u > > removeTagsAndContents = style,script > > > > ## Toolbar options > > ## The TCA configuration may add buttons to the > toolbar > > ## The following buttons are specific to Classic > RTE: class > > ## The following buttons are specific to htmlArea > RTE: blockstylelabel, blockstyle, textstylelabel, textstyle, > > ## insertcharacter, findreplace, > removeformat, toggleborders, tableproperties, > > ## rowproperties, rowinsertabove, > rowinsertunder, rowdelete, rowsplit, > > ## columninsertbefore, > columninsertafter, columndelete, columnsplit, > > ## cellproperties, > cellinsertbefore, cellinsertafter, celldelete, cellsplit, cellmerge > > showButtons ( > > class, blockstylelabel, blockstyle, textstylelabel, > textstyle, > > formatblock, bold, italic, subscript, superscript, > > textindicator, > > insertcharacter, link, table, findreplace, chMode, > removeformat, undo, redo, about, > > toggleborders, tableproperties, > > rowproperties, rowinsertabove, rowinsertunder, > rowdelete, rowsplit, > > columninsertbefore, columninsertafter, columndelete, > columnsplit, > > cellproperties, cellinsertbefore, cellinsertafter, > celldelete, cellsplit, cellmerge > > ) > > > > ## More toolbar options (htmlArea RTE only) > > keepButtonGroupTogether = 1 > > > > ## Enable status bar (htmlArea RTE only) > > showStatusBar = 1 > > > > ## Hide infrequently used paragraph types in the paragraph type > selector (formatblock button) > > hidePStyleItems = pre,address > > > > ## Add default example styles > > ## The example styles included here make partial re-use of color > scheme and frame scheme from CSS Styled Content extension > > ## Left, center and right alignment of text in paragraphs and > cells. > > inlineStyle.text-alignment ( > > p.align-left, h1.align-left, h2.align-left, > h3.align-left, h4.align-left, h5.align-left, h6.align-left, td.align-left { > text-align: left; } > > p.align-center, h1.align-center, h2.align-center, > h3.align-center, h4.align-center, h5.align-center, h6.align-center, > td.align-center { text-align: center; } > > p.align-right, h1.align-right, h2.align-right, > h3.align-right, h4.align-right, h5.align-right, h6.align-right, > td.align-right { text-align: right; } > > ) > > ## Two frame examples taken from the example CSS file of CSS > Styled Content extension and applied to p and table block elements. > > inlineStyle.frames ( > > p.csc-frame-frame1, table.csc-frame-frame1 { > background-color: #EDEBF1; padding: 2px 4px 2px 4px; border: 1px solid > #333333; } > > p.csc-frame-frame2, table.csc-frame-frame2 { > background-color: #F5FFAA; padding: 2px 4px 2px 4px; border: 1px solid > #333333; } > > p.csc-frame-frame3, table.csc-frame-frame3 { > background-color: #F5FFAA; padding: 2px 4px 2px 4px; border: 1px solid > #333333; } > > ) > > ## Bullet styles for unordered lists. > > inlineStyle.ul ( > > ul.component-items { color: #186900; > list-style-type: circle; } > > ul.action-items { color: #8A0020; list-style-image: > url(img/red_arrow_bullet.gif); } > > ) > > ## Numbering styles for ordered lists. > > inlineStyle.ol ( > > ol.component-items-ordered { color: #10007B; > list-style-type: lower-roman; } > > ol.action-items-ordered { color: #8A0020; > list-style-type: lower-greek; } > > ) > > ## Three inline text colors taken from the color scheme of CSS > Styled Content extension. > > inlineStyle.inline-text ( > > span.important { color: #8A0020; } > > span.name-of-person { color: #10007B; } > > span.detail { color: #186900; } > > ) > > > > ## Use stylesheet file rather than the above mainStyleOverride > and inlineStyle properties to style the contents (htmlArea RTE only) > > ignoreMainStyleOverride = 1 > > > > ## List all class selectors that are allowed on the way to the > database > > proc.allowedClasses ( > > external-link, external-link-new-window, > internal-link, internal-link-new-window, download, mail, > > align-left, align-center, align-right, > > csc-frame-frame1, csc-frame-frame2, > csc-frame-frame3, > > component-items, action-items, > > component-items-ordered, action-items-ordered, > > important, name-of-person, detail, zwartwit > > ) > > > > ## classesParagraph, classesTable, classesTD, classesLinks, > classesCharacter > > ## Classic RTE: Specify the list of class selectors that should > be presented in the RTE interface: > > ## htmlArea RTE: Restrict the list of class selectors presented > by the RTE to the following: > > classesParagraph ( > > align-left, align-center, align-right, > > csc-frame-frame1, csc-frame-frame2, > csc-frame-frame3, zwartwit > > ) > > classesTable = csc-frame-frame1, csc-frame-frame2, > csc-frame-frame3 > > classesTD = align-left, align-center, align-right > > classesLinks = external-link, external-link-new-window, > internal-link, internal-link-new-window, download, mail > > classesCharacter = important, name-of-person, detail > > > > ## Configuration of the anchor accessibility feature (htmlArea > RTE only) > > ## These classes should also be in the list of allowedClasses. > > classesAnchor = external-link, external-link-new-window, > internal-link, internal-link-new-window, download, mail > > classesAnchor.default { > > page = internal-link > > url = external-link-new-window > > file = download > > mail = mail > > } > > > > ## Configuration specific to the TableOperations feature > (htmlArea RTE only) > > ## Remove the following fieldsets from the table operations > dialogs > > disableAlignmentFieldsetInTableOperations = 1 > > disableSpacingFieldsetInTableOperations = 1 > > disableColorFieldsetInTableOperations = 1 > > disableLayoutFieldsetInTableOperations = 1 > > disableBordersFieldsetInTableOperations = 1 > > } > > > > ## front end RTE configuration for the general public (htmlArea RTE only) > > RTE.default.FE < RTE.default > > RTE.default.FE.showStatusBar = 0 > > RTE.default.FE.hideButtons = chMode, blockstyle, textstyle, underline, > strikethrough, subscript, superscript, lefttoright, righttoleft, left, > center, right, justifyfull, table, inserttag, findreplace, removeformat, > copy, cut, paste > > RTE.default.FE.FE > > > RTE.default.FE.userElements > > > RTE.default.FE.userLinks > > > > > ## tt_content TCEFORM configuration > > ## Let use all the space available for more comfort. > > TCEFORM.tt_content.bodytext.RTEfullScreenWidth= 100% > > > > > > RTE.default { > > > > ## Enable the image button > > showButtons := addToList(image) > > > > ## Tags allowed outside p & div > > ## Adding img tag to the default list > > proc.allowTagsOutside := addToList(img) > > > > ## Do not remove img tags > > proc.entryHTMLparser_db.tags.img > > > > > showButtons := addToList(image) > > showButtons := addToList(TableOperations) > > showButtons := addToList(cut) > > showButtons := addToList(copy) > > showButtons := addToList(paste) > > } > > > > RTE.default.FE.showButtons < RTE.default.showButtons > > RTE.default.FE.proc.allowTagsOutside < RTE.default.proc.allowTagsOutside > > RTE.default.FE.proc.entryHTMLparser_db.tags.img > > > > > > > RTE.config.tt_news.bodytext < RTE.default > > > > # entfernt die class="bodytext"-Attribute aus den

    -Tags ### > > #lib.parseFunc_RTE.nonTypoTagStdWrap.encapsLines.addAttributes.P.class > > > #lib.parseFunc_RTE.externalBlocks.table.stdWrap.HTMLparser.tags.table.fixAtt > rib.class.list > > > > > > > Thank's in advance. > > > > Jeroen Visser > > > > > From dmitry at typo3.org Wed Sep 12 10:28:50 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Wed, 12 Sep 2007 11:28:50 +0300 Subject: [TYPO3] TYPO3 4.1.2. & PHP5.2 In-Reply-To: References: Message-ID: Jeroen Visser wrote: > With TYPO4.2. coming soon I want to preparate my new servers with PHP5.2 > > Does anyone have experience with TYPO3 4.1.2 running on PHP 5.2? I assume it > should work without any problems. I love to here some experiences. Works ok in my test environment. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From gmatyi at freemail.hu Wed Sep 12 10:31:50 2007 From: gmatyi at freemail.hu (=?ISO-8859-2?Q?Matyi_G=E1bor?=) Date: Wed, 12 Sep 2007 10:31:50 +0200 (CEST) Subject: [TYPO3] quote html code in rtehtmlarea Message-ID: Hi All! I have a site where the contents are miscellanous tutorials, so the contents contain program code, HTML code, CSS code etc. Unfortunately I didn't found quote function in the rtehtmlarea text editor. As I tried to quote the HTML code by hand so, that I paste it in html view an I put a "pre" and "/pre" html tags to the begin and the end of the quoted html code, the some tags in the html code hadn't appeared. f.e. (div-s). As iItried to change the greater and less to it's htmlentity the htmlarea changed the htmlentity return to greater and less. Does anybody how could I to code HTML code with rtehtmlarea? Thanks in advance Gabor Matyi Utaz?sok Erotik?ban - V?mos Mikl?s nemsok?ra megjelen? reg?ny?t el?re megrendelheti n?lunk. http://ad.adverticum.net/b/cl,1,6022,201702,253867/click.prm From nightowl at galnet.dk Wed Sep 12 10:32:48 2007 From: nightowl at galnet.dk (Brian Bendtsen) Date: Wed, 12 Sep 2007 10:32:48 +0200 Subject: [TYPO3] Menu doesnt work with multiple domain records In-Reply-To: References: Message-ID: Katja Lampela skrev: > Hi Brian, > I don't know much of the previous discussion but here's my working ts > setup for multiple domain (and realURL): > > > config.simulateStaticDocuments = 0 > config.baseURL = http://www.mydomain.fi/ > config.tx_realurl_enable = 1 > config.linkVars = > config.prefixLocalAnchors = all > config.domainTarget = _top > > - Katja > Hi I cant use baseURL because I have an extension installed which depends on the active domain record. If I set baseURL to www.domain.com but enter the site with www.domain1.com, the site changes back to www.domain.com when I for example click a sub menu item. And on several sub menu item pages I check for current domain record and this way it will always return www.domain.com. /Brian Bendtsen From jkokino at gmail.com Wed Sep 12 11:13:01 2007 From: jkokino at gmail.com (Darko) Date: Wed, 12 Sep 2007 11:13:01 +0200 Subject: [TYPO3] rlmp_flashdetection 1.2.4 - flash file hight limited? Message-ID: Hey folks I am using AST Flash (with Adobe Detection v1.5) rlmp_flashdetection 1.2.4extension. EXT key: rlmp_flashdetection. I am trying to insert a new flash record - and specify my flash file resolution, I cant set more than 1000px. It defaults back to 1000px when I save the record. Any hints? I emailed the author though Thanks Darko From hagelstein at shr.cc Wed Sep 12 11:22:32 2007 From: hagelstein at shr.cc (Nikolas Hagelstein) Date: Wed, 12 Sep 2007 11:22:32 +0200 Subject: [TYPO3] TYPO3 4.1.2. & PHP5.2 References: Message-ID: Dmitry Dulepov wrote: > Works ok in my test environment. Just FYI: It even seems to work on 5.1.6 (at least on my test BSD box over here). Bye, Nikolas From k_hinum at hotmail.com Wed Sep 12 11:22:26 2007 From: k_hinum at hotmail.com (Klaus Hinum) Date: Wed, 12 Sep 2007 11:22:26 +0200 Subject: [TYPO3] default => NULL In-Reply-To: References: Message-ID: Andr? Esch schrieb: > Hello, > > I do have a Problem creating a Extension. I need to have a > date-field which will be filled with NULL if it is empty or the > checkbox is unchecked. > > Something like that: > in the tca-file of the extension: > > "feInterface" => $TCA["tx_Vorschau_filme"]["feInterface"], > "columns" => Array ( > "startdatum" => Array ( > "exclude" => 1, > "label" => > "LLL:EXT:Vorschau/locallang_db.php:tx_Vorschau_filme.startdatum", > "config" => Array ( > "type" => "input", > "size" => "8", > "max" => "20", > "eval" => "date", > "checkbox" => NULL, > "default" => NUL, > ) > ), > > This doesn't work. Is there another way? > > Kind reguards from Germany > Andr? Hi Group, i got the same problem with an INT field, i can't set it to NULL, it just gets 0 if deleted or left empty. Isn't there any way to set a field "NULL"? regards Klaus From t33kRE.MO.VE. at RE.MO.VE.prolabium.com Wed Sep 12 11:24:03 2007 From: t33kRE.MO.VE. at RE.MO.VE.prolabium.com (Krystian Szymukowicz) Date: Wed, 12 Sep 2007 11:24:03 +0200 Subject: [TYPO3] rlmp_flashdetection 1.2.4 - flash file hight limited? In-Reply-To: References: Message-ID: Darko wrote: > Hey folks > > I am using AST Flash (with Adobe Detection v1.5) rlmp_flashdetection > 1.2.4extension. EXT key: rlmp_flashdetection. > I am trying to insert a new flash record - and specify my flash file > resolution, I cant set more than 1000px. It defaults back to 1000px when I > save the record. > Any hints? > hello hint: Check file "tca.php" in the folder of the extension. Limits are inside that file. -- grtz Krystian Szymukowicz From tomi at tri-ex.si Wed Sep 12 11:44:24 2007 From: tomi at tri-ex.si (Tomi Hrovatin) Date: Wed, 12 Sep 2007 11:44:24 +0200 Subject: [TYPO3] Cooluri, multidomain, multilanguage,single tree setup Message-ID: Hi, My configuration: T3 4.1.2 php 5.2.1 mysql 5.0.38 cooluri 1.0.4 jb_status_code 1.0.0. My tree looks like this Root (globe icon) - Placeholder (contains only shared ts template, rootlevel unchecked) -- Website root (contains ts template, rootlevel checked, domains: www.eksotika.si;slovene, default language, www.rare-exotic-plants.com; english) ---Subpages -- Non existing subsites In website root I defined 4 domains, two of them (eksotika.si and rare-exotic-plants.com) are 301 redirects to their www records. In the cooluri I checked multidomain option. Different languages are designated by domain and not by L variable. I have two problems: 1. Cooluri rewrites urls just for the first domain that is used in FE ie: if I delete all urls in cooluri and enter www.eksotika.si all urls point to slovene domain and translation (even on www.rare-exotic-plants.com). I searched around but could not find the answer to this. 2. The second question is about duplicates. This site is a shop with tt_products. I added a simple XML rule for tt_products. I have some products with the same name in the same category (subpage). So the URLs are the same and only the first product is shown in FE. I didn't dig for this answer yet and if it is in manuals or tutorial just ignore it. Bellow is the Cooluri XML: 1 1 1 0 365 0 HTTP/1.0 404 Not Found Page not found! ]]> tx_realurl_pathsegment,alias,subtitle,title id 0 tx_cooluri->getPageTitle 1 tx_ttnews[tt_news] SELECT title FROM tt_news WHERE uid=$1 ^[0-9]+$ 1 tx_ttproducts_pi1[product] SELECT title FROM tt_products WHERE uid=$1 ^[0-9]+$ 1 tx_eeblog[showUid] SELECT subject FROM tx_eeblog_maintable WHERE uid=$1 ^[0-9]+$ 1 tx_ttnews[backPid] cHash tx_eeblog[pointer] tx_eeblog[backPID] tx_ttproducts_pi1[backPID] no_cache L 0 1 L From rob.wooders at adamsmithinternational.com Wed Sep 12 11:48:47 2007 From: rob.wooders at adamsmithinternational.com (Rob Wooders) Date: Wed, 12 Sep 2007 10:48:47 +0100 Subject: [TYPO3] Installation Problem (Step 1) Message-ID: I have been trying to install Typo3 for about a week now and can not get past setting up the databse connection in the Install Tool. Enviroment: Windows Server 2003 IIS 6 mySQL Server version: 5.0.45-community-nt; Protocol version 10; Connnection: localhost via TCP/IP; TCP port 3306 PHP 4.3.10 The problem: When I try and enter the Username, Password and Host using the install tool it returns an error saying that the database is not available. I have checked mySQL and all is working/running, I have also run the test for PHP (PHPINFO) and this returns all the info correctly. I have set the permissions on the whole of the directory for the moment so that IIS_WPG, IUSR_ASIIT01 and USERS all have modify permissions. Connections to mySQL have been tested using the root and typo3 accounts and these work ok; RESULT: mysqlshow -h localhost -u typo3 -p*!*!*!*! typo3 Database: typo3 +--------+ | Tables | +--------+ +--------+ As you can see above I have created an empty database called 'typo3' in mysql and have given the 'typo3' account full permissions to this. The only time that I have been able to get past this point was when I setup the ANONYMOUS account in mySQL. When this was active I could get to STEP 2 and select a database. I could not get any further as the ANONYMOUS account did not have privilages to the database, but I wanted to use this as a test to make sure that mySQL and PHP were all working correctly and that the install tool could actually communicate with mySQL etc. I'm not a developer, but it seems as if the install tool is not passing the username and password across when it tries to connect to mySQL. Any advice or pointers as to where I have gone wrong would be very much appreciated. Thanks Rob. This message (including any attachments) is confidential and may be legally privileged. If you are not the intended recipient, any disclosure, copying, distribution or any action taken or omitted to be taken in reliance on it, is prohibited and may be unlawful. Please delete all copies immediately and notify the Adam Smith International Helpdesk at helpdesk at adamsmithinternational.com Adam Smith International Limited A company registered in England and Wales; Registration Number: 2732176 Registered address: 3 Albert Embankment, London SE1 7SP, United Kingdom This message has been scanned for viruses by BlackSpider From lasse at clioonline.dk Wed Sep 12 11:50:08 2007 From: lasse at clioonline.dk (Lasse Guldsborg) Date: Wed, 12 Sep 2007 11:50:08 +0200 Subject: [TYPO3] Email encoding Message-ID: Hi list I have made an extension in which I (among other things) am sending a mail to the FE user. The mail code is as below: $subject = "My header"; $headers = "From: Lasse Guldsborg "; $message = "My email message"; $reciever = "reciever at email.dk"; t3lib_div::plainMailEncoded($reciever,$subject,$message,$headers); It works, but the email is sending in plain text. I would like to send it as HTML, or at least be able to use tags like "bold", "italic" and so on. I have tried reading about mail encoding, but I'm not getting anywhere. Can anyone tell me what I should do? Best regards, Lasse Guldsborg From proescho-typo3 at informatik.uni-muenchen.de Wed Sep 12 12:33:09 2007 From: proescho-typo3 at informatik.uni-muenchen.de (Timo Proescholdt) Date: Wed, 12 Sep 2007 12:33:09 +0200 Subject: [TYPO3] list children in menu In-Reply-To: References: Message-ID: Timo Proescholdt a ?crit : > Hi, > > > I have a template with a menu in which the children of the current > page should be listed. The thing is that this can occur at any hight > of the tree.. so I cannot hardcode the entryLevel. > > So tried to set entryLevel of my menu object to treeLevel, > but that does not yield the expected results. can somebody explain me why the code below works with the conditional, but the conditional replaced by temp.subnavigation.entryLevel = treeLevel not? I'm not getting it.. thanks! Timo temp.subnavigation = HMENU #temp.subnavigation_autoparser_tswrap.entryLevel = treeLevel [treeLevel = 2 ] temp.subnavigation.entryLevel = 2 [treeLevel = 3 ] temp.subnavigation.entryLevel = 3 [treeLevel = 4 ] temp.subnavigation.entryLevel = 4 [END] temp.subnavigation.1 = TMENU temp.subnavigation.1 { expAll = 1 NO.allWrap = |
    } From tomi at tri-ex.si Wed Sep 12 12:44:15 2007 From: tomi at tri-ex.si (Tomi Hrovatin) Date: Wed, 12 Sep 2007 12:44:15 +0200 Subject: [TYPO3] TYPO3 4.1.2. & PHP5.2 In-Reply-To: References: Message-ID: It works perfectly on my production server. I had some problems with extensions. One of them was DirectMail. The patch is already in trunk. T. Jeroen Visser wrote: > Hi all, > > > > With TYPO4.2. coming soon I want to preparate my new servers with PHP5.2 > > Does anyone have experience with TYPO3 4.1.2 running on PHP 5.2? I assume it > should work without any problems. I love to here some experiences. > > > > Thank's in advance. > > > > Regards, > > Jeroen > > > From catepeter at optusnet.com.au Wed Sep 12 13:13:51 2007 From: catepeter at optusnet.com.au (Cate & Peter) Date: Wed, 12 Sep 2007 21:13:51 +1000 Subject: [TYPO3] list children in menu In-Reply-To: <6382436.1189559033764.JavaMail.root@m48> Message-ID: Hi Timo [Timo wrote:] > > sorry for writing so many mails lately.. I have been quite busy > learning. And although I learned quite a lot in the last weeks > there is something that drives me crazy.. I have been trying > to find that out for ours now.. learned a lot of other things, but > still have no clue.. I hope somebody can help me! > [Cate wrote:] :) Don't worry - we all remember that feeling :) Timo wrote: > I have a template with a menu in which the children of the current > page should be listed. The thing is that this can occur at any hight > of the tree.. so I cannot hardcode the entryLevel. > > So tried to set entryLevel of my menu object to treeLevel, > but that does not yield the expected results. > [Cate wrote:] :) yes I remember this struggle too - I solved the problem using a different approach... # Sub Navigation lib.subnav = HMENU lib.subnav.special = directory lib.subnav.1 = TMENU lib.subnav.1 { NO.allWrap =

  • |
  • ACT = 1 ACT.allWrap =
  • |
  • } By not specifying a lib.subnav.special.value = , the directory code causes a menu of the child pages to be generated, wherever you are in the tree. HTH Cate From kroyal at FPCHouston.org Wed Sep 12 14:41:02 2007 From: kroyal at FPCHouston.org (Royal, Kristy) Date: Wed, 12 Sep 2007 07:41:02 -0500 Subject: [TYPO3] list children in menu In-Reply-To: References: Message-ID: Timo, Try adding: expAll = 1 Example: NO { expAll = 1 wrapItemAndSub =
  • |
  • stdWrap.case = lower } Kristy Royal From andrew at avagraphique.com Wed Sep 12 14:40:26 2007 From: andrew at avagraphique.com (Andrew Davis) Date: Wed, 12 Sep 2007 08:40:26 -0400 Subject: [TYPO3] how can I access a variable set in insert plugin cobject? In-Reply-To: References: Message-ID: Hi all, after searching thru $TSFE (holy smokes, Its huge) i found how i can reference a variable set via template setup, like this $pidList = $TSFE->tmpl->setup['plugin.']['tx_rlmpsecuredownloads_pi1.']['pidList']; but that requires placing a template on the page with that information set. I still have not found how to reference the information as set in the INSERT PLUGIN cobject form on the page. does this not automatically populate an object/array someplace? How can I reference it? any help much appreciated, thanks! Andrew Andrew Davis wrote: > hi i have what im suer is a dumb question, but having problem finding > answer > > I have a variable that indicates pid (startingpoint) for a plugin on a > page, set thru the typo3 backend (insert plugin on a page, then set > config there). How can i access that value within the plugin (php), to > use with a query ? > > thanks for your help > andrew From fsuter at cobweb.ch Wed Sep 12 15:15:16 2007 From: fsuter at cobweb.ch (Francois Suter) Date: Wed, 12 Sep 2007 15:15:16 +0200 Subject: [TYPO3] how can I access a variable set in insert plugin cobject? In-Reply-To: References: Message-ID: Hi, > does this not automatically populate an object/array someplace? How > can > I reference it? Values defined in the BE are available in $this->cObj->data. Is that what you are looking for? HTH Fran?ois Suter Directeur technique ------------------------------------------------------------------------ ------------------------------------------------------------- Cobweb Development S?rl www.cobweb.ch ------------------------------------------------------------------------ ------------------------------------------------------------- From patrick at typo3quebec.org Wed Sep 12 15:57:31 2007 From: patrick at typo3quebec.org (Patrick Gaumond) Date: Wed, 12 Sep 2007 09:57:31 -0400 Subject: [TYPO3] "Template -> Include static -> Items" is empty In-Reply-To: References: Message-ID: Tomasz Chmielewski wrote: > I just wanted to create a new TYPO3 website. > > I downloaded TYPO3 4.1.2, unpacked it, configured database, logged in as > admin, wanted to create a new template, but "Items" in "Template -> > Include static" is just empty - no "cSet stylesheet", no "content > (default)" there, it's just empty with no items to choose. Try to go to Tools -> Install -> DB Analyzer Import "Dump static data" Should fix your problem. You can also do a Compare "Update required tables" while there. Patrick From mortenkjems at gmail.com Wed Sep 12 16:51:32 2007 From: mortenkjems at gmail.com (Morten Kjems) Date: Wed, 12 Sep 2007 16:51:32 +0200 Subject: [TYPO3] Tmailform: Labels do not show? Message-ID: Hi. I am setting up Tmailform for the first time. I have installed the extension and created a template from the tmail_example.tmpl and placed it in the fileadmin folder. For testing purposes I have also copied the "locallang_tmpl_example.xml" to the fileadmin folder. Here is the problem: The labels don't show up but otherwise the form works perfectly. Mails are sendt and recieved. I have defined the errormessages under the "field settings" tab in "Required values" like this: SUBJECT_VAL; notEmpty; text: Please fill in subject field NAME_VAL; notEmpty; text: Please fill in your name EMAIL_VAL; notEmpty; text: Please fill in your email MESSAGE_VAL; notEmpty; text: Please fill in message field If I submit the form without typing anything all the error labels show up just fine. If I check "Multiple language support" and enter the path to "locallang_tmpl_example.xml" the labels from the file are shown correct. But now if I submit the form witout typing anything, both the label and the error label shows up. Can anyone figure out what I am dooing wrong and how I can get the extension to work correct? All suggestions are most welcome. Thanks /Morten From info at cybercraft.de Wed Sep 12 16:58:59 2007 From: info at cybercraft.de (JoH) Date: Wed, 12 Sep 2007 16:58:59 +0200 Subject: [TYPO3] list children in menu References: Message-ID: > I have a template with a menu in which the children of the current > page should be listed. The thing is that this can occur at any hight > of the tree.. so I cannot hardcode the entryLevel. Of course you can, since there are relative and absolute entryLevels possible. > So tried to set entryLevel of my menu object to treeLevel, > but that does not yield the expected results. Of course not, since this is just a parameter used in conditions. > Please find my codesnippet (which I took from the typo3 enterprise > book listings) below! > > many thanks! > Timo Proescholdt > > temp.subnavigation = HMENU > temp.subnavigation.entryLevel = 1 entryLevel = -1 should be your friend. HTH Joey From hamel at urbansecurity.org Wed Sep 12 17:02:21 2007 From: hamel at urbansecurity.org (Fred) Date: Wed, 12 Sep 2007 17:02:21 +0200 Subject: [TYPO3] Making a menu with pretected pages. In-Reply-To: References: Message-ID: Thank you Katja, I'll keep this (/I have to try this extension anyway/) but I'd find a solution with native typo3 for many reasons, the first is I'd like to understand it's use before adding anything. I managed to insert an extra-menu, for exemple but I can't find how to make a TS loginform. Katja Lampela a ?crit : > Hi Fred, > Try newloginbox extension. You can add a marker, for example > ###login### to your html template and check the template setup code > from the ext manual. > HTH - Katja > > > Fred kirjoitti: >> So I tried but I failed, thank you anyway. >> I'm trying to do this : I want to delete the page Section03_login and >> to let Section03 properties to public access. >> On the pages Article01... I set the properties of the content >> elements to "members". >> My problem is : I have a lot of pages like and my users want the most >> simple solution, so I'm trying to make a loginbox in the template, >> with "hide at login" property, but I can't manage to find how. >> >> Rudy Gnodde a ?crit : >>> Hello Fred, >>> >>> Fred wrote: >>>> I have a website on typo3 (v4.1 on a windows server with iis) on >>>> which i have a pretected area like this : >>>> PageRubrique >>>> |__ Section01 >>>> | |__ Article01 >>>> | |__ Article02 >>>> |__ Section02 >>>> |__ Section03_login >>>> |__ Section03 >>>> |__ Article01 >>>> |__ Article02 >>>> From monica.axelrad at pse.unige.ch Wed Sep 12 17:18:49 2007 From: monica.axelrad at pse.unige.ch (axelrad) Date: Wed, 12 Sep 2007 10:18:49 CDT Subject: [TYPO3] rtehtmlarea conflicts with vjchat Message-ID: Hello, I recently installed vjchat and noticed that it stops the rte in my calendar and news from working. I have FE editing enabled for both the calendar and the news, but when the vjchat extension is loaded the rte hangs on "editor loading please wait". I'm using rtehtmlarea 1.4.4 vjchat 0.2.7 cal 0.15.4 news_feedit 0.1.4 if i uninstall the chat the other editors work again, but I was kinda hoping everything could work together...any ideas? thanks, monica From simvirus at gmail.com Wed Sep 12 17:25:37 2007 From: simvirus at gmail.com (Sim) Date: Wed, 12 Sep 2007 17:25:37 +0200 Subject: [TYPO3] Install tool loops with PHP 5.2.4 and Apache 2.0.59 Message-ID: Hi Team Core! After recently server update (Trustix 2.2 as Distro), it is impossible to install typo3, the install tool seems to be locked in an infinite loop. I have increased php error log level and observe logfiles without any bad output. Some time, after some minutes, Typo3 Install show: ------------------- Database Error No database selected Else, if I delete ENABLE_INSTALL_TOOL file, it show the default Install Tool lock: ------------------- The Install Tool is locked. Fix: Create a file typo3conf/ENABLE_INSTALL_TOOL This file may simply be empty. For security reasons, it is highly recommended to rename or delete the file after the operation is finished. Also another old installation now have problem in : http://site/typo3/install/ [^] After login, only this menu working 3: Update Wizard 5: All Configuration 8: phpinfo() 9: Edit files in typo3conf/ 10: About The other create infinite loop as first installation 1: Basic Configuration 2: Database Analyser 4: Image Processing Thanks Sim From otto at webspinnerij.nl Wed Sep 12 18:11:05 2007 From: otto at webspinnerij.nl (otto at webspinnerij.nl) Date: Wed, 12 Sep 2007 18:11:05 +0200 Subject: [TYPO3] HTMLArea RTE 1.5.3 with safari 3 public beta Message-ID: Since 2 weeks I use an Apple computer. In typo3 backend the THTMLArea does not work. I use version 1.5.3 and safari 3 public beta. I checked the box enable RTE in safari 9 but this does not help. Any suggestions? Thanks, Otto From info at bednarik.org Wed Sep 12 19:27:30 2007 From: info at bednarik.org (Jan Bednarik) Date: Wed, 12 Sep 2007 19:27:30 +0200 Subject: [TYPO3] Cooluri, multidomain, multilanguage,single tree setup In-Reply-To: References: Message-ID: Hi, > 1. Cooluri rewrites urls just for the first domain that is used in FE > ie: if I delete all urls in cooluri and enter www.eksotika.si all urls > point to slovene domain and translation (even on > www.rare-exotic-plants.com). I searched around but could not find the > answer to this. Well... I'm afraid that CoolURI isn't suitable for this. It doesn't have such option, that you differ language based on a domain. When it looks up a path it doesn't know that one domain belongs to one language and the other to the other language. Multilanguage works only if you have domains on different pages. I could make some update to fix this issue, but for now I can't think of any simple solution. I'll try to find some time and do something about it. > 2. The second question is about duplicates. This site is a shop with > tt_products. I added a simple XML rule for tt_products. I have some > products with the same name in the same category (subpage). So the URLs > are the same and only the first product is shown in FE. I didn't dig for > this answer yet and if it is in manuals or tutorial just ignore it. Isn't this a bit stupid? There's no solution. You need to rename your products. I'd be better for everyone ;) -- Jan Bednarik www.bednarik.org - web about Typo3 in czech From typo3 at rvt.dds.nl Wed Sep 12 19:49:32 2007 From: typo3 at rvt.dds.nl (ries van Twisk) Date: Wed, 12 Sep 2007 12:49:32 -0500 Subject: [TYPO3] Cooluri, multidomain, multilanguage,single tree setup In-Reply-To: References: Message-ID: On Sep 12, 2007, at 12:27 PM, Jan Bednarik wrote: > Hi, > >> 1. Cooluri rewrites urls just for the first domain that is used in FE >> ie: if I delete all urls in cooluri and enter www.eksotika.si all >> urls >> point to slovene domain and translation (even on >> www.rare-exotic-plants.com). I searched around but could not find the >> answer to this. > > Well... I'm afraid that CoolURI isn't suitable for this. It doesn't > have > such option, that you differ language based on a domain. When it looks > up a path it doesn't know that one domain belongs to one language and > the other to the other language. > > Multilanguage works only if you have domains on different pages. > > I could make some update to fix this issue, but for now I can't > think of > any simple solution. I'll try to find some time and do something > about it. > >> 2. The second question is about duplicates. This site is a shop with >> tt_products. I added a simple XML rule for tt_products. I have some >> products with the same name in the same category (subpage). So the >> URLs >> are the same and only the first product is shown in FE. I didn't >> dig for >> this answer yet and if it is in manuals or tutorial just ignore it. > > Isn't this a bit stupid? There's no solution. You need to rename your > products. I'd be better for everyone ;) RealURL does solve this by adding a number to the path to make it not unique anymore if a existing path already exists... You might also solve this like this : SELECT title || '_' || uid FROM tt_products WHERE uid=$1 (top of my head) This will add the uid of each product to the title. Kinda ugly... It should be trivial in CoolURI's code to detect Db records and respond properly to it. Ries PS: It's not stupid to have same product names for different products. > > -- > Jan Bednarik > www.bednarik.org - web about Typo3 in czech > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english -- Ries van Twisk Freelance TYPO3 Developer email: ries at vantwisk.nl web: http://www.rvantwisk.nl/ skype: callto://r.vantwisk Phone: + 1 810-476-4193 From bedlamhotel at gmail.com Wed Sep 12 21:24:16 2007 From: bedlamhotel at gmail.com (Christopher Torgalson) Date: Wed, 12 Sep 2007 12:24:16 -0700 Subject: [TYPO3] HTMLArea RTE 1.5.3 with safari 3 public beta In-Reply-To: References: Message-ID: Hi, On 9/12/07, otto at webspinnerij.nl wrote: > Since 2 weeks I use an Apple computer. > > In typo3 backend the THTMLArea does not work. > > I use version 1.5.3 and safari 3 public beta. > > > > I checked the box enable RTE in safari 9 but this does not help. > > > > Any suggestions? Yes--use a browser with more robust javascript support. Safari can't currently run the RTE as far as I know. By the way: there is no option to enble Safari in the EM--it's "Enable the RTE in Opera 9". -- Christopher Torgalson http://www.typo3apprentice.com/ From peter at umloud.dk Wed Sep 12 22:22:47 2007 From: peter at umloud.dk (Peter Klein) Date: Wed, 12 Sep 2007 22:22:47 +0200 Subject: [TYPO3] Email encoding References: Message-ID: Hi Lasse. Look at "t3lib_htmlmail" ("t3lib/class.t3lib_htmlmail.php"). It contains all the functions you need for sending out HTML encoded emails. -- Peter Klein / Umloud Untd "Lasse Guldsborg" wrote in message news:mailman.1.1189590609.25742.typo3-english at lists.netfielders.de... > Hi list > > I have made an extension in which I (among other things) am sending a mail > to the FE user. > The mail code is as below: > > $subject = "My header"; > $headers = "From: Lasse Guldsborg "; > $message = "My email message"; > $reciever = "reciever at email.dk"; > t3lib_div::plainMailEncoded($reciever,$subject,$message,$headers); > > It works, but the email is sending in plain text. I would like to send it > as HTML, or at least be able to use tags like "bold", "italic" and so on. > I have tried reading about mail encoding, but I'm not getting anywhere. > > Can anyone tell me what I should do? > > Best regards, > Lasse Guldsborg > From tomi at tri-ex.si Wed Sep 12 22:24:08 2007 From: tomi at tri-ex.si (Tomi Hrovatin) Date: Wed, 12 Sep 2007 22:24:08 +0200 Subject: [TYPO3] Cooluri, multidomain, multilanguage,single tree setup In-Reply-To: References: Message-ID: Hi, thanks for quick replies. I have never done setup like this with realUrl so I thought cooluri is even more flexible and easier to setup. Apparently I will have to use realUrl for this site as well. Does anybody know if this is possible with RealUrl? Ries, I was thinking about concatenating title & uid too, but just couldn't think of something so easy and obvious. :) Jan, I think there are many circumstances where titles of the products are the same. In my case exotic plants in different pots, but there are also T-shirts with different sizes, colors, ... I think cooluri should change the name automatically if this occurs. Anyway thank you again and btw it looks great and promising extension. Tomi Hrovatin ries van Twisk wrote: > > On Sep 12, 2007, at 12:27 PM, Jan Bednarik wrote: > >> Hi, >> >>> 1. Cooluri rewrites urls just for the first domain that is used in FE >>> ie: if I delete all urls in cooluri and enter www.eksotika.si all urls >>> point to slovene domain and translation (even on >>> www.rare-exotic-plants.com). I searched around but could not find the >>> answer to this. >> >> Well... I'm afraid that CoolURI isn't suitable for this. It doesn't have >> such option, that you differ language based on a domain. When it looks >> up a path it doesn't know that one domain belongs to one language and >> the other to the other language. >> >> Multilanguage works only if you have domains on different pages. >> >> I could make some update to fix this issue, but for now I can't think of >> any simple solution. I'll try to find some time and do something about >> it. >> >>> 2. The second question is about duplicates. This site is a shop with >>> tt_products. I added a simple XML rule for tt_products. I have some >>> products with the same name in the same category (subpage). So the URLs >>> are the same and only the first product is shown in FE. I didn't dig for >>> this answer yet and if it is in manuals or tutorial just ignore it. >> >> Isn't this a bit stupid? There's no solution. You need to rename your >> products. I'd be better for everyone ;) > > > RealURL does solve this by adding a number > to the path to make it not unique anymore if a existing > path already exists... > > > You might also solve this like this : > > SELECT title || '_' || uid FROM tt_products WHERE uid=$1 (top of my head) > > This will add the uid of each product to the title. Kinda ugly... > > It should be trivial in CoolURI's code > to detect Db records and respond properly to it. > > > Ries > PS: It's not stupid to have same product names for different products. > > >> >> -- >> Jan Bednarik >> www.bednarik.org - web about Typo3 in czech >> _______________________________________________ >> TYPO3-english mailing list >> TYPO3-english at lists.netfielders.de >> http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english > > -- > Ries van Twisk > Freelance TYPO3 Developer > email: ries at vantwisk.nl > web: http://www.rvantwisk.nl/ > skype: callto://r.vantwisk > Phone: + 1 810-476-4193 > > > > > > From andrew at avagraphique.com Wed Sep 12 22:46:32 2007 From: andrew at avagraphique.com (Andrew Davis) Date: Wed, 12 Sep 2007 16:46:32 -0400 Subject: [TYPO3] HTMLArea RTE 1.5.3 with safari 3 public beta In-Reply-To: References: Message-ID: we have problems with safari and rte. we use tinyrte, which uses tinymce, which is supposed to work on safari, but it doesnt always work. you might try camino, which is a more mac friendly version of firefox... seems to work well. hth andrew otto at webspinnerij.nl wrote: > Since 2 weeks I use an Apple computer. > > In typo3 backend the THTMLArea does not work. > > I use version 1.5.3 and safari 3 public beta. > > > > I checked the box enable RTE in safari 9 but this does not help. > > > > Any suggestions? > > > > Thanks, Otto > From nrdimatteo at tiscali.it Wed Sep 12 23:10:33 2007 From: nrdimatteo at tiscali.it (Nicola Raffaele Di Matteo) Date: Wed, 12 Sep 2007 23:10:33 +0200 Subject: [TYPO3] Access control on user level on FE Message-ID: I need to give the right of access at only of the more than 100 customers of the company. I think that to create 100 groups is not the best way... Is it possible to set in some way the right of the access per user and not only per group? Many thanks for your help! Nicola. From info at bednarik.org Wed Sep 12 23:53:17 2007 From: info at bednarik.org (Jan Bednarik) Date: Wed, 12 Sep 2007 23:53:17 +0200 Subject: [TYPO3] Cooluri, multidomain, multilanguage,single tree setup In-Reply-To: References: Message-ID: > Does anybody know if this is possible with RealUrl? There've been a few threads about this in the mail list. But I'm not sure if there was any solution. > Jan, I think there are many circumstances where titles of the products > are the same. In my case exotic plants in different pots, but there are Well, in tt_products you can use product variants for different pots or sizes, or you can add a pot name to the name of the product. You know, if I saw a list of products and all products had the same name, I'd be really confused what to choose. > I think cooluri should change the name automatically if this occurs. Well, I've decided not to. This makes you think of alternate way. You know, one think that makes a url cool is that the url describes what you can find. But having urls like product-1, product-2 doesn't describe much. Product-red, product-blue would say more. And that's the point. -- Jan Bednarik www.bednarik.org - web about Typo3 in czech From typo3 at rvt.dds.nl Thu Sep 13 00:58:02 2007 From: typo3 at rvt.dds.nl (ries van Twisk) Date: Wed, 12 Sep 2007 17:58:02 -0500 Subject: [TYPO3] Cooluri, multidomain, multilanguage,single tree setup In-Reply-To: References: Message-ID: On Sep 12, 2007, at 3:24 PM, Tomi Hrovatin wrote: > Hi, thanks for quick replies. > > I have never done setup like this with realUrl so I thought cooluri is > even more flexible and easier to setup. Apparently I will have to use > realUrl for this site as well. > Does anybody know if this is possible with RealUrl? > > Ries, I was thinking about concatenating title & uid too, but just > couldn't think of something so easy and obvious. :) hey Tomi, after I did hit send I thought of a way to use it all in SQL... You can in your select statement use a subquery and check for a duplicates Then that single SQL will give you a title, or a title with the uid suffix. You do need to have a 5.x version of mysql to do that though... Ries > > Jan, I think there are many circumstances where titles of the products > are the same. In my case exotic plants in different pots, but there > are > also T-shirts with different sizes, colors, ... > I think cooluri should change the name automatically if this occurs. > > Anyway thank you again and btw it looks great and promising extension. > > Tomi Hrovatin > > ries van Twisk wrote: >> >> On Sep 12, 2007, at 12:27 PM, Jan Bednarik wrote: >> >>> Hi, >>> >>>> 1. Cooluri rewrites urls just for the first domain that is used >>>> in FE >>>> ie: if I delete all urls in cooluri and enter www.eksotika.si >>>> all urls >>>> point to slovene domain and translation (even on >>>> www.rare-exotic-plants.com). I searched around but could not >>>> find the >>>> answer to this. >>> >>> Well... I'm afraid that CoolURI isn't suitable for this. It >>> doesn't have >>> such option, that you differ language based on a domain. When it >>> looks >>> up a path it doesn't know that one domain belongs to one language >>> and >>> the other to the other language. >>> >>> Multilanguage works only if you have domains on different pages. >>> >>> I could make some update to fix this issue, but for now I can't >>> think of >>> any simple solution. I'll try to find some time and do something >>> about >>> it. >>> >>>> 2. The second question is about duplicates. This site is a shop >>>> with >>>> tt_products. I added a simple XML rule for tt_products. I have some >>>> products with the same name in the same category (subpage). So >>>> the URLs >>>> are the same and only the first product is shown in FE. I didn't >>>> dig for >>>> this answer yet and if it is in manuals or tutorial just ignore it. >>> >>> Isn't this a bit stupid? There's no solution. You need to rename >>> your >>> products. I'd be better for everyone ;) >> >> >> RealURL does solve this by adding a number >> to the path to make it not unique anymore if a existing >> path already exists... >> >> >> You might also solve this like this : >> >> SELECT title || '_' || uid FROM tt_products WHERE uid=$1 (top of >> my head) >> >> This will add the uid of each product to the title. Kinda ugly... >> >> It should be trivial in CoolURI's code >> to detect Db records and respond properly to it. >> >> >> Ries >> PS: It's not stupid to have same product names for different >> products. >> >> >>> >>> -- >>> Jan Bednarik >>> www.bednarik.org - web about Typo3 in czech >>> _______________________________________________ >>> TYPO3-english mailing list >>> TYPO3-english at lists.netfielders.de >>> http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english >> >> -- >> Ries van Twisk >> Freelance TYPO3 Developer >> email: ries at vantwisk.nl >> web: http://www.rvantwisk.nl/ >> skype: callto://r.vantwisk >> Phone: + 1 810-476-4193 >> >> >> >> >> >> > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english -- Ries van Twisk Freelance TYPO3 Developer email: ries at vantwisk.nl web: http://www.rvantwisk.nl/ skype: callto://r.vantwisk Phone: + 1 810-476-4193 From tomi at tri-ex.si Thu Sep 13 01:56:18 2007 From: tomi at tri-ex.si (Tomi Hrovatin) Date: Thu, 13 Sep 2007 01:56:18 +0200 Subject: [TYPO3] Cooluri, multidomain, multilanguage,single tree setup In-Reply-To: References: Message-ID: Jan Bednarik wrote: >> Does anybody know if this is possible with RealUrl? > > There've been a few threads about this in the mail list. But I'm not > sure if there was any solution. Could not find any solution either. :( > >> Jan, I think there are many circumstances where titles of the products >> are the same. In my case exotic plants in different pots, but there are > > Well, in tt_products you can use product variants for different pots or > sizes, or you can add a pot name to the name of the product. > > You know, if I saw a list of products and all products had the same > name, I'd be really confused what to choose. > >> I think cooluri should change the name automatically if this occurs. > > Well, I've decided not to. This makes you think of alternate way. You > know, one think that makes a url cool is that the url describes what you > can find. But having urls like product-1, product-2 doesn't describe > much. Product-red, product-blue would say more. And that's the point. > You are right about that. I agree completely. But there will always be forum posts, news, blogs, ... that will share the same title. That's just my humble opinion. Thanks for great work and help, Tomi Hrovatin From tomi at tri-ex.si Thu Sep 13 02:02:55 2007 From: tomi at tri-ex.si (Tomi Hrovatin) Date: Thu, 13 Sep 2007 02:02:55 +0200 Subject: [TYPO3] Cooluri, multidomain, multilanguage,single tree setup In-Reply-To: References: Message-ID: Indeed. In case of products I agree with Jan, who said that URL should be descriptive ie in my case Plant_name_potsize, but your idea will be very handy for other cases of duplicate names (forums, news, etc) thanks, Tomi Hrovatin ries van Twisk wrote: > > On Sep 12, 2007, at 3:24 PM, Tomi Hrovatin wrote: > >> Hi, thanks for quick replies. >> >> I have never done setup like this with realUrl so I thought cooluri is >> even more flexible and easier to setup. Apparently I will have to use >> realUrl for this site as well. >> Does anybody know if this is possible with RealUrl? >> >> Ries, I was thinking about concatenating title & uid too, but just >> couldn't think of something so easy and obvious. :) > > hey Tomi, > > after I did hit send I thought of a way to use it all in SQL... > > You can in your select statement use a subquery and check for a duplicates > > Then that single SQL will give you a title, or a title with the uid suffix. > You do need to have a 5.x version of mysql to do that though... > > > Ries > > > >> >> Jan, I think there are many circumstances where titles of the products >> are the same. In my case exotic plants in different pots, but there are >> also T-shirts with different sizes, colors, ... >> I think cooluri should change the name automatically if this occurs. >> >> Anyway thank you again and btw it looks great and promising extension. >> >> Tomi Hrovatin >> >> ries van Twisk wrote: >>> >>> On Sep 12, 2007, at 12:27 PM, Jan Bednarik wrote: >>> >>>> Hi, >>>> >>>>> 1. Cooluri rewrites urls just for the first domain that is used in FE >>>>> ie: if I delete all urls in cooluri and enter www.eksotika.si all urls >>>>> point to slovene domain and translation (even on >>>>> www.rare-exotic-plants.com). I searched around but could not find the >>>>> answer to this. >>>> >>>> Well... I'm afraid that CoolURI isn't suitable for this. It doesn't >>>> have >>>> such option, that you differ language based on a domain. When it looks >>>> up a path it doesn't know that one domain belongs to one language and >>>> the other to the other language. >>>> >>>> Multilanguage works only if you have domains on different pages. >>>> >>>> I could make some update to fix this issue, but for now I can't >>>> think of >>>> any simple solution. I'll try to find some time and do something about >>>> it. >>>> >>>>> 2. The second question is about duplicates. This site is a shop with >>>>> tt_products. I added a simple XML rule for tt_products. I have some >>>>> products with the same name in the same category (subpage). So the >>>>> URLs >>>>> are the same and only the first product is shown in FE. I didn't >>>>> dig for >>>>> this answer yet and if it is in manuals or tutorial just ignore it. >>>> >>>> Isn't this a bit stupid? There's no solution. You need to rename your >>>> products. I'd be better for everyone ;) >>> >>> >>> RealURL does solve this by adding a number >>> to the path to make it not unique anymore if a existing >>> path already exists... >>> >>> >>> You might also solve this like this : >>> >>> SELECT title || '_' || uid FROM tt_products WHERE uid=$1 (top of my >>> head) >>> >>> This will add the uid of each product to the title. Kinda ugly... >>> >>> It should be trivial in CoolURI's code >>> to detect Db records and respond properly to it. >>> >>> >>> Ries >>> PS: It's not stupid to have same product names for different products. >>> >>> >>>> >>>> -- >>>> Jan Bednarik >>>> www.bednarik.org - web about Typo3 in czech >>>> _______________________________________________ >>>> TYPO3-english mailing list >>>> TYPO3-english at lists.netfielders.de >>>> http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english >>> >>> -- >>> Ries van Twisk >>> Freelance TYPO3 Developer >>> email: ries at vantwisk.nl >>> web: http://www.rvantwisk.nl/ >>> skype: callto://r.vantwisk >>> Phone: + 1 810-476-4193 >>> >>> >>> >>> >>> >>> >> _______________________________________________ >> TYPO3-english mailing list >> TYPO3-english at lists.netfielders.de >> http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english > > -- > Ries van Twisk > Freelance TYPO3 Developer > email: ries at vantwisk.nl > web: http://www.rvantwisk.nl/ > skype: callto://r.vantwisk > Phone: + 1 810-476-4193 > > > > > > From thorsten.kahler at dkd.de Wed Sep 12 20:00:50 2007 From: thorsten.kahler at dkd.de (Thorsten Kahler) Date: Wed, 12 Sep 2007 20:00:50 +0200 Subject: [TYPO3] Email encoding In-Reply-To: References: Message-ID: Hi Lasse, Lasse Guldsborg wrote on 12.09.2007 11:50: > t3lib_div::plainMailEncoded($reciever,$subject,$message,$headers); > > It works, but the email is sending in plain text. I would like to send it as > HTML, or at least be able to use tags like "bold", "italic" and so on. I > have tried reading about mail encoding, but I'm not getting anywhere. > > Can anyone tell me what I should do? > you can use the class t3lib_htmlmail for your purpose. Regards Thorsten From erreti at gmail.com Thu Sep 13 08:35:25 2007 From: erreti at gmail.com (Roberto Torresani) Date: Thu, 13 Sep 2007 08:35:25 +0200 Subject: [TYPO3] random teaser Message-ID: Hi all! I need insert in the home page a random teaser of the subpage, that change every time somebody visit the home page. What is the best way/extension to do this? I try with the module Pageteaser, but I have some problem with "random": the first time is random, but after the teaser is the same till I don't clear the cache Thanks Roberto From otto at webspinnerij.nl Thu Sep 13 09:36:56 2007 From: otto at webspinnerij.nl (otto at webspinnerij.nl) Date: Thu, 13 Sep 2007 09:36:56 +0200 Subject: [TYPO3] HTMLArea RTE 1.5.3 with safari 3 public beta In-Reply-To: References: Message-ID: Thanks Andrew and Christofer. I tried firefox. All works well. I will try Camino (never heard of by the way) later on. Greetz Otto -----Oorspronkelijk bericht----- Van: typo3-english-bounces at lists.netfielders.de [mailto:typo3-english-bounces at lists.netfielders.de] Namens Andrew Davis Verzonden: woensdag 12 september 2007 22:47 Aan: typo3-english at lists.netfielders.de Onderwerp: Re: [TYPO3] HTMLArea RTE 1.5.3 with safari 3 public beta we have problems with safari and rte. we use tinyrte, which uses tinymce, which is supposed to work on safari, but it doesnt always work. you might try camino, which is a more mac friendly version of firefox... seems to work well. hth andrew otto at webspinnerij.nl wrote: > Since 2 weeks I use an Apple computer. > > In typo3 backend the THTMLArea does not work. > > I use version 1.5.3 and safari 3 public beta. > > > > I checked the box enable RTE in safari 9 but this does not help. > > > > Any suggestions? > > > > Thanks, Otto > _______________________________________________ TYPO3-english mailing list TYPO3-english at lists.netfielders.de http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english From tapio.markula at xetpoint.fi Thu Sep 13 09:37:08 2007 From: tapio.markula at xetpoint.fi (Tapio Markula) Date: Thu, 13 Sep 2007 10:37:08 +0300 Subject: [TYPO3] Access control on user level on FE In-Reply-To: References: Message-ID: Nicola Raffaele Di Matteo kirjoitti: > I need to give the right of access at only of the more than 100 > customers of the company. > I think that to create 100 groups is not the best way... > Is it possible to set in some way the right of the access per user and > not only per group? > > Many thanks for your help! > Nicola. no but create a generic groups, which defined the same setting for as many users as possible. Use generic groups just setting generic access rights. then set rest on user level From dmitry at typo3.org Thu Sep 13 09:41:12 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Thu, 13 Sep 2007 10:41:12 +0300 Subject: [TYPO3] Install tool loops with PHP 5.2.4 and Apache 2.0.59 In-Reply-To: References: Message-ID: Hi! Firsts, use your full name in these lists. This is according to our rules. Sim wrote: > After recently server update (Trustix 2.2 as Distro), it is impossible > to install typo3, the install tool seems to be locked in an infinite > loop. What typo3 version? I can run 4.1.x and 4.2 without any problem on PHP 5.2.1. If you use mysql5, search this mailing list for solution. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From dmitry at typo3.org Thu Sep 13 09:45:35 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Thu, 13 Sep 2007 10:45:35 +0300 Subject: [TYPO3] Cooluri, multidomain, multilanguage,single tree setup In-Reply-To: References: Message-ID: Tomi Hrovatin wrote: > Does anybody know if this is possible with RealUrl? Yes but configuration will not be trivial... -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From dmitry at typo3.org Thu Sep 13 09:47:30 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Thu, 13 Sep 2007 10:47:30 +0300 Subject: [TYPO3] Cooluri, multidomain, multilanguage,single tree setup In-Reply-To: References: Message-ID: Hi! Jan Bednarik wrote: > You know, if I saw a list of products and all products had the same > name, I'd be really confused what to choose. It is typical for shops. We just made a shop where wool has something like 20 items with the same name. Other properties change but owners wanted it all as separate products, so variations are "no go". -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From simvirus at gmail.com Thu Sep 13 10:01:38 2007 From: simvirus at gmail.com (Sim) Date: Thu, 13 Sep 2007 10:01:38 +0200 Subject: [TYPO3] Install tool loops with PHP 5.2.4 and Apache 2.0.59 In-Reply-To: References: Message-ID: > Hi! > > Firsts, use your full name in these lists. This is according to our rules. Hi! Excuse me, this is my account. > > After recently server update (Trustix 2.2 as Distro), it is impossible > > to install typo3, the install tool seems to be locked in an infinite > > loop. > > What typo3 version? I can run 4.1.x and 4.2 without any problem on PHP > 5.2.1. If you use mysql5, search this mailing list for solution. > I have tested it with all versions (4.1.2 and 4.0.x). This problem is happened after recently PHP update. Yes, I'm using Mysql5, and you? Very thanks -- Simon Walker TYPO3 System Administrator From simvirus at gmail.com Thu Sep 13 10:32:41 2007 From: simvirus at gmail.com (Sim) Date: Thu, 13 Sep 2007 10:32:41 +0200 Subject: [TYPO3] Install tool loops with PHP 5.2.4 and Apache 2.0.59 In-Reply-To: References: Message-ID: > > Firsts, use your full name in these lists. This is according to our rules. > > Hi! Excuse me, this is my account. > > > > After recently server update (Trustix 2.2 as Distro), it is impossible > > > to install typo3, the install tool seems to be locked in an infinite > > > loop. > > > > What typo3 version? I can run 4.1.x and 4.2 without any problem on PHP > > 5.2.1. If you use mysql5, search this mailing list for solution. > > > > I have tested it with all versions (4.1.2 and 4.0.x). > This problem is happened after recently PHP update. > Yes, I'm using Mysql5, and you? > Very thanks Sorry! I'm using mysql-4.1.22 over Typo3 servers! Pls help -- Simon Walker TYPO3 System Administrator From jeroen at roquin.nl Thu Sep 13 11:16:27 2007 From: jeroen at roquin.nl (Jeroen Visser) Date: Thu, 13 Sep 2007 11:16:27 +0200 Subject: [TYPO3] [SOLVED] cellpadding, cellspacing and bodytext in RTE Message-ID: Hi, Just for those who would like to know. I wanted to set default attributes (cellpadding, cellspacing, border) to HTML tables that have been created inside a text element, using the RTE. # In the TSconfig RTE.default.proc.entryHTMLparser_db.tags.table.fixAttrib.cellspacing.set = "0" RTE.default.proc.entryHTMLparser_db.tags.table.fixAttrib.cellpadding.set = "0" RTE.default.proc.entryHTMLparser_db.tags.table.fixAttrib.border.set = "0" I also didn't wanted the class="bodytext" in my paragraphs. # In the Setup lib.parseFunc_RTE.nonTypoTagStdWrap.encapsLines.addAttributes.P.class > Regards, Jeroen From simvirus at gmail.com Thu Sep 13 11:51:24 2007 From: simvirus at gmail.com (Sim) Date: Thu, 13 Sep 2007 11:51:24 +0200 Subject: [TYPO3] Install tool loops with PHP 5.2.4 and Apache 2.0.59 In-Reply-To: References: Message-ID: > > > Firsts, use your full name in these lists. This is according to our rules. > > > > Hi! Excuse me, this is my account. > > > > > > After recently server update (Trustix 2.2 as Distro), it is impossible > > > > to install typo3, the install tool seems to be locked in an infinite > > > > loop. > > > > > > What typo3 version? I can run 4.1.x and 4.2 without any problem on PHP > > > 5.2.1. If you use mysql5, search this mailing list for solution. > > > > > > > I have tested it with all versions (4.1.2 and 4.0.x). > > This problem is happened after recently PHP update. > > Yes, I'm using Mysql5, and you? > > Very thanks > > Sorry! I'm using mysql-4.1.22 over Typo3 servers! > Pls help > Hi to all! Bad notice! I'm going to tell you again that TYPO4.x is now NOT compatible with last PHP version! I have tryed it over two news updated servers! ................. The install tool seems to be locked in an infinite loop. I have increased php error log level and observe logfiles without any bad output. Some time, after some minutes, Typo3 Install show: ------------------- Database Error No database selected Else, if I delete ENABLE_INSTALL_TOOL file, it show the default Install Tool lock: ------------------- The Install Tool is locked. Fix: Create a file typo3conf/ENABLE_INSTALL_TOOL This file may simply be empty. For security reasons, it is highly recommended to rename or delete the file after the operation is finished. Also another old installation now have problem in : http://site/typo3/install/ [^] After login, only this menu working 3: Update Wizard 5: All Configuration 8: phpinfo() 9: Edit files in typo3conf/ 10: About The other create infinite loop as first installation 1: Basic Configuration 2: Database Analyser 4: Image Processing -- Simon Walker TYPO3 System Administrator From tapio.markula at xetpoint.fi Thu Sep 13 12:39:45 2007 From: tapio.markula at xetpoint.fi (Tapio Markula) Date: Thu, 13 Sep 2007 13:39:45 +0300 Subject: [TYPO3] Get rid of all JS from HEAD Message-ID: HI I must get rid of all JavaScript in the page. How I could get rid of this, which Typo3 normally puts: From typo3 at andreas-balzer.de Thu Sep 13 13:44:36 2007 From: typo3 at andreas-balzer.de (Andreas Balzer) Date: Thu, 13 Sep 2007 13:44:36 +0200 Subject: [TYPO3] random teaser In-Reply-To: References: Message-ID: Hi! Roberto Torresani schrieb: > I need insert in the home page a random teaser of the subpage, that change > every time somebody visit the home page. > What is the best way/extension to do this? There are many possibilities to do this. shortcuts: If your contents should be the same (most of the time) but only the teaser changes you can do it with several pages and add a shortcut type random to those. It'll randomly open one of these pages then. (problem: if you want to update the texts or something it will be quite time consuming) ad system: You can use one out of many advertising systems to solve this. Just create several ads and add them to a zone shown as your teaser. If you only want to show some teasers you're fine with an internal ad extension. If we're speaking about some hundreds of ads shown on hundreds of pages you might want to consider openads.org for this job that can be integrated into TYPO3 aswell. Hope that helps a bit Andreas From mortenkjems at gmail.com Thu Sep 13 13:56:42 2007 From: mortenkjems at gmail.com (Morten Kjems) Date: Thu, 13 Sep 2007 13:56:42 +0200 Subject: [TYPO3] Tip a friend - problem - ERROR: malformed or missing URL detected! Message-ID: Hi. I have installed the Tip-a-Friend extension and followed the tutorial. The TIPLINK links correcly to the TIPFORM but the TIPFORM displays an error message: "malformed or missing URL detected!" If I submit the form nothing happens... I simply have no clue on how to solve this. Any suggestions? Thanks /Morten From ian at webian.it Thu Sep 13 14:04:45 2007 From: ian at webian.it (Ian Solo) Date: Thu, 13 Sep 2007 14:04:45 +0200 Subject: [TYPO3] Problems with uniqueLinkVars Message-ID: Hi! I have a problem with the links of not default language pages. If I set "config.uniqueLinkVars = L" and I browse a not default language page, the links of the menus points always to the default language. Yet, the text of the links are correctly translated (not the link itself). Instead, if I set "config.linkVars = L" it works correctly. Both text and link are rendered correctly. In both cases i can see the L=1 parameter (only once) on the url. This is the subpart of my setup related to localization: ----------------------------------------------------------------- # Localization config.uniqueLinkVars = L config.sys_language_overlay = content_fallback config.sys_language_mode = content_fallback config { sys_language_uid = 0 language = it locale_all = it_IT metaCharset = utf-8 } [globalVar = GP:L = 1] config { sys_language_uid = 1 language = gb locale_all = gb_GB metaCharset = utf-8 } [global] [globalVar = GP:L = 2] config { sys_language_uid = 2 language = de locale_all = de_DE metaCharset = utf-8 } [global] # Localization ----------------------------------------------------------------- What's wrong? Thank you very much for your answers! P.S. I'm using: Typo3 4.1.2 templavoila 1.3.3 realurl 1.1.4 (the problem is still present if i uninstall realurl) From violeta_creteanu at yahoo.com Thu Sep 13 14:43:32 2007 From: violeta_creteanu at yahoo.com (Violeta Creteanu) Date: Thu, 13 Sep 2007 05:43:32 -0700 (PDT) Subject: [TYPO3] database postgres and news Message-ID: Hi! Can somebody tell me: there is any extension with news that goes well with postgres? I try tt_news, but I have some problems in the database. I found this: http://lists.netfielders.de/pipermail/typo3-english/2006-February/020481.html but I don't understand: why to have 2 databases? Better I use only MySql. I also found this extension: News Flexible that "enables other databases than MySQL", but id doesn't have "Search". Can anyone help me? Keep going with Postgres or use MySql? If I use PostgreSQL it is possible to have problems in future with other extensions? Thank you very much. Violeta --------------------------------- Pinpoint customers who are looking for what you sell. From typo3 at rvt.dds.nl Thu Sep 13 15:41:26 2007 From: typo3 at rvt.dds.nl (ries van Twisk) Date: Thu, 13 Sep 2007 08:41:26 -0500 Subject: [TYPO3] database postgres and news In-Reply-To: References: Message-ID: Hey Violeta, support for other databases in TYPO3 is poor. core is supposed to work with other databases out of the box, but no installer is available (may be 4.2 can do it). You better stick to MySQL for all TYPO3 stuff, unless you are willing to modify and patch extensions. Ries On Sep 13, 2007, at 7:43 AM, Violeta Creteanu wrote: > Hi! > > Can somebody tell me: there is any extension with news that goes > well with postgres? > > I try tt_news, but I have some problems in the database. > > I found this: > > http://lists.netfielders.de/pipermail/typo3-english/2006-February/ > 020481.html > > but I don't understand: why to have 2 databases? Better I use only > MySql. > > > > I also found this extension: News Flexible that "enables other > databases than MySQL", but id doesn't have "Search". > > > > Can anyone help me? Keep going with Postgres or use MySql? > > If I use PostgreSQL it is possible to have problems in future with > other extensions? > > Thank you very much. > > Violeta > > > --------------------------------- > Pinpoint customers who are looking for what you sell. > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english -- Ries van Twisk Freelance TYPO3 Developer email: ries at vantwisk.nl web: http://www.rvantwisk.nl/ skype: callto://r.vantwisk Phone: + 1 810-476-4193 From dmitry at typo3.org Thu Sep 13 16:07:08 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Thu, 13 Sep 2007 17:07:08 +0300 Subject: [TYPO3] Install tool loops with PHP 5.2.4 and Apache 2.0.59 In-Reply-To: References: Message-ID: Sim wrote: > Hi! Excuse me, this is my account. No problem if you write full name at the end of e-mail :) > I have tested it with all versions (4.1.2 and 4.0.x). > This problem is happened after recently PHP update. > Yes, I'm using Mysql5, and you? I use mysql 4.1. Search lists for solution about mysql5. I plan toupgrade to 5.0 soon and I will check core for compatibility isses with 5.0. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From info at cybercraft.de Thu Sep 13 16:12:58 2007 From: info at cybercraft.de (JoH) Date: Thu, 13 Sep 2007 16:12:58 +0200 Subject: [TYPO3] Problems with uniqueLinkVars References: Message-ID: > I have a problem with the links of not default language pages. > > If I set "config.uniqueLinkVars = L" and I browse a not default > language page, the links of the menus points always to the default > language. Yet, the text of the links are correctly translated (not the > link > itself). > Instead, if I set "config.linkVars = L" it works correctly. Both text > and link are rendered correctly. > > In both cases i can see the L=1 parameter (only once) on the url. linkVars = L uniqueLinkVars = 1 the last one is boolean and not meant as a replacement but an addon. HTH Joey From aowen at swissonline.ch Thu Sep 13 16:15:18 2007 From: aowen at swissonline.ch (aowen at swissonline.ch) Date: Thu, 13 Sep 2007 16:15:18 +0200 Subject: [TYPO3] change meta tags dynamicly Message-ID: i want to change the metatags keywords & description in my php-script wich i've included with the extension lumophpinclude. i've found the variables: $GLOBALS["TSFE"]->currentPageData['setup']['lib.']['page.']['meta.']['keywords'] $GLOBALS["TSFE"]->all['pSetup']['meta.']['keywords'] I can change them but the changes dont occur to the html-document. their probably done to late. Does anyone know how the change these tags? From simvirus at gmail.com Thu Sep 13 16:17:30 2007 From: simvirus at gmail.com (Sim) Date: Thu, 13 Sep 2007 16:17:30 +0200 Subject: [TYPO3] Install tool loops with PHP 5.2.4 and Apache 2.0.59 In-Reply-To: References: Message-ID: > > I have tested it with all versions (4.1.2 and 4.0.x). > > This problem is happened after recently PHP update. > > Yes, I'm using Mysql5, and you? > > I use mysql 4.1. Search lists for solution about mysql5. > > I plan toupgrade to 5.0 soon and I will check core for compatibility > isses with 5.0. Hi Dmitry, excuse me but I have see later that I'm using mysql-4.1.22 over Typo3 servers! -- Simon Walker TYPO3 System Administrator From simvirus at gmail.com Thu Sep 13 16:17:30 2007 From: simvirus at gmail.com (Sim) Date: Thu, 13 Sep 2007 16:17:30 +0200 Subject: [TYPO3] Install tool loops with PHP 5.2.4 and Apache 2.0.59 In-Reply-To: References: Message-ID: > > I have tested it with all versions (4.1.2 and 4.0.x). > > This problem is happened after recently PHP update. > > Yes, I'm using Mysql5, and you? > > I use mysql 4.1. Search lists for solution about mysql5. > > I plan toupgrade to 5.0 soon and I will check core for compatibility > isses with 5.0. Hi Dmitry, excuse me but I have see later that I'm using mysql-4.1.22 over Typo3 servers! -- Simon Walker TYPO3 System Administrator From patrick at typo3quebec.org Thu Sep 13 16:30:17 2007 From: patrick at typo3quebec.org (Patrick Gaumond) Date: Thu, 13 Sep 2007 10:30:17 -0400 Subject: [TYPO3] Access control on user level on FE In-Reply-To: References: Message-ID: Nicola Raffaele Di Matteo wrote: > I need to give the right of access at only of the more than 100 > customers of the company. > I think that to create 100 groups is not the best way... > Is it possible to set in some way the right of the access per user and > not only per group? Maybe try BE_ACL (written by a CoreDEV by the way): http://typo3.org/documentation/document-library/extension-manuals/be_acl/1.3.0/view/1/1/#id2783833 Patrick From simon at stwdesign.com Thu Sep 13 18:08:04 2007 From: simon at stwdesign.com (Simon Browning) Date: Thu, 13 Sep 2007 12:08:04 -0400 Subject: [TYPO3] rtehtmlarea & curly apostrophes & quotes Message-ID: Not sure where to look here. In the rte, curly apostrophe (like: BBQ?s) display properry. Same for quotes. When shown on the website though, a question mark appears instead (like: BBQ?s). Is this something to do with my htmlarea config? Something else? Thank you. Simon From tapio.markula at xetpoint.fi Thu Sep 13 18:36:08 2007 From: tapio.markula at xetpoint.fi (Tapio Markula) Date: Thu, 13 Sep 2007 19:36:08 +0300 Subject: [TYPO3] Add header Message-ID: Hi I should force to add header("From:... ) for a page, which send newsletter subscriptions. Is there any way to hack some code or some configuration for this? From john.kavanagh at roomthree.com Thu Sep 13 18:34:46 2007 From: john.kavanagh at roomthree.com (John Kavanagh) Date: Thu, 13 Sep 2007 17:34:46 +0100 Subject: [TYPO3] change all form buttons to input type=image Message-ID: Hi, I was wondering does anybody have some typoscript that can change all the form buttons into input type=image? Thanks, John. From ian at webian.it Thu Sep 13 18:44:09 2007 From: ian at webian.it (Ian Solo) Date: Thu, 13 Sep 2007 18:44:09 +0200 Subject: [TYPO3] Problems with uniqueLinkVars In-Reply-To: References: Message-ID: Right! Thank you Joey! :) JoH wrote: >> I have a problem with the links of not default language pages. >> >> If I set "config.uniqueLinkVars = L" and I browse a not default >> language page, the links of the menus points always to the default >> language. Yet, the text of the links are correctly translated (not the >> link >> itself). >> Instead, if I set "config.linkVars = L" it works correctly. Both text >> and link are rendered correctly. >> >> In both cases i can see the L=1 parameter (only once) on the url. > > linkVars = L > uniqueLinkVars = 1 > > the last one is boolean and not meant as a replacement but an addon. > > HTH > > Joey > > From greg at mediatech.net Thu Sep 13 21:12:51 2007 From: greg at mediatech.net (Gregory Remington) Date: Thu, 13 Sep 2007 12:12:51 -0700 Subject: [TYPO3] Tip a friend - problem - ERROR: malformed or missing URL detected! In-Reply-To: References: Message-ID: Morten Kjems wrote: > The TIPLINK links correcly to the TIPFORM but the TIPFORM displays an > error message: > > "malformed or missing URL detected!" > > If I submit the form nothing happens... > > I simply have no clue on how to solve this. This is what I use to generate the tip link. # Tip a Friend ####################################### page.1 { subparts.TIPAFRIEND = TEXT subparts.TIPAFRIEND { userFunc = tx_tipafriend->main_tipafriend code = TIPLINK value = Email to 
Friend Email typolink{ parameter = 16 # link to your tip-a-friend page ATagParams = target="_top" additionalParams.cObject = COA additionalParams.cObject{ 1 = TEXT 1.value = &tipUrl= 2 = TEXT 2.data = getIndpEnv: TYPO3_REQUEST_URL 2.rawUrlEncode = 1 } } } } > Any suggestions? Yes, use Tip-A-Friend Plus :) http://typo3.org/extensions/repository/view/tipafriend_plus/0.1.3/ Cheers, Greg ----- Gregory Remington Mediatech Consulting, Inc. http://www.mediatech.net From jkokino at gmail.com Thu Sep 13 21:46:20 2007 From: jkokino at gmail.com (Darko Jr. Gonzalez) Date: Thu, 13 Sep 2007 21:46:20 +0200 Subject: [TYPO3] Typo3 4.2 suggestions Message-ID: Heya I dont know where to post to suggest these two features, which I think are kinda important. Among the loads of flexibility and options Typo3 provides I didnt find these two: 1. Via page properties there are these cache values: 1min, 5min, 15min, 30min, 1h, 4h, 1d, 2d, 7d, 1m I need 12h, or I found there is clearCacheAtmidnight, but I want to optimize it, or put a workaround, so is there a way to set that each day at exactly 4pm the page cache is cleared and recached at next visit? 2. I've used abit Joomla, there is a handy section there which allows me to disable the website FE for regular preview by a single click. How do I achieve that. As far as I know there is no such thing in Typo3, unless I do it manually e.g.: - hide homepage, but the other pages are accessible directly - deactivate the root template. shows template not found for TV, but I dont know how to revert back to activated, unless I do undo from the logs. My suggestion, pretty simple. One click goes under "site maintenance", one click goes live back. Eventually that we can set a picture/baner while offline/under maintenance - that would be great. Thanks Darko From tomi at tri-ex.si Thu Sep 13 23:05:27 2007 From: tomi at tri-ex.si (Tomi Hrovatin) Date: Thu, 13 Sep 2007 23:05:27 +0200 Subject: [TYPO3] Cooluri, multidomain, multilanguage,single tree setup In-Reply-To: References: Message-ID: Dmitry Dulepov [typo3] wrote: > Tomi Hrovatin wrote: >> Does anybody know if this is possible with RealUrl? > > Yes but configuration will not be trivial... > ;) Any hints? Tomi Hrovatin From mortenkjems at gmail.com Thu Sep 13 23:09:21 2007 From: mortenkjems at gmail.com (Morten Kjems) Date: Thu, 13 Sep 2007 23:09:21 +0200 Subject: [TYPO3] Tip a friend - problem - ERROR: malformed or missing URL detected! In-Reply-To: References: Message-ID: Thanks for your reply. >> Any suggestions? > > Yes, use Tip-A-Friend Plus :) > http://typo3.org/extensions/repository/view/tipafriend_plus/0.1.3/ I have installed the Tip-A-Friend Plus and configured it as described in the manual. But there are two problems: 1. The URLs for the recommended page are wrong and very loong. They look somthing like this: http%3A%2F%2Fdomain.......om%252525252Fmail-form.html I use CoolUri to generate my URLs and I wonder if I need to configure CoolUri in some way? 2. If I fill out the form I get the following error message eventhough everything is typed correctly: "Error! You didn't fill in all required fields or the email addresses was not valid!" I would love to use Tip-A-Friend Plus. So can anyone figure out what I am dooing wrong? Thanks /Morten From jkokino at gmail.com Thu Sep 13 23:20:31 2007 From: jkokino at gmail.com (Darko Jr. Gonzalez) Date: Thu, 13 Sep 2007 23:20:31 +0200 Subject: [TYPO3] FCE in SysFolder Message-ID: Hey folks I created a FCE template with TV. I tried to created a new pagecontent with this FCE's DS/TO in a sysfolder but I was unable. It doesnt give me the option to create pagecontents of FCE typ3. I can select type:Flexible Element, but I dont see the DS/TO entry to select it in the 2nd drop down menu; Nor in the list of pagecontent types. Did I do somewhere mistake? I usually use separate sysfolder for tt_content records which appear on all pages across the website. Please advise? Hint? Thanks, Darko From sean at abovemedia.com Thu Sep 13 23:21:27 2007 From: sean at abovemedia.com (Sean Gonsman) Date: Thu, 13 Sep 2007 17:21:27 -0400 Subject: [TYPO3] TemplaVoila 500 Internal Server Error - FATAL: emalloc() Message-ID: Hi Everyone, We just installed the latest stable version of Typo3 and TemplaVoila. During the setup of our templates in TemplaVoila, we get a 500 Internal Server error when creating a new template. After reviewing the error logs, this is what we get: FATAL: emalloc(): Unable to allocate 12 bytes [Thu Sep 13 14:58:08 2007] [error] [client 72.16.218.62] Premature end of script headers: /htdocs/www2007/typo3conf/ext/templavoila/mod2/index.php I have searched everywhere for an answer and couldn't find anything. One web site listed a permissions problem. We tried updating all files under fileadmin to 777, but this did nothing. We also changed all permission to 755 under typo3conf. We updated the PHP memory to 32MB so this should be OK. Has anyone encountered this error or know of the problem? -- Sean Gonsman President Above Media, LLC www.abovemedia.com 678-935-7204 678-935-7109 (fax) From jkokino at gmail.com Thu Sep 13 23:27:48 2007 From: jkokino at gmail.com (Darko Jr. Gonzalez) Date: Thu, 13 Sep 2007 23:27:48 +0200 Subject: [TYPO3] FCE in SysFolder In-Reply-To: <46E9A99F.3090608@gmail.com> References: <46E9A99F.3090608@gmail.com> Message-ID: My bad - it works. Regards, Darko Darko Jr. Gonzalez wrote: > Hey folks > > I created a FCE template with TV. > I tried to created a new pagecontent with this FCE's DS/TO in a > sysfolder but I was unable. It doesnt give me the option to create > pagecontents of FCE typ3. I can select type:Flexible Element, but I dont > see the DS/TO entry to select it in the 2nd drop down menu; Nor in the > list of pagecontent types. Did I do somewhere mistake? > > I usually use separate sysfolder for tt_content records which appear on > all pages across the website. > > Please advise? Hint? > > Thanks, > Darko > From greg at mediatech.net Fri Sep 14 05:49:13 2007 From: greg at mediatech.net (Gregory Remington) Date: Thu, 13 Sep 2007 20:49:13 -0700 Subject: [TYPO3] Tip a friend - problem - ERROR: malformed or missing URL detected! In-Reply-To: References: Message-ID: Morten Kjems wrote: > I have installed the Tip-A-Friend Plus and configured it as described in > the manual. > > But there are two problems: > > 1. The URLs for the recommended page are wrong and very loong. They look > somthing like this: > > http%3A%2F%2Fdomain.......om%252525252Fmail-form.html > > I use CoolUri to generate my URLs and I wonder if I need to configure > CoolUri in some way? Be careful mixing extensions... not everything is "compatible" without some programming or search skills. CoolUri is a relatively new extension so there may be more issues than with RealURL. Greg ----- Gregory Remington Mediatech Consulting, Inc. http://www.mediatech.net From catepeter at optusnet.com.au Fri Sep 14 06:11:07 2007 From: catepeter at optusnet.com.au (Cate & Peter) Date: Fri, 14 Sep 2007 14:11:07 +1000 Subject: [TYPO3] Get rid of all JS from HEAD In-Reply-To: <31326333.1189680849022.JavaMail.root@m48> Message-ID: Hi Tapio > I must get rid of all JavaScript in the page. Came across this .. not sure if it does exactly what you want ... or if it is tooooo much. config.disableAllHeaderCode = 1 "This setting will prevent the inclusion of Javascript essential to the correct behavior of the profile editing features." Cate From ian at webian.it Fri Sep 14 07:07:14 2007 From: ian at webian.it (Ian Solo) Date: Fri, 14 Sep 2007 07:07:14 +0200 Subject: [TYPO3] Differences between extensions "Front End User Registration" and "Email Address Subscription"? Message-ID: Hi! What are the differences between the two extensions: "Front End User Registration" (sr_feuser_register) and "Email Address Subscription" (sr_email_subscribe) ? I did read the manuals but I can't figure out why should I use one or the other one. I'm used to use sr_feuser_register, then (searching for Captcha integration) i found sr_email_subscribe described, in the "What does it do" section, as: "The Email Address Subscription extension is built as an extension of the Front End User Registration (sr_feuser_register) extension and therefore has very similar features, including..." Then follow the similar features. But, what are the differences? At the moment sr_email_subscribe looks to me like a copy of sr_feuser_register. Thanks in advance for your answers. Best regards, ian From mack at xnos.org Fri Sep 14 08:03:29 2007 From: mack at xnos.org (Benjamin Mack) Date: Fri, 14 Sep 2007 08:03:29 +0200 Subject: [TYPO3] Differences between extensions "Front End User Registration" and "Email Address Subscription"? In-Reply-To: References: Message-ID: Hey Ian, I think the sr_feuser_register let's people sign up for an frontend user account (table "fe_users"), where as sr_email_subscribe only adds people to the address database (table "tt_address"). well... I gotta tell you: I used the sr_email_subscribe for signing up for newsletter (direct_mail) but was a bit disappointed since tt_address/sr_email_subscribe did not have some fields I needed (title, salutation) whereas they're somehow included in fe_users. But this is just a small sitenote of mine experiencing with especially the latter extension. greetings, benni. -SDG- www.xnos.de // www.xnos.org Ian Solo wrote: > Hi! > What are the differences between the two extensions: > "Front End User Registration" (sr_feuser_register) > and > "Email Address Subscription" (sr_email_subscribe) > ? > > I did read the manuals but I can't figure out why should I use one or > the other one. > > I'm used to use sr_feuser_register, then (searching for Captcha > integration) i found sr_email_subscribe described, in the "What does it > do" section, as: > "The Email Address Subscription extension is built as an extension of > the Front End User Registration (sr_feuser_register) extension and > therefore has very similar features, including..." > Then follow the similar features. > > But, what are the differences? At the moment sr_email_subscribe looks to > me like a copy of sr_feuser_register. > > Thanks in advance for your answers. > Best regards, ian > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english From thorsten.kahler at dkd.de Fri Sep 14 08:53:59 2007 From: thorsten.kahler at dkd.de (Thorsten Kahler) Date: Fri, 14 Sep 2007 08:53:59 +0200 Subject: [TYPO3] Typo3 4.2 suggestions In-Reply-To: References: Message-ID: Hi Darko, Darko Jr. Gonzalez wrote on 13.09.2007 21:46: > > 2. I've used abit Joomla, there is a handy section there which allows me > to disable the website FE for regular preview by a single click. How do > I achieve that. As far as I know there is no such thing in Typo3, unless > I do it manually e.g.: > - hide homepage, but the other pages are accessible directly > - deactivate the root template. shows template not found for TV, but > I dont know how to revert back to activated, unless I do undo from the > logs. > My suggestion, pretty simple. One click goes under "site maintenance", > one click goes live back. Eventually that we can set a picture/baner > while offline/under maintenance - that would be great. > TYPO3 doesn't have any kind of "maintenance mode", because it doesn't need it ;-> In fact, you can easily create a meintenance page with a simple template and move the sys_domain records of the site(s) you want to maintain to that page. Regards Thorsten From ignatius.reilly at free.fr Fri Sep 14 09:47:25 2007 From: ignatius.reilly at free.fr (Ignatius Reilly) Date: Fri, 14 Sep 2007 09:47:25 +0200 Subject: [TYPO3] How to unpublish the whole front-end? Message-ID: Is there a built-in way to unpublish a whole site from the admin panel (to bring a site down, while keeping access to the BE), like there is with Joomla? Searched about, couldn't find it (using 4.1) From pesz at pesz.hu Fri Sep 14 10:29:44 2007 From: pesz at pesz.hu (=?UTF-8?B?TXVyw6FueWkgw4FycMOhZA==?=) Date: Fri, 14 Sep 2007 10:29:44 +0200 Subject: [TYPO3] Differences between extensions "Front End User Registration" and "Email Address Subscription"? In-Reply-To: References: Message-ID: Hei Ben, then what is the best way for signing up for newsletter (direct_mail)? i am just looking for the best solution for an upcoming newsletter. thanks, arpad Benjamin Mack wrote: > well... I gotta tell you: I used the sr_email_subscribe for signing up > for newsletter (direct_mail) but was a bit disappointed since > tt_address/sr_email_subscribe did not have some fields I needed (title, > salutation) whereas they're somehow included in fe_users. But this is > just a small sitenote of mine experiencing with especially the latter > extension. From bernie at pixelsound.com Fri Sep 14 10:43:36 2007 From: bernie at pixelsound.com (Bernie Pfister) Date: Fri, 14 Sep 2007 16:43:36 +0800 Subject: [TYPO3] Ext:slideshow doesn't show images Message-ID: I just spent hours trying to find the reason why my slideshow doesn't show up. Even though the SWF gets displayed. Problem: Ext:slideshow displays SWF, but slide show does not start and no images show up. Cause: 1) Slide show uses an XML script (page type=9005). eg index.php?type=9005&slideshow=2&random=0&transition=fade&timer=5&navigation=0 2) This XML page is generated with the script "EXT:slideshow/xml_output.php". The script is included using TypoScript property "pageGenScript" 3) However, "pageGenScript" is disabled if "noPHPscriptInclude" is set to true in localconf.php (Installer). Solution: In Installer (localconf.php) set "noPHPscriptInclude" to 0. Jean-Davide, can you put this in the manual under "Known Issues"? Many thanks, Bernie From h.e.weenink at aristo-webdesign.nl Fri Sep 14 10:52:16 2007 From: h.e.weenink at aristo-webdesign.nl (H.E.Weenink | Aristo WebDesign) Date: Fri, 14 Sep 2007 10:52:16 +0200 Subject: [TYPO3] Personalised directmail and collect information on receivers? Message-ID: Hello all, A client of my had hundreds and more custumors listed in his addressbooks. He wants to send them personalised directmail on new products he has. And have some kind of listing of what custumors clicked on specific links to be able to adress them personal in next step. So what we need is: - personalised directmail.-> Hello Fred, Hello Ann. etc please have a look at these products. - save statistics on what links where choosen most etc. - list of who was interested in what. I did some studying in list with extensions. But cannot find complete solution there. DirectMail could be good to send mail, do statistics. But can it also be personalised? Fe_userregistration has some good parts, in how it is collecting information on people who visit pages, setting different status on user records, But is there also some combination of both? I am open to suggestions and tips. Regards, Eef Weenink | Aristo WebDesign From stano.paska at gmail.com Fri Sep 14 11:08:22 2007 From: stano.paska at gmail.com (=?UTF-8?Q?Stano_Pa=C5=A1ka?=) Date: Fri, 14 Sep 2007 11:08:22 +0200 Subject: [TYPO3] localized external link Message-ID: Hi. I have menu and one page is type "external url". Link is defined in Page properties, field URL. I want to create localized record of this page with link to another url. It can be done with "normal way", or I must use some neat typoscript trick? Thanks. Stano Paska. From rgn at windinternet.nl Fri Sep 14 11:22:38 2007 From: rgn at windinternet.nl (Rudy Gnodde) Date: Fri, 14 Sep 2007 11:22:38 +0200 Subject: [TYPO3] Personalised directmail and collect information on receivers? In-Reply-To: References: Message-ID: H.E.Weenink | Aristo WebDesign wrote: > DirectMail could be good to send mail, do statistics. But can it also be > personalised? Hello Eef, Yes, Directmail can personalize emails. Just take a look at the documentation: http://typo3.org/documentation/document-library/extension-manuals/direct_mail/2.5.1/view/3/4/ Regards, Rudy Gnodde WIND Internet http://www.windinternet.nl From nrdimatteo at tiscali.it Fri Sep 14 11:39:42 2007 From: nrdimatteo at tiscali.it (Nicola Raffaele Di Matteo) Date: Fri, 14 Sep 2007 11:39:42 +0200 Subject: [TYPO3] Access control on user level on FE In-Reply-To: References: Message-ID: Dear Patrick, many thanks for your help. I know my message was not very well wrote... I need to give the right of access of customers in the FE Front End, not BE. Maybe there is some way to use the BE user for FE? Nicola. Patrick Gaumond ha scritto: > Nicola Raffaele Di Matteo wrote: > >> I need to give the right of access at only of the more than 100 >> customers of the company. >> I think that to create 100 groups is not the best way... >> Is it possible to set in some way the right of the access per user and >> not only per group? >> > > Maybe try BE_ACL (written by a CoreDEV by the way): > > http://typo3.org/documentation/document-library/extension-manuals/be_acl/1.3.0/view/1/1/#id2783833 > > Patrick > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english > > From ingo at typo3.org Fri Sep 14 13:04:32 2007 From: ingo at typo3.org (Ingo Renner) Date: Fri, 14 Sep 2007 13:04:32 +0200 Subject: [TYPO3] Typo3 4.2 suggestions In-Reply-To: References: Message-ID: Thorsten Kahler wrote: > Hi Darko, > > Darko Jr. Gonzalez wrote on 13.09.2007 21:46: >> 2. I've used abit Joomla, there is a handy section there which allows me >> to disable the website FE for regular preview by a single click. How do >> I achieve that. As far as I know there is no such thing in Typo3, unless >> I do it manually e.g.: >> - hide homepage, but the other pages are accessible directly >> - deactivate the root template. shows template not found for TV, but >> I dont know how to revert back to activated, unless I do undo from the >> logs. >> My suggestion, pretty simple. One click goes under "site maintenance", >> one click goes live back. Eventually that we can set a picture/baner >> while offline/under maintenance - that would be great. >> > > TYPO3 doesn't have any kind of "maintenance mode", because it doesn't need > it ;-> > > In fact, you can easily create a meintenance page with a simple template and > move the sys_domain records of the site(s) you want to maintain to that page. or just disable the regular te,plate and enable the maintenance template... or play with login restrictions ... or ... or ... or ... Ingo From mortenkjems at gmail.com Fri Sep 14 13:07:19 2007 From: mortenkjems at gmail.com (Morten Kjems) Date: Fri, 14 Sep 2007 13:07:19 +0200 Subject: [TYPO3] Tip a friend - problem - ERROR: malformed or missing URL detected! In-Reply-To: References: Message-ID: > Be careful mixing extensions... not everything is "compatible" without > some programming or search skills. CoolUri is a relatively new extension > so there may be more issues than with RealURL. The problem was related to CoolURI. When I uninstall the extesion everything works just fine for the Tip-A-Friend Plus extension. The Tip-A-Friend extension stil gives the same error message. But I will just use Tip-A-Friend Plus then. Thanks for helping /Morten From nightowl at galnet.dk Fri Sep 14 13:16:14 2007 From: nightowl at galnet.dk (Brian Bendtsen) Date: Fri, 14 Sep 2007 13:16:14 +0200 Subject: [TYPO3] created links to external url's doesnt always work Message-ID: Hi Im having some problems with creating links to external URL's in htmlarea rte. Its not very consistent, sometimes it works other times the link is converted to internal link. Has anyone experienced the same thing and found a solution? Could it be that the url I link to is a domain created as a domain record in my TYPO3 installation? /Brian Bendtsen From mortenkjems at gmail.com Fri Sep 14 13:26:09 2007 From: mortenkjems at gmail.com (Morten Kjems) Date: Fri, 14 Sep 2007 13:26:09 +0200 Subject: [TYPO3] CoolURI: problems with Tip-A-Friend Plus extension Message-ID: I am working on a new project and wanted to try out the new CoolURI extension. The first impression was very positive. CoolURI is very easy to install and it works right out of the box. But now I am running into the first problems. With the extension Tip-A-Friend Plus CoolUri does not generate nice URLs. The Tip-A-Friend Plus extension will send an email with a link to the page where the Tip-A-Friend link was clicked. But the link that is generated is very long and does not work. It looks something like this: http%3A%2F%2Fdomain.......om%252525252Fmail-form.html The result is that no email can be send. Any ideas on how to solve this problem? Thanks /Morten From stano.paska at gmail.com Fri Sep 14 13:58:10 2007 From: stano.paska at gmail.com (=?UTF-8?Q?Stano_Pa=C5=A1ka?=) Date: Fri, 14 Sep 2007 13:58:10 +0200 Subject: [TYPO3] CoolURI: problems with Tip-A-Friend Plus extension In-Reply-To: References: Message-ID: I have similar problems with original tipafriend extension. Problem was in double urlencoding of link. I solved it with this modification. // original line // $url = $this->validateUrl(t3lib_div::_GP('tipUrl')); // modified $url = t3lib_div::_GP('tipUrl'); $url = $this->validateUrl(rawurldecode($url)); I think that tipafriend plus is similar... Sometimes here was a discussion about it, but with no clean resolution. Stano Paska. On 9/14/07, Morten Kjems wrote: > I am working on a new project and wanted to try out the new CoolURI > extension. > > The first impression was very positive. CoolURI is very easy to install > and it works right out of the box. > > But now I am running into the first problems. > > With the extension Tip-A-Friend Plus CoolUri does not generate nice URLs. > > The Tip-A-Friend Plus extension will send an email with a link to the > page where the Tip-A-Friend link was clicked. > > But the link that is generated is very long and does not work. It looks > something like this: > > http%3A%2F%2Fdomain.......om%252525252Fmail-form.html > > The result is that no email can be send. > > Any ideas on how to solve this problem? > > Thanks > /Morten > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english > From mortenkjems at gmail.com Fri Sep 14 14:02:47 2007 From: mortenkjems at gmail.com (Morten Kjems) Date: Fri, 14 Sep 2007 14:02:47 +0200 Subject: [TYPO3] CoolURI: problems with Frontend user registration Message-ID: I am trying out the new CoolURI extension in a new project and it works just fine for normal pages. But I am having trouble to get it to work with the "Frontend User Registration" extension. Frontend User Registration works fine when CoolURI is not installed. But when CoolURI is installed two problems arise: 1. The registration process works fine until the email confirmation part. When the confirmation link in the email is clicked the user is directed to the following error message: "There seems to be a problem. We are sorry that it was not possible to complete this process. If the problem persists, please contact us at the following e-mail address and we will be pleased to help you:" 2. This problem is a bit more random. When a user (created in the backend) clicks the "edit profile link" the browser gererates a very long url consisting of "%" and numbers until it finaly times out and display an error message stating that the requet could never be completed. Again, no problems when CoolURI is not installed. Any suggestions on how to solve these problems? Thanks /Morten From peter at umloud.dk Fri Sep 14 14:08:14 2007 From: peter at umloud.dk (Peter Klein) Date: Fri, 14 Sep 2007 14:08:14 +0200 Subject: [TYPO3] CoolURI: problems with Tip-A-Friend Plus extension References: Message-ID: Hi Morten. Generate the TIPLINK urls using typoscript. See: http://www.typo3wizard.com/en/snippets/general-config/tip-a-friend-link-mit-typoscript-erstellen.html -- Peter Klein/Umloud Untd "Morten Kjems" skrev i en meddelelse news:mailman.1.1189769166.7085.typo3-english at lists.netfielders.de... >I am working on a new project and wanted to try out the new CoolURI >extension. > > The first impression was very positive. CoolURI is very easy to install > and it works right out of the box. > > But now I am running into the first problems. > > With the extension Tip-A-Friend Plus CoolUri does not generate nice URLs. > > The Tip-A-Friend Plus extension will send an email with a link to the page > where the Tip-A-Friend link was clicked. > > But the link that is generated is very long and does not work. It looks > something like this: > > http%3A%2F%2Fdomain.......om%252525252Fmail-form.html > > The result is that no email can be send. > > Any ideas on how to solve this problem? > > Thanks > /Morten From jkokino at gmail.com Fri Sep 14 14:10:38 2007 From: jkokino at gmail.com (Darko Jr. Gonzalez) Date: Fri, 14 Sep 2007 14:10:38 +0200 Subject: [TYPO3] newsletters cross-mail client compatiblity Message-ID: Hey folks This is something I posted elsewhere too, so those reading it twice or more times, apology. Intend to reach as many people as possible and see whats their experience. BTW, I have also read abit about typo3 marketing tool extension http://typo3.org/extensions/repository/view/t3m/0.2.4/ - havent tested yet though How do you create these, css/xhtml tableless design; or tables + inline css; or tables + external css file? I would like to hear successful experience, and how you know it is successful. I am about to load and test further. I didnt have success the first time with tableless css/xhtml design with most of the mail clients...I may be doing something wrong. One source pointed me to tables-based html structure with external css files as the most compatible way. I used direct_mail and plan to, if you have other suggestion, please provide. BTW, I read these: http://www.campaignmonitor.com/blog/archives/2007/04/a_guide_to_css_support_in_emai_2.html http://www.campaignmonitor.com/blog/archives/2006/12/how_to_test_html_emails.html Something now I wonder really the purpose of the webbased newsletter feature via typo3 when there are such incompatibilities Thanks, Darko From dmitry at typo3.org Fri Sep 14 14:20:19 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Fri, 14 Sep 2007 15:20:19 +0300 Subject: [TYPO3] TemplaVoila 500 Internal Server Error - FATAL: emalloc() In-Reply-To: References: Message-ID: Sean Gonsman wrote: > We just installed the latest stable version of Typo3 and TemplaVoila. > During the setup of our templates in TemplaVoila, we get a 500 Internal > Server error when creating a new template. After reviewing the error logs, > this is what we get: > > FATAL: emalloc(): Unable to allocate 12 bytes [Thu Sep 13 14:58:08 2007] > [error] [client 72.16.218.62] Premature end of script headers: > > /htdocs/www2007/typo3conf/ext/templavoila/mod2/index.php Give more memory to it. The large your template is, the more memory is needed. I usually run with 128MB. By the way, TemplaVoila has its own list and all TV problems are collected there. Much easier to find a solution in smaller forum... -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From dmitry at typo3.org Fri Sep 14 14:21:58 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Fri, 14 Sep 2007 15:21:58 +0300 Subject: [TYPO3] How to unpublish the whole front-end? In-Reply-To: References: Message-ID: Ignatius Reilly wrote: > Is there a built-in way to unpublish a whole site from the admin panel > (to bring a site down, while keeping access to the BE), like there is > with Joomla? > > Searched about, couldn't find it (using 4.1) No sich feature. See thread named "TYPO3 4.2 suggestions" posted today for some hints about it. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From dmitry at typo3.org Fri Sep 14 14:51:13 2007 From: dmitry at typo3.org (Dmitry Dulepov [typo3]) Date: Fri, 14 Sep 2007 15:51:13 +0300 Subject: [TYPO3] Cooluri, multidomain, multilanguage,single tree setup In-Reply-To: References: Message-ID: Tomi Hrovatin wrote: > Dmitry Dulepov [typo3] wrote: >> Tomi Hrovatin wrote: >>> Does anybody know if this is possible with RealUrl? >> >> Yes but configuration will not be trivial... >> > ;) > Any hints? I did not look very deep to it but I guess this: - all pages of your site belong to the same domain - you want to show slovenian page while in ".si" and english while in ".com" So you need to check what domain are you in for the current request and define default language value accordingly both in TS template and RealURL config. In TS you just use conditions. In RealURL you need to set default value of L prevar correctly for "si" domain. For example, if you have 0 for Enlgish and 1 for Slovenian, you do this in TS: [globalString = HTTP_HOST= *.si] config.sys_language.uid = 1 config.language = si [else] config.sys_language.uid = 0 config.language = 1 [global] For realurl: $TYPO3_CONF_VARS['EXTCONF']['realurl'] = array( 'www.eksotika.si' => array( ... 'preVars' => array( array( 'GETvar' => 'L', 'valueDefault' => 1, ), ), ... ), 'eksotika.si' => 'www.eksotika.si', 'www.rare-exotic-plants' => array( ... // No need for preVars here at all! ... ), 'rare-exotic-plants' => 'www.rare-exotic-plants', ); Should work I think. -- Dmitry Dulepov TYPO3 freelancer / TYPO3 core team member Web: http://typo3bloke.net/ Skype: callto:liels_bugs From katja.lampela at lieska.net Fri Sep 14 15:15:29 2007 From: katja.lampela at lieska.net (Katja Lampela) Date: Fri, 14 Sep 2007 16:15:29 +0300 Subject: [TYPO3] Menu doesnt work with multiple domain records In-Reply-To: References: Message-ID: Brian Bendtsen kirjoitti: > Katja Lampela skrev: >> Hi Brian, >> I don't know much of the previous discussion but here's my working ts >> setup for multiple domain (and realURL): >> >> >> config.simulateStaticDocuments = 0 >> config.baseURL = http://www.mydomain.fi/ >> config.tx_realurl_enable = 1 >> config.linkVars = >> config.prefixLocalAnchors = all >> config.domainTarget = _top >> >> - Katja >> > Hi > > I cant use baseURL because I have an extension installed which depends > on the active domain record. > > If I set baseURL to www.domain.com but enter the site with > www.domain1.com, the site changes back to www.domain.com when I for > example click a sub menu item. > > And on several sub menu item pages I check for current domain record and > this way it will always return www.domain.com. > > /Brian Bendtsen In my second site which has the "mydomain2" record I have in the ts setup: config.simulateStaticDocuments = 0 config.baseURL = http://www.mydomain2.fi/ config.tx_realurl_enable = 1 config.linkVars = Did you try that? - Katja From marliesc_spam at hotmail.com Fri Sep 14 15:18:21 2007 From: marliesc_spam at hotmail.com (Marlies C) Date: Fri, 14 Sep 2007 10:18:21 -0300 Subject: [TYPO3] horizontal listed menu In-Reply-To: References: Message-ID: sd at ixnl.com wrote: > Hi > > does anyone know of agood tutorial for menus. (horizontal) > > I am totally clueless. > I have seen the movie on the typo3 site but is it totally outdated I think. > > A example would be appreciated with > > Typoscript > css > html > > A would appreciate it. > > Thanks > > Stan > I have a tutorial for my horizontal bullet list menu: http://www.mcuniverse.com/Horizontal-Bulletlist-Menu.57.0.html Marlies www.mcuniverse.com From katja.lampela at lieska.net Fri Sep 14 15:34:13 2007 From: katja.lampela at lieska.net (Katja Lampela) Date: Fri, 14 Sep 2007 16:34:13 +0300 Subject: [TYPO3] Making a menu with pretected pages. In-Reply-To: References: Message-ID: Hi Fred, you could add the original login box for example by adding it in a hidden page and then insert in the html template a marker "###LOGIN###" and in the ts setup: marks.LOGIN = RECORDS marks.LOGIN { source = 123 //<- this is the id number of the login box tables = tt_content } Then you just have to find a way to modify the login form visually to your needs but that's another story ;) - Check the template tools for that. - Katja Fred kirjoitti: > Thank you Katja, I'll keep this (/I have to try this extension anyway/) > but I'd find a solution with native typo3 for many reasons, the first is > I'd like to understand it's use before adding anything. I managed to > insert an extra-menu, for exemple but I can't find how to make a TS > loginform. > > Katja Lampela a ?crit : >> Hi Fred, >> Try newloginbox extension. You can add a marker, for example >> ###login### to your html template and check the template setup code >> from the ext manual. >> HTH - Katja >> >> >> Fred kirjoitti: >>> So I tried but I failed, thank you anyway. >>> I'm trying to do this : I want to delete the page Section03_login and >>> to let Section03 properties to public access. >>> On the pages Article01... I set the properties of the content >>> elements to "members". >>> My problem is : I have a lot of pages like and my users want the most >>> simple solution, so I'm trying to make a loginbox in the template, >>> with "hide at login" property, but I can't manage to find how. >>> >>> Rudy Gnodde a ?crit : >>>> Hello Fred, >>>> >>>> Fred wrote: >>>>> I have a website on typo3 (v4.1 on a windows server with iis) on >>>>> which i have a pretected area like this : >>>>> PageRubrique >>>>> |__ Section01 >>>>> | |__ Article01 >>>>> | |__ Article02 >>>>> |__ Section02 >>>>> |__ Section03_login >>>>> |__ Section03 >>>>> |__ Article01 >>>>> |__ Article02 >>>>> From mack at xnos.org Fri Sep 14 15:47:15 2007 From: mack at xnos.org (Benjamin Mack) Date: Fri, 14 Sep 2007 15:47:15 +0200 Subject: [TYPO3] Differences between extensions "Front End User Registration" and "Email Address Subscription"? In-Reply-To: References: Message-ID: Hey arpad, don't get me wrong -- the extension "sr_email_subscribe" works fine for singing up newsletters but does not contain all the fields (= features?) you have from sr_feuser_register - obviously ;-) still --- the extensino does what it should do but I figured the term "email_subsribe is an extension for fe_register" is a bit misleading. greetings, benni. -SDG- www.xnos.de // www.xnos.org Mur?nyi ?rp?d wrote: > Hei Ben, > > then what is the best way for signing up for newsletter (direct_mail)? > i am just looking for the best solution for an upcoming newsletter. > > thanks, > arpad > > > Benjamin Mack wrote: >> well... I gotta tell you: I used the sr_email_subscribe for signing up >> for newsletter (direct_mail) but was a bit disappointed since >> tt_address/sr_email_subscribe did not have some fields I needed (title, >> salutation) whereas they're somehow included in fe_users. But this is >> just a small sitenote of mine experiencing with especially the latter >> extension. > > > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english From pesz at pesz.hu Fri Sep 14 15:52:52 2007 From: pesz at pesz.hu (=?UTF-8?B?TXVyw6FueWkgw4FycMOhZA==?=) Date: Fri, 14 Sep 2007 15:52:52 +0200 Subject: [TYPO3] Differences between extensions "Front End User Registration" and "Email Address Subscription"? In-Reply-To: References: Message-ID: Thanks Ben, i have been trying da_newsletter_subscription, but it is not perfect... i'll check out then sr_email_subscribe. bests, arpad Benjamin Mack ?rta: > Hey arpad, > > don't get me wrong -- the extension "sr_email_subscribe" works fine for > singing up newsletters but does not contain all the fields (= features?) > you have from sr_feuser_register - obviously ;-) > > still --- the extensino does what it should do but I figured the term > "email_subsribe is an extension for fe_register" is a bit misleading. > > greetings, > benni. > -SDG- > > www.xnos.de // www.xnos.org > > > Mur?nyi ?rp?d wrote: >> Hei Ben, >> >> then what is the best way for signing up for newsletter (direct_mail)? >> i am just looking for the best solution for an upcoming newsletter. >> >> thanks, >> arpad >> >> >> Benjamin Mack wrote: >>> well... I gotta tell you: I used the sr_email_subscribe for signing up >>> for newsletter (direct_mail) but was a bit disappointed since >>> tt_address/sr_email_subscribe did not have some fields I needed (title, >>> salutation) whereas they're somehow included in fe_users. But this is >>> just a small sitenote of mine experiencing with especially the latter >>> extension. >> >> _______________________________________________ >> TYPO3-english mailing list >> TYPO3-english at lists.netfielders.de >> http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.netfielders.de > http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english > From spam_this at pandora.be Fri Sep 14 16:07:27 2007 From: spam_this at pandora.be (Rob De Vries) Date: Fri, 14 Sep 2007 16:07:27 +0200 Subject: [TYPO3] newsletters cross-mail client compatiblity In-Reply-To: References: Message-ID: > BTW, I read these: > http://www.campaignmonitor.com/blog/archives/2007/04/a_guide_to_css_support_in_emai_2.html > http://www.campaignmonitor.com/blog/archives/2006/12/how_to_test_html_emails.html but have you read these?: http://www.campaignmonitor.com/resources/templates.aspx You also need to take care how TYPO3 renders his content. TYPO3 has the habit of generating alot of un nessecary code (especialy when using csc-styled content) I always use an adapted csc-styled content and reduse the types of content elements. (only 1 kind of text element, and 2 kind of txt w. image element, all modified) also take care of your 'head', use the right doctype and dont use any JS. css must be in the head (no ext. css file) that's my 2 cents happy mailing grtz Rob -- ------------------------------------------------------------ web : http://www.rob-ot.be skype : rob-ot ------------------------------------------------------------ [O_o] -- Don't feed the rob-ot From bedlamhotel at gmail.com Fri Sep 14 16:56:43 2007 From: bedlamhotel at gmail.com (Christopher Torgalson) Date: Fri, 14 Sep 2007 07:56:43 -0700 Subject: [TYPO3] newsletters cross-mail client compatiblity In-Reply-To: References: Message-ID: Hi, On 9/14/07, Rob De Vries wrote: > > > BTW, I read these: > > http://www.campaignmonitor.com/blog/archives/2007/04/a_guide_to_css_support_in_emai_2.html > > http://www.campaignmonitor.com/blog/archives/2006/12/how_to_test_html_emails.html > > but have you read these?: > http://www.campaignmonitor.com/resources/templates.aspx > > You also need to take care how TYPO3 renders his content. > TYPO3 has the habit of generating alot of un nessecary code (especialy > when using csc-styled content) > I always use an adapted csc-styled content and reduse the types of > content elements. (only 1 kind of text element, and 2 kind of txt w. > image element, all modified) > > also take care of your 'head', use the right doctype and dont use any > JS. css must be in the head (no ext. css file) > > that's my 2 cents > > happy mailing In fact, placing css in the head will fail in most (all?) webmail systems--since when viewing a message in a webmail client, the client has control of the head section of the document. If I remember correctly, the only webmail system that keeps your styles is Yahoo--I believe it renames them though! Since html emails usually /need/ to be quite ugly in terms of code (layouts effectively /must/ be (a) very simple, or (b) table-based), you can use this strategy to increase the odds of your css styles being available: place a