From rs at danship.dk Mon Sep 1 08:21:31 2014 From: rs at danship.dk (Rikard Svenningsen) Date: Mon, 01 Sep 2014 08:21:31 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__Re=3A__Re=3A__Can=27t_login_to_?= =?utf-8?q?Install_Tool=2C_want_to_upgrade_from_4=2E5=2E5_to_6=2E2?= References: Message-ID: Hi again. Now I have tried the suggested, but anything won't work. I don't think this will ever be resolved on my installation, so I will close down on this subject, and move on. Thanks to everyone trying to help. Best Regards to all. Rikard Svenningsen. From t3ng at bernd-wilke.net Mon Sep 1 08:41:12 2014 From: t3ng at bernd-wilke.net (bernd wilke) Date: Mon, 01 Sep 2014 08:41:12 +0200 Subject: [TYPO3-english] Multi Domain import loses menu In-Reply-To: References: Message-ID: Am 30.08.14 07:26, schrieb Paul Warner: > Hi Bernd, > > Thanks very much for your reply! > >> if you have two websites in one installation you need two (sub)domains. >> for each website-sub-tree there need to be a domain-record in the >> root-page of that website. also there need to be templates and the >> marking of these rootpages. > > I believe I followed all these steps very carefully when doing the multi > domain setup. I also installed the second website's extensions first, > before importing. I set up a basic page that I could view with the > second domain, then did the import. that shows you have a working configuration before the import. now you should know what has changed on the import. As a full configuration can change a lot you may have a long search. > What I have not done is check the global settings or settings for > extensions you referred to. Can you give me a tip on how to find these? the mentioned records and fields are part of core. no extensions needed. as you wrote you could access a dummy site with the second domain the base configuration (apache, htaccess, realurl-config if needed, ...) should be correct - if you also could access the first domain. if you *only* could access the second domain the configuration was not correct. if your import broke the correct working installation you need to look for the changes the import did: did the import change some of the records/fields I mentioned? did the imported typoscript break configuration? bernd -- http://www.pi-phi.de/cheatsheet.html From t3ng at bernd-wilke.net Mon Sep 1 09:15:21 2014 From: t3ng at bernd-wilke.net (bernd wilke) Date: Mon, 01 Sep 2014 09:15:21 +0200 Subject: [TYPO3-english] References to TMENU's not working In-Reply-To: References: Message-ID: Am 29.08.14 14:44, schrieb Krue Mel: > Hi! > > I recently discovered that it is not possible to use references to > TMENU's in Typo3 CMS 6.2.4. > > I'm trying to reuse a TMENU which is defined like this: > > lib.navigationMenu.stdItem = TMENU > lib.navigationMenu.stdItem { > wrap =
    |
> NO = 1 > NO.wrapItemAndSub =
  • |
  • > ACT = 1 > ACT.wrapItemAndSub =
  • |
  • > CUR = 1 > CUR.wrapItemAndSub =
  • |
  • > } > > I'm want to reference this object inside a HMENU: > > lib.navigationMenu.level_0 =< lib.navigationMenu.stdMenu > lib.navigationMenu.level_0.10 { > entryLevel = 0 > 1 =< lib.navigationMenu.stdItem > 1.wrap > > } > > But this is not working, no menu is shown. > > If I replace the reference operator with the copy operator like this: > > lib.navigationMenu.level_0 =< lib.navigationMenu.stdMenu > lib.navigationMenu.level_0.10 { > entryLevel = 0 > 1 < lib.navigationMenu.stdItem > 1.wrap > > } > > It will work as it should. I would expect a reference to work there. > Does Typo3 handle a reference to a TMENU differently? yes, as the nature of a reference is something other than a copy. in your shown example you modified the referenced TS by removing the wrap. maybe you reference your lib.navigationMenu.stdItem multiple times - and always change it. so you have only one referenced lib-object where all these modifications accumulate. bernd -- http://www.pi-phi.de/cheatsheet.html From shishangiya.yogesh at gmail.com Mon Sep 1 09:28:50 2014 From: shishangiya.yogesh at gmail.com (yogesh shishangiya) Date: Mon, 01 Sep 2014 09:28:50 +0200 Subject: [TYPO3-english] =?utf-8?q?_Adding_Custom_Style_to_Form_element?= Message-ID: Hello, I used Form element as content and now i want to add my style tag to this forms input field like i want to add class for label and submit button and input type and other things . then where i need to add all this in form configuration or in main typo script. My form configuaration like below : class = ReuestForm enctype = multipart/form-data method = post prefix = tx_form confirmation = 1 postProcessor { 1 = mail 1 { recipientEmail = yogesh (at) 3iinfo.com senderEmail = yogesh (at) 3iinfo.com subject = Thank your for contacting 3i InfoCom } } 10 = TEXTLINE 10 { wrap =
    |
    name = name label { value = Name } } 20 = TEXTLINE 20 { name = phone_no filters { 1 = digit 1 { } } label { value = Phone No } } 30 = TEXTLINE 30 { name = zipcode label { value = Zip Code } } 40 = TEXTLINE 40 { name = project_name label { value = Project Name } } 50 = TEXTAREA 50 { cols = 40 rows = 5 name = prj_des label { value = Project Description } } 60 = TEXTLINE 60 { name = company_name label { value = Company Name } } 70 = TEXTLINE 70 { name = email label { value = Email } } 80 = SELECT 80 { name = business_type label { value = Business Type } 10 = OPTION 10 { data = Select Business Type } 20 = OPTION 20 { data = Individual } 30 = OPTION 30 { data = Small Business (< 100 Employee) } 40 = OPTION 40 { data = Etreprenuer (New Idea) } } 90 = SELECT 90 { name = budget label { value = Budget } 10 = OPTION 10 { data = Select Budget Type selected = selected } 20 = OPTION 20 { data = Less Than $5000 } 30 = OPTION 30 { data = Between $5000 & $10000 } 40 = OPTION 40 { data = Between $10000 & $20000 } 50 = OPTION 50 { data = Above $20000 } } 100 = TEXTLINE 100 { name = project_url label { value = Project Url } } 110 = SUBMIT 110 { name = 12 value = Submit } rules { 1 = required 1 { breakOnError = 0 showMessage = message = Required error = This field is required element = name } 2 = required 2 { breakOnError = 0 showMessage = message = Required error = This field is required element = phone_no } 3 = required 3 { breakOnError = 0 showMessage = message = Required error = This field is required element = project_name } 4 = required 4 { breakOnError = 0 showMessage = message = Required error = This field is required element = prj_des } 5 = required 5 { breakOnError = 0 showMessage = message = Required error = This field is required element = email } 6 = email 6 { breakOnError = 0 showMessage = message = (john.doe (at) domain.com) error = This is not a valid email address element = email } } Please Give details in brief so i can able to understand. Thanks, Yogesh From paulwwarner at yahoo.com Mon Sep 1 09:42:18 2014 From: paulwwarner at yahoo.com (Paul Warner) Date: Mon, 01 Sep 2014 09:42:18 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__Re=3A__Multi_Domain_import_lose?= =?utf-8?q?s_menu?= References: Message-ID: > the mentioned records and fields are part of core. no extensions needed. > as you wrote you could access a dummy site with the second domain the > base configuration (apache, htaccess, realurl-config if needed, ...) > should be correct - if you also could access the first domain. if you > *only* could access the second domain the configuration was not correct. > if your import broke the correct working installation you need to look > for the changes the import did: did the import change some of the > records/fields I mentioned? did the imported typoscript break configuration? Thanks (again) for the reply! :-) The import (plus bringing in all the necessary adjunct files) broke only one thing, as far as I can tell: the navigation on the imported site. The site I started with continues to function just fine. The navigation for the imported site (and it doesn't matter which of the two sites I started with) adopts the navigation/menu of the first site. The template is there in full. But the navigation is wrong, and doesn't work. If you click on a menu item in the imported site, you get a new url in the field at the top of the browser, but the page doesn't change (no page not found, for instance), although one can still navigate on the initial site correctly. I removed the navigation extension realurl from one website so the two would be consistent, so I get a url like: website.url.org/index.php?id=52, etc. But, as I said, the page does not change for the imported site. Best regards, Paul From t3ng at bernd-wilke.net Mon Sep 1 10:25:43 2014 From: t3ng at bernd-wilke.net (bernd wilke) Date: Mon, 01 Sep 2014 10:25:43 +0200 Subject: [TYPO3-english] Multi Domain import loses menu In-Reply-To: References: Message-ID: Am 01.09.14 09:42, schrieb Paul Warner: >> the mentioned records and fields are part of core. no extensions needed. >> as you wrote you could access a dummy site with the second domain the >> base configuration (apache, htaccess, realurl-config if needed, ...) >> should be correct - if you also could access the first domain. if you >> *only* could access the second domain the configuration was not correct. > >> if your import broke the correct working installation you need to look >> for the changes the import did: did the import change some of the >> records/fields I mentioned? did the imported typoscript break >> configuration? > > Thanks (again) for the reply! :-) > > The import (plus bringing in all the necessary adjunct files) broke only > one thing, as far as I can tell: the navigation on the imported site. > The site I started with continues to function just fine. The navigation > for the imported site (and it doesn't matter which of the two sites I > started with) adopts the navigation/menu of the first site. The > template is there in full. But the navigation is wrong, and doesn't > work. If you click on a menu item in the imported site, you get a new > url in the field at the top of the browser, but the page doesn't change > (no page not found, for instance), although one can still navigate on > the initial site correctly. I removed the navigation extension realurl > from one website so the two would be consistent, so I get a url like: > website.url.org/index.php?id=52, etc. But, as I said, the page does not > change for the imported site. realurl: for realurl you may need to build up two different configuration in realurl_conf.php mostly a definition of default is enough: $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl'] = array ( '_DEFAULT' => array ( : but you may copy it for every domain you use: $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl']['my.first.domain'] = $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl']['_DEFAULT']; $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl']['my.second.domain'] = $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl']['_DEFAULT']; menus: depending on your menu-definitions you may need to adapt the settings. mostly should be done setting "Use as Root Page" of the rootpage of each domain (Page edit -> Tab /Behaviour\ -> *Miscellaneous* "Use as Root Page" [x] Enabled and have you set this typoscript: config.typolinkCheckRootline = 1 config.typolinkEnableLinksAcrossDomains = 1 maybe you defined your menus as kind 'directory' and the value is not correct? bernd -- http://www.pi-phi.de/cheatsheet.html From paulwwarner at yahoo.com Mon Sep 1 11:28:20 2014 From: paulwwarner at yahoo.com (Paul Warner) Date: Mon, 01 Sep 2014 11:28:20 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__Re=3A__Re=3A__Multi_Domain_impo?= =?utf-8?q?rt_loses_menu?= References: Message-ID: > realurl: > for realurl you may need to build up two different configuration in > realurl_conf.php realurl is gone. I deleted it from the one site that used it, in order to make the two consistent. > mostly should be done setting "Use as Root Page" of the rootpage of each > domain > (Page edit > -> Tab /Behaviour\ > -> *Miscellaneous* > "Use as Root Page" > [x] Enabled This I already did before I did the import, and I have the little globes showing for each of the root pages in the backend. However, since I made this individual page at the top, this top page of the imported site is a 'shortcut' that points to the 'first subpage of the current page', i.e. the root page of the imported site. The root page of the imported site is also a 'shortcut' that points to 'selected page', as in the original site. Is this ok? Example: globe - root page of first site globe - top page of imported site (tested with its own simple template, but now a 'shortcut' to the 'first subpage of the current page' > root page of the imported site (a 'shortcut' pointing to 'selected page') >underlying pages, etc. > and have you set this typoscript: > config.typolinkCheckRootline = 1 > config.typolinkEnableLinksAcrossDomains = 1 This fixed something!! Now when I click on a link in the imported site that points to the other site, it takes me to the other site! That is progress. Of course, I still don't see any menu items for the imported site.... > maybe you defined your menus as kind 'directory' and the value is not > correct? The menus may be defined as directory, see the template for the imported site: config.spamProtectEmailAddresses = 1 config.linkVars = L config.sys_language_uid = 1 config.language = en config.locale_all = en_US config.xhtml_cleaning = all ### realurl ### config.simulateStaticDocuments = 0 config.baseURL = http://localhost #config.tx_realurl_enable = 1 prefixLocalAnchors = all config.typolinkCheckRootline = 1 config.typolinkEnableLinksAcrossDomains = 1 page = PAGE page { typeNum = 0 config.index_enable = 1 config.doctype = xhtml_trans config.xmlprologue = none # config.xhtml_cleaning = all config.metaCharset = UTF-8 config.additionalHeaders = Content-Type:text/html;charset=UTF-8 config.disablePrefixComment = 1 config.disableImgBorderAttr = 1 config.inlineStyle2TempFile = 1 config.pageTitleFirst = 1 includeCSS { file1 = fileadmin/css/styles.css file2 = fileadmin/css/navigation.css file3 = fileadmin/css/divs-positionieren.css file4 = fileadmin/css/tt_news.css } # includeJS { # file1 = fileadmin/js/ie-hover-patch.js # } bodyTag = meta.AUTHOR = Transcending Tradition meta.keywords.field = keywords meta.description.field = abstract 10 = TEMPLATE 10.template = FILE 10.template.file = fileadmin/templates/homepage.html 10.workOnSubpart = DOKUMENT } page { 10.marks { LOGO < tmp.LOGO METANAVI < tmp.METANAVI NAVIGATION = HMENU NAVIGATION { special = directory special.value = 4 #excludeUidList = 6 1 = TMENU 1 { expAll = 1 wrap =
      |
    noBlur = 1 NO = 1 NO { wrapItemAndSub =
  • |
  • stdWrap.htmlSpecialChars = 1 ATagTitle.field = title } ACT <.NO ACT.ATagParams = class="active" } } # LANGUAGES < tmp.LANGUAGES CONTENT = CONTENT CONTENT { table = tt_content select.orderBy = sorting select.where = colPos = 0 } } # Ende marks } # Ende page From t3ng at bernd-wilke.net Mon Sep 1 12:12:38 2014 From: t3ng at bernd-wilke.net (bernd wilke) Date: Mon, 01 Sep 2014 12:12:38 +0200 Subject: [TYPO3-english] Multi Domain import loses menu In-Reply-To: References: Message-ID: Am 01.09.14 11:28, schrieb Paul Warner: >> realurl: >> for realurl you may need to build up two different configuration in >> realurl_conf.php > > realurl is gone. I deleted it from the one site that used it, in order > to make the two consistent. have a look beyond: this was not neccessary >> mostly should be done setting "Use as Root Page" of the rootpage of each >> domain >> (Page edit >> -> Tab /Behaviour\ >> -> *Miscellaneous* >> "Use as Root Page" >> [x] Enabled > > This I already did before I did the import, and I have the little globes > showing for each of the root pages in the backend. However, since I > made this individual page at the top, this top page of the imported site > is a 'shortcut' that points to the 'first subpage of the current page', > i.e. the root page of the imported site. The root page of the imported > site is also a 'shortcut' that points to 'selected page', as in the > original site. Is this ok? > Example: > > globe - root page of first site > globe - top page of imported site (tested with its own simple template, > but now a 'shortcut' to the 'first subpage of the current page' > > root page of the imported site (a 'shortcut' pointing to 'selected > page') > >underlying pages, etc. sounds ok > >> and have you set this typoscript: >> config.typolinkCheckRootline = 1 >> config.typolinkEnableLinksAcrossDomains = 1 > > This fixed something!! Now when I click on a link in the imported site > that points to the other site, it takes me to the other site! That is > progress. Of course, I still don't see any menu items for the imported > site.... > >> maybe you defined your menus as kind 'directory' and the value is not >> correct? > > The menus may be defined as directory, see the template for the imported > site: > > > config.spamProtectEmailAddresses = 1 > config.linkVars = L > config.sys_language_uid = 1 > config.language = en > config.locale_all = en_US > config.xhtml_cleaning = all > > ### realurl ### > config.simulateStaticDocuments = 0 > config.baseURL = http://localhost > #config.tx_realurl_enable = 1 > prefixLocalAnchors = all here you decide whether you will use realurl for this domain or not you could configure individually: config.tx_realurl_enable = 1/0 config.simulateStaticDocuments = 0/1 > config.typolinkCheckRootline = 1 > config.typolinkEnableLinksAcrossDomains = 1 > > page = PAGE > page { > typeNum = 0 > config.index_enable = 1 > config.doctype = xhtml_trans > config.xmlprologue = none > # config.xhtml_cleaning = all > config.metaCharset = UTF-8 > config.additionalHeaders = Content-Type:text/html;charset=UTF-8 > config.disablePrefixComment = 1 > config.disableImgBorderAttr = 1 > config.inlineStyle2TempFile = 1 > config.pageTitleFirst = 1 > > includeCSS { > file1 = fileadmin/css/styles.css > file2 = fileadmin/css/navigation.css > file3 = fileadmin/css/divs-positionieren.css > file4 = fileadmin/css/tt_news.css > } > > # includeJS { > # file1 = fileadmin/js/ie-hover-patch.js > # } > > bodyTag = > meta.AUTHOR = Transcending Tradition > meta.keywords.field = keywords > meta.description.field = abstract > 10 = TEMPLATE > 10.template = FILE > 10.template.file = fileadmin/templates/homepage.html > 10.workOnSubpart = DOKUMENT > } > > page { 10.marks { > LOGO < tmp.LOGO > METANAVI < tmp.METANAVI > NAVIGATION = HMENU > NAVIGATION { > special = directory > special.value = 4 > #excludeUidList = 6 at least the first (uncommented value) should be adapted at the import. otherwise (a value 4 does not sound like adapted): set it by hand to the parent page of your menu pages. > 1 = TMENU > 1 { expAll = 1 > wrap =
      |
    > noBlur = 1 > NO = 1 > NO { > wrapItemAndSub =
  • |
  • > stdWrap.htmlSpecialChars = 1 > ATagTitle.field = title > } > ACT <.NO > ACT.ATagParams = class="active" > } > } > # LANGUAGES < tmp.LANGUAGES > CONTENT = CONTENT > CONTENT { table = tt_content select.orderBy = sorting > select.where = colPos = 0 > } } # Ende marks > } # Ende page > a small note to tmp.*-Objects: use temp.* it will make your page-generation a little bit faster. tmp objects stay active in the php-array representation of TS, while rendering the page and consume memory without being really used for rendering temp.* will be deleted before rendering if you use objects while rendering (e.g. referenced objects) you may use lib.* to show the further usage. bernd -- http://www.pi-phi.de/cheatsheet.html From kaufmann at dwwd.ch Mon Sep 1 13:48:11 2014 From: kaufmann at dwwd.ch (Stefan Kaufmann) Date: Mon, 01 Sep 2014 13:48:11 +0200 Subject: [TYPO3-english] felogin working only after password reset in 6.2.4, possible bug? In-Reply-To: References: Message-ID: On 30/August/2014 9:25 PM, Stefan Kaufmann wrote: > Hi list, > > I am having trouble to get felogin to work properly with TYPO3 6.2.4 > > To register a user I use datamints_feuser. Registration works like a > charm. fe_user is created, confirmation e-mails are sent. When trying to > login, nothing happens. If resetting the password through the reset > password function, the login works, at least as long as staying in the > same browser window. > > The same problem also occurs on another (clean) installation with TYPO3 > 6.2.4. > > Using the same setup in a TYPO3 6.1.0 installation, all works normal. > > Makes me think that this could be a bug. Anyone having observed the same? > > Thanks for feedback, > Stefan Found the error I made on the clean system, so no bug! Issue persits on the other site. It ssems to be a conflict somewhere. Any suggestions welcome! Stefan From kraftb at think-open.at Mon Sep 1 18:27:04 2014 From: kraftb at think-open.at (Bernhard Kraft) Date: Mon, 01 Sep 2014 18:27:04 +0200 Subject: [TYPO3-english] print_r worries Message-ID: Hi, Until 6.2 and extbase have come I used "print_r" for debugging. Since then I get a "memory exhausted" almost anytime I use "print_R" on some extbase object or any object/array containing an extbase powered object. Could someone explain to me why 512MB of memory are not sufficient for a simple print_r? greetings, Bernhard From tntprograms at gmail.com Mon Sep 1 18:55:18 2014 From: tntprograms at gmail.com (Nemanja Todic) Date: Mon, 01 Sep 2014 18:55:18 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__print=5Fr_worries?= References: Message-ID: Hello, It has something to do with lazyLoading and recursively linked objects in Extbase. There are two solutions IMO: * Don't print_r on object collection. Iterate through the collection and print_r only one object at the time. * Go pro and install debugger like xDebug or any other. It will make your debugging far more easier. http://docs.typo3.org/typo3cms/ExtbaseFluidBook/1-Installation/5-debugging-with-xdebug.html Regards From ps at mail2vip.com Mon Sep 1 21:46:51 2014 From: ps at mail2vip.com (Peter Saarsteedt) Date: Mon, 01 Sep 2014 21:46:51 +0200 Subject: [TYPO3-english] =?utf-8?q?_install_typo3_for_multi_domains_on_a_N?= =?utf-8?b?QVM/?= Message-ID: Hi, I see that typo3 can handle multiple domains from one installation. Is it possible to install typo3 on a local NAS and to admin multiple domains on a Internet Server? (Available NAS Servers are QNAP an Synology). Our Server Admin says that typo3 needs a VPN Server (According to the requirements of the Application, we cannot provide you the links in the shared server, apart from that we need to give special permissions for the few folders. So please choose a vps server for such apps.) Is this true? The idea is to run typo3 on our local NAS to admin the domains from heare ... is this possible? Best regards, Peter From jigal.van.hemert at typo3.org Mon Sep 1 22:33:21 2014 From: jigal.van.hemert at typo3.org (Jigal van Hemert) Date: Mon, 01 Sep 2014 22:33:21 +0200 Subject: [TYPO3-english] Can't login to Install Tool, want to upgrade from 4.5.5 to 6.2 In-Reply-To: References: Message-ID: Hi, On 1-9-2014 8:21, Rikard Svenningsen wrote: > I don't think this will ever be resolved on my installation, so I will > close down on this subject, and move on. > Thanks to everyone trying to help. Just encountered the problem on a fresh 6.2.4 installation today. The weird thing is that the server contains two installations (both fresh 6.2.4) and only one of them is affected. In the other installation the Install Tool password could be changed by pasting the salted hash in LocalConfiguration.php, but this particular installation simply refuses to work. No extra extensions installed yet, no introduction package, just the core. I'll have to investigate together with the sysadmin to figure out what's happening here. Will report here once the issue is found. -- Jigal van Hemert TYPO3 CMS Active Contributor TYPO3 .... inspiring people to share! Get involved: typo3.org From jigal.van.hemert at typo3.org Mon Sep 1 22:43:26 2014 From: jigal.van.hemert at typo3.org (Jigal van Hemert) Date: Mon, 01 Sep 2014 22:43:26 +0200 Subject: [TYPO3-english] print_r worries In-Reply-To: References: Message-ID: Hi, On 1-9-2014 18:27, Bernhard Kraft wrote: > Until 6.2 and extbase have come I used "print_r" for debugging. Since > then I get a "memory exhausted" almost anytime I use "print_R" on some > extbase object or any object/array containing an extbase powered object. Extbase and fluid have something better: \TYPO3\CMS\Extbase\Utility\DebuggerUtility::var_dump() This produces a formatted output of the data/object with lots of extra information and expandable items. -- Jigal van Hemert TYPO3 CMS Active Contributor TYPO3 .... inspiring people to share! Get involved: typo3.org From a.joensson at web.de Mon Sep 1 23:13:05 2014 From: a.joensson at web.de (Axel Joensson) Date: Mon, 1 Sep 2014 23:13:05 +0200 Subject: [TYPO3-english] Update 4.5.35 to 6.2.4: CoolURI Message-ID: Hello, I am updating a productive site running with 4.5.35 to 6.2.4 by having it cloned into a subdomain, it is already running almost smooth, except for two issues, here comes the first: It is a five languages site, "de" (German) is defined as standard language (L = 0). All other languages have directories "simulated" by CoolURI like example.com/en/index.html, only L0 as standard runs directly under example.com/index.html. Problem: The links in the language menue from *other* languages to the German standard language pages are always wrong, they point to a file with the name in *their* language instead of the German file name. Only as long as moving only in the German tree, everything is fine. But after clicking to one of those links from other languages to German pages (with wrong names), in the CoolURI cache the German pages appear double: once just as id=5 and with their given resource name, which is the desired behaviour I know from 4.5.35, but another time as L=0&id=5 with the wrong name, depending on the language they were clicked from. What is the reason? Here are relevant parts of the CoolURIConf.xml: .html 1 1 1 1 0 365 0 .... subtitle,nav_title,title id 0 tx_cooluri->getPageTitle .... .... L 0 1 2 3 4 L As the language menu from the TS Setup may be a factor, too, here it comes: temp.langMenu = HMENU temp.langMenu { wrap =
    |
    special = language special.value = 0,1,2,3,4 special.normalWhenNoLanguage = 0 1 = TMENU 1 { # Normal link: NO = 1 NO.allWrap = || | || | || | || | || | || NO.wrapItemAndSub = | NO.stdWrap.setCurrent = Deutsch || English || [asian] || [asian] || [asian] NO.stdWrap.current = 1 # Present lang: ACT < .NO ACT = 1 ACT.wrapItemAndSub = | ACT.doNotLinkIt = 1 # Lang. unavailable: USERDEF1 < .NO USERDEF1 = 1 USERDEF1.doNotLinkIt = 1 } } Any ideas or hints for me? TIA, Axel From a.joensson at web.de Mon Sep 1 23:13:24 2014 From: a.joensson at web.de (Axel Joensson) Date: Mon, 1 Sep 2014 23:13:24 +0200 Subject: [TYPO3-english] Update 4.5.35 to 6.2.4: Internal resource links Message-ID: Hello, I am updating a productive site running with 4.5.35 to 6.2.4 by having it cloned into a subdomain, it is already running almost smooth, except for two issues, here comes the second: Some files in various fileadmin directories are linked from some pages, for example vCards as *.vcf files, or PDFs. While in the past I used something like , after the upgrade I find such resources linked as e.g. . That's basically fine, as I usually happen know which files are linked wherefrom. But if I didn't, which may happen, I don't know any way to find out which one from the fileadmin assets may be file:105. Even looking into the per-file info does not help, the file id is not showing up there. How or where can I identify a file asset by that number, if necessary? TIA, Axel From paulwwarner at yahoo.com Mon Sep 1 23:45:06 2014 From: paulwwarner at yahoo.com (Paul Warner) Date: Mon, 01 Sep 2014 23:45:06 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_yet_another_gallery_=28yag=29_up?= =?utf-8?q?grade_problems?= References: Message-ID: Hi, Yag 1.5 works for me in the typo3 4.5.34 installation. Then I upgraded to 4.7, and upgraded yag and my other extensions. Yag went to version 3.2.7. I had to create a yag system folder under my gallery page, and I updated the database, which moved the images into the sysfolder. This looks similar to the pictures and instructions on http://docs.typo3.org/typo3cms/extensions/yag/2.5.3/manual.html#__RefHeading__9838_657243085 When I click on the 'Gallery' page, a message appears 'This page is not marked as a YAG folder.' However, it is not a folder, but a page. And I just created a sysfolder underneath this page to hold the images. So I am confused. When I click on the sysfolder, i.e. yag storage folder, then I get the same error message I got before I hacked the code in /ext/yag/Classes/Domain/ImageProcessing/Typo3Processor.php: "#1393382624: The result image of the image processing was not moved from the creation path ... to the expected target path ..." And in the frontend, I get no images listed, I get only the link 'Container' that goes nowhere... I thought if I step through it carefully in this upgrade, where it broke before, I could find the problem and fix it. However, it seems to be broken exactly as it was before. :-( And the same hack brings the backend back, including images and all functionality. But with the sysfolder, and not the Gallery page above it. Any ideas? I would be very grateful for any hints or ideas... Best regards, Paul From blueduck at gmx.net Tue Sep 2 09:31:24 2014 From: blueduck at gmx.net (Stefano Kowalke) Date: Tue, 02 Sep 2014 09:31:24 +0200 Subject: [TYPO3-english] print_r worries In-Reply-To: References: Message-ID: Hi Berhard, do you use PHPStorm as editor? Stefano From xavier at typo3.org Tue Sep 2 09:54:06 2014 From: xavier at typo3.org (Xavier Perseguers) Date: Tue, 02 Sep 2014 09:54:06 +0200 Subject: [TYPO3-english] Update 4.5.35 to 6.2.4: Internal resource links In-Reply-To: References: Message-ID: Hello Axel, > after the upgrade I find such resources linked as e.g. > . > > That's basically fine, as I usually happen know which files are linked > wherefrom. But if I didn't, which may happen, I don't know any way to > find out which one from the fileadmin assets may be file:105. Even > looking into the per-file info does not help, the file id is not showing > up there. > > How or where can I identify a file asset by that number, if necessary? Have a look at the database table sys_file. Kind regards -- Xavier Perseguers TYPO3 CMS Team Member TYPO3 .... inspiring people to share! Get involved: http://typo3.org From wm at wolfgang-m.de Tue Sep 2 10:09:36 2014 From: wm at wolfgang-m.de (Wolfgang Maschke) Date: Tue, 2 Sep 2014 10:09:36 +0200 Subject: [TYPO3-english] Get rid of page title in mega menu level 2 In-Reply-To: References: Message-ID: Hello, I built a drop down megamenu in 6.2.x with fetching image file, image title and image description. Now I want to get rid of the standard page title in level 2 because it is a double of the image title. ##################### ##### MEGA MENU ##### ##################### lib.navigation.main > lib.navigation.main = COA lib.navigation.main { 10 = HMENU 10 { 1 = TMENU 1 { wrap = expAll = 1 noBlur = 1 NO = 1 NO { ATagTitle.field = abstract // description // title ATagBeforeWrap = 1 linkWrap = | wrap =
  • |
  • wrap.override.cObject = COA wrap.override.cObject { if { value = 4 equals.field = doktype isTrue = 1 isTrue.if { value.data = TSFE:page|uid equals.field = shortcut } } 10 = TEXT 10.value =
  • |
  • } } ACT < .NO ACT { wrap =
  • |
  • } CUR < .ACT IFSUB < .NO IFSUB { doNotLinkIt = 1 allWrap = | wrapItemAndSub.insertData = 1 wrapItemAndSub = } ACTIFSUB < .IFSUB ACTIFSUB { wrapItemAndSub = } CURIFSUB < .ACTIFSUB } 2 < .1 2 { expAll = 1 NO = 1 NO { ATagTitle.field > ATagBeforeWrap > linkWrap > wrapItemAndSub = stdWrap.innerWrap.cObject = FILES stdWrap.innerWrap.cObject { references { table = pages uid.field = uid fieldName = media } renderObj = COA renderObj { 10 = TEXT 10 { # file: title ausgeben stdWrap.data = file:current:title stdWrap.wrap =

    |

    } 20 = IMAGE 20 { # file: image ausgeben file.import.data = file:current:publicUrl file.width = 200 wrap =
    |
    } 30 = TEXT 30 { # file: description ausgeben stdWrap.data = file:current:description stdWrap.wrap =

    |

    } 40 = TEXT 40 { value = ? alle Infos & alle Produkte wrap =

    |

    } } } } ACT < .NO ACT = 1 ACT.ATagParams.dataWrap = title="{field:title}" class="act left-nav-header-new" id="acts" wrap = CUR < .ACT IFSUB > ACTIFSUB > CURIFSUB > } 3 > 4 > } } Any ideas or hints for me? Wolfgang From jan.pascal.maas at hotmail.de Tue Sep 2 10:07:08 2014 From: jan.pascal.maas at hotmail.de (Jan Pascal Maas) Date: Tue, 02 Sep 2014 10:07:08 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_Powermail_form_reset_problems?= References: Message-ID: Does really nobody how to fix it? spent some more days now, no working setups found... From kraftb at think-open.at Tue Sep 2 11:16:24 2014 From: kraftb at think-open.at (Bernhard Kraft) Date: Tue, 02 Sep 2014 11:16:24 +0200 Subject: [TYPO3-english] print_r worries In-Reply-To: References: Message-ID: Hi, On 09/02/2014 09:31 AM, Stefano Kowalke wrote: > do you use PHPStorm as editor? Since '97 I solely use Linux and as editor vim. I tried Eclipse and Netbeans but all those UIs seem to bloated for me and change constantly. You always have to adopt to a changed interface. Tried the "xdebug_var_dump()" which comes with xdebug but this yields the same problems. I will give the DebuggerUtility::var_dump() a try. there is an xdebug interface for vim but I am not very used to it. This could result in a discussion: I think debugging and just doing some print_r's while developing are two different things. Altough I try to use Test-Driven-Development in recent projects in comes out that this approach is quite complicated when extending some existing code. At least harder than for developing something new. greetings, Bernhard From Stephan.Schuler at netlogix.de Tue Sep 2 12:04:00 2014 From: Stephan.Schuler at netlogix.de (Stephan Schuler) Date: Tue, 2 Sep 2014 10:04:00 +0000 Subject: [TYPO3-english] print_r worries In-Reply-To: References: Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Hey there. The hint was not to use anything that prints output but a breakpoint provided by xdebug. Whatever you want to do, you most likely want to "just look a bit around". Besides the one property you currently expose through print_r there are a lot of other things you might want to see. What do you do currently? Adjust print_r until either having found the desired values or having reached $GLOBAL? Since I have an IDE connected to xdebug, I haven't used print_r a single time. What's the reason for print_r at all? Do you need to be reminded about property names or getter and setter methods of your objects? Use proper type hinting and an IDE being aware of that, you most likely can just go on coding with "->[ctrl+space]" without even starting a PHP process. There's nothing better than having an IDE complaining about type incompatible method calls *before* trying to execute that part of a script. Do you want to know about attributes of arrays? Use xdebug and have almost everything in one single view, starting with $GLOBALS[TSFE] if you need to. So really, you should start using xdebug and an IDE that provides you with type hinting. But if you really want to keep using your browser output for debugging (and I call everything debugging that isn't regular production ready requests) you should use: \TYPO3\CMS\Extbase\Utility\DebuggerUtility::var_dump(). Regards, Stephan Schuler Web-Entwickler Telefon: +49 (911) 539909 - 0 E-Mail: Stephan.Schuler at netlogix.de Website: media.netlogix.de - ---------------------------- netlogix MobileDay: 4 Hersteller, 4 L?sungen, 1 Thema Erfahren Sie, welche L?sung im Mobile Device Management f?r Sie die richtige ist. Jetzt anmelden: http://it-training.netlogix.de/leistungen-angebote/events/netlogix-mobileday E-Mails rechtssicher archivieren und bequem verwalten Jetzt MangedArchiveService von Mailstore bis 30.09. buchen und zwei Monate kostenlos testen. Jetzt informieren:http://it-services.netlogix.de/it-security-compliance/e-mail-archivierung/mailstore - ---------------------------- netlogix GmbH & Co. KG IT-Services | IT-Training | Media Neuwieder Stra?e 10 | 90411 N?rnberg Telefon: +49 (911) 539909 - 0 | Fax: +49 (911) 539909 - 99 E-Mail: info at netlogix.de | Internet: http://www.netlogix.de netlogix GmbH & Co. KG ist eingetragen am Amtsgericht N?rnberg (HRA 13338) Pers?nlich haftende Gesellschafterin: netlogix Verwaltungs GmbH (HRB 20634) Umsatzsteuer-Identifikationsnummer: DE 233472254 Gesch?ftsf?hrer: Stefan Buchta, Matthias Schmidt - -----Urspr?ngliche Nachricht----- Von: typo3-english-bounces at lists.typo3.org [mailto:typo3-english-bounces at lists.typo3.org] Im Auftrag von Bernhard Kraft Gesendet: Dienstag, 2. September 2014 11:16 An: typo3-english at lists.typo3.org Betreff: Re: [TYPO3-english] print_r worries Hi, On 09/02/2014 09:31 AM, Stefano Kowalke wrote: > do you use PHPStorm as editor? Since '97 I solely use Linux and as editor vim. I tried Eclipse and Netbeans but all those UIs seem to bloated for me and change constantly. You always have to adopt to a changed interface. Tried the "xdebug_var_dump()" which comes with xdebug but this yields the same problems. I will give the DebuggerUtility::var_dump() a try. there is an xdebug interface for vim but I am not very used to it. This could result in a discussion: I think debugging and just doing some print_r's while developing are two different things. Altough I try to use Test-Driven-Development in recent projects in comes out that this approach is quite complicated when extending some existing code. At least harder than for developing something new. greetings, Bernhard _______________________________________________ TYPO3-english mailing list TYPO3-english at lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english -----BEGIN PGP SIGNATURE----- Version: PGP Universal 3.3.2 (Build 15238) Charset: utf-8 wpUDBQFUBZYSpp0IwsibV8MBCGI3A/9LmSbxq5rrUKcJG3Nft9Cp38/oK5i6iB2b W+0eMhDbTiXkhAhMJ13ezyYX4JhkZu+fO/o6Tiz1jLtOUe4hDrYJRj+8R1lLdtlj dG7ttv5SNxwuCFOgtcGYbcS/Wk8WWwYFEJ7yf+1k3+qNRmPBWsEXK7a8YJzM1Aco HKZMdaomKQ== =xmli -----END PGP SIGNATURE----- From cgroughy at gmx.net Tue Sep 2 12:34:31 2014 From: cgroughy at gmx.net (roughy) Date: Tue, 02 Sep 2014 12:34:31 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_Image_links_in_bootstrap_carouse?= =?utf-8?q?l?= References: Message-ID: Same problem. Any solutions? From a.joensson at web.de Tue Sep 2 13:47:56 2014 From: a.joensson at web.de (Axel Joensson) Date: Tue, 2 Sep 2014 13:47:56 +0200 Subject: [TYPO3-english] Update 4.5.35 to 6.2.4: Internal resource links References: Message-ID: Xavier Perseguers wrote: > Hello Axel, > > > > after the upgrade I find such resources linked as e.g. > > . > > > > That's basically fine, as I usually happen know which files are linked > > wherefrom. But if I didn't, which may happen, I don't know any way to > > find out which one from the fileadmin assets may be file:105. Even > > looking into the per-file info does not help, the file id is not showing > > up there. > > > > How or where can I identify a file asset by that number, if necessary? > > Have a look at the database table sys_file. > > Kind regards Indeed, there are hundreds of items/lines in that table, the "uid" column corresponds to the file:#. So thanks a lot for that hint! But it obviously is done only with files present during update, links I added later stay in the known path format, right? And is there possibly an easier to look up that file:# than using phpmy"insecure"admin, which I banned long ago (my provider offers it in the customer's menu, so I logged in there, but that is eating time)? Like putting a reference into the info field popping up per item in the file module? Probably nobody wants to install phpmyadmin for such purpose ... Kind regards, Axel From a.joensson at web.de Tue Sep 2 13:48:06 2014 From: a.joensson at web.de (Axel Joensson) Date: Tue, 2 Sep 2014 13:48:06 +0200 Subject: [TYPO3-english] Get rid of page title in mega menu level 2 References: Message-ID: Wolfgang Maschke wrote: > Hello, Hi Wolfgang, it's always recommendable to start a new thread for a new question. Regards, Axel From xavier at typo3.org Tue Sep 2 13:58:05 2014 From: xavier at typo3.org (Xavier Perseguers) Date: Tue, 02 Sep 2014 13:58:05 +0200 Subject: [TYPO3-english] Update 4.5.35 to 6.2.4: Internal resource links In-Reply-To: References: Message-ID: Hi, >>> How or where can I identify a file asset by that number, if necessary? >> Have a look at the database table sys_file. >> >> Kind regards > > Indeed, there are hundreds of items/lines in that table, the "uid" > column corresponds to the file:#. So thanks a lot for that hint! > > But it obviously is done only with files present during update, links I > added later stay in the known path format, right? TYPO3 6.x introduced an abstraction layer for files, known as File Abstraction Layer or "FAL", this is what you see here. This concept was known from some TYPO3 4.x users when using the famous extension "DAM". FAL is not a 1-1 replacement but provides a solid foundation for what most DAM users used it for. It's up to the extension authors to change code to use FAL instead of old format. Both are supported so no, not every link to file will use this new format. > And is there possibly an easier to look up that file:# than using > phpmy"insecure"admin, which I banned long ago (my provider offers it in > the customer's menu, so I logged in there, but that is eating time)? > Like putting a reference into the info field popping up per item in the > file module? Probably nobody wants to install phpmyadmin for such > purpose ... What is exactly the use case you need to look for those references manually? If you are a "user", you should not need to care at all about the internal format, TYPO3 should show you wizards and controls to deal with files and this should be transparent. If you are an integrator and willing to use those link with TypoScript, there are new ways of creating links to FAL references, just check out the TSref. If you are a developer, then you should use the FAL API, unfortunately currently not extensively documented. Kind regards -- Xavier Perseguers TYPO3 CMS Team Member TYPO3 .... inspiring people to share! Get involved: http://typo3.org From martinbraun at gmx.net Tue Sep 2 14:06:43 2014 From: martinbraun at gmx.net (Martin Braun) Date: Tue, 02 Sep 2014 14:06:43 +0200 Subject: [TYPO3-english] =?utf-8?q?_Cannot_activate_extension__in_extensio?= =?utf-8?q?n_manager?= Message-ID: Hi all, I've been looking for a solution to this problem allover the web but couldn't find anything. When clicking on an extension in extension manager it is not activated but the list is reloaded and the extension remains inactive. When installing a new extension from TER it becomes visible in the extension list but remains inactive. I'm running Typo 6.1.9 on Ubuntu server 14.04. I did not run any installation script but copied the installation files (filesystem and database) directly from another machine and imported the mysql-dump via phpmyadmin. I've checked that: - typo3conf and typo3conf/ext directories have owner www-data:www-data and have access rights 775 - LocalConfiguration.php has has owner www-data:www-data access rights right 664. Is there any way to debug this problem any further? no error messages are displayed thanks for your help, Martin From a.joensson at web.de Tue Sep 2 14:11:57 2014 From: a.joensson at web.de (Axel Joensson) Date: Tue, 2 Sep 2014 14:11:57 +0200 Subject: [TYPO3-english] Update 4.5.35 to 6.2.4: Internal resource links References: Message-ID: Hi Xavier, Xavier Perseguers wrote: > What is exactly the use case you need to look for those references > manually? If you are a "user", you should not need to care at all about > the internal format, TYPO3 should show you wizards and controls to deal > with files and this should be transparent. If you are an integrator and > willing to use those link with TypoScript, there are new ways of > creating links to FAL references, just check out the TSref. If you are a > developer, then you should use the FAL API, unfortunately currently not > extensively documented. I think it may also be necessary for editor-users to identify a resource without external (and questionable) tools, so, for reasons of transparency it may make sense to offer them a simple to do so. But I will have a look into TSref and check out the FAL API. Thanks for your support! Kind regards, Axel From maulikbhojani4444 at gmail.com Tue Sep 2 14:17:21 2014 From: maulikbhojani4444 at gmail.com (Maulik Bhojani) Date: Tue, 02 Sep 2014 14:17:21 +0200 Subject: [TYPO3-english] =?utf-8?q?_After_upgrading_TYPO_4=2E5_to_6=2E2_Fi?= =?utf-8?q?le_Links_is_not_working_in_frontend_module?= Message-ID: Dear SIr, After upgrading TYPO version 4.5 to 6.2 file_links is not working in frontend module. FAL Migration is applied into Backend module but in front end side its not showing me all media. Can you please suggests me what i have to do ? Thanks, Jainish From shishangiya.yogesh at gmail.com Tue Sep 2 14:23:21 2014 From: shishangiya.yogesh at gmail.com (yogesh shishangiya) Date: Tue, 02 Sep 2014 14:23:21 +0200 Subject: [TYPO3-english] =?utf-8?q?_Add_Custom_Class_to_menu_all_li_tag?= Message-ID: Hi , I create menu and its working successfully. now i want to add custom style to my every li of first level so i add class to like below. lib.header_top_right = COA lib.header_top_right { 10 = HMENU 10 { wrap = entryLevel = 0 1 = TMENU 1 { expAll = 1 wrap = target = _top NO { wrapItemAndSub =
  • |
  • |*|
  • |
  • |*|
  • |
  • |*|
  • |
  • |*|
  • |
  • stdWrap.wrap = |? } ACT < .NO ACT = 1 CUR < .NO CUR = 1 CUR { stdWrap.wrap = |? } } 2 = TMENU 2 { expAll = 1 wrap =
      |
    NO { wrapItemAndSub =
  • |
  • } } 3 = TMENU 3 { expAll = 1 wrap =
      |
    target = _top NO { wrapItemAndSub =
  • |
  • } } } } But Problem occured first class of li apply to first and second apply to still before last. and last menu get third li tag class .. Can any one know right method for it ? what mistake i done ? From typo3.lists at 2014.trash.schams.net Tue Sep 2 14:48:07 2014 From: typo3.lists at 2014.trash.schams.net (Michael Schams) Date: Tue, 02 Sep 2014 22:48:07 +1000 Subject: [TYPO3-english] Cannot activate extension in extension manager In-Reply-To: References: Message-ID: On 02/09/14 22:06, Martin Braun wrote: > When clicking on an extension in extension manager it is not activated > but the list is reloaded and the extension remains inactive. When > installing a new extension from TER it becomes visible in the extension > list but remains inactive. Make sure, typo3temp directory and all sub-directories are read/writable by the web server user (e.g. www-data) as well as typo3conf directory and all sub-directories. > Is there any way to debug this problem any further? no error messages > are displayed Anything in the Apache log files? Anything in TYPO3 Logs (sys_log)? Cheers Michael From a.joensson at web.de Tue Sep 2 15:11:02 2014 From: a.joensson at web.de (Axel Joensson) Date: Tue, 2 Sep 2014 15:11:02 +0200 Subject: [TYPO3-english] Solved [was: Update 4.5.35 to 6.2.4: CoolURI] References: Message-ID: Axel Joensson wrote: > Problem: The links in the language menue from *other* languages to the > German standard language pages are always wrong, they point to a file > with the name in *their* language instead of the German file name. I was pointed to a fix repairing this behaviour, which will be included in one of the coming updates. A. From martinbraun at gmx.net Tue Sep 2 15:41:50 2014 From: martinbraun at gmx.net (Martin Braun) Date: Tue, 02 Sep 2014 15:41:50 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__Cannot_activate_extension_in_ex?= =?utf-8?q?tension_manager?= References: Message-ID: Hello Michael, thank you for your quick reply. Unfortunately I think there must be something else that is going wrong here. > Make sure, typo3temp directory and all sub-directories are read/writable > by the web server user (e.g. www-data) as well as typo3conf directory > and all sub-directories. [...] drwxrwxr-x 4 www-data www-data 4096 Aug 29 23:15 typo3conf drwxrwxr-x 16 www-data www-data 20480 Sep 2 15:13 typo3temp [...] > > > Is there any way to debug this problem any further? no error messages > > are displayed > > Anything in the Apache log files? Anything in TYPO3 Logs (sys_log)? I've checked /var/log/apache2/error.log and sys_log - everything seems ok. From shishangiya.yogesh at gmail.com Tue Sep 2 16:03:36 2014 From: shishangiya.yogesh at gmail.com (yogesh shishangiya) Date: Tue, 02 Sep 2014 16:03:36 +0200 Subject: [TYPO3-english] =?utf-8?q?_Unable_to_Get_Page_alias_in_menu_typo_?= =?utf-8?q?script_for_first_level?= Message-ID: Hello , I am Trying to get page alias in menu typo script so i can add as class and all custom style to my every li of first level menu. but i cant able to get page alias or proper method to how get it ? 10 = HMENU 10 { wrap = entryLevel = 0 1 = TMENU 1 { expAll = 1 wrap = target = _top NO { wrapItemAndSub =
  • |
  • stdWrap.wrap = |? } ACT < .NO ACT = 1 CUR < .NO CUR = 1 CUR { stdWrap.wrap = |? } } Any one have idea how can make it possible or what i need to make right for it ... Thanks in adavance. From wm at wolfgang-m.de Tue Sep 2 16:38:33 2014 From: wm at wolfgang-m.de (Wolfgang Maschke) Date: Tue, 2 Sep 2014 16:38:33 +0200 Subject: [TYPO3-english] Get rid of page title in mega menu level 2 In-Reply-To: References: Message-ID: thx for your hint. It's weird, because I thaught I had. When writing to the mailing list with a new subject. sorry for that? regards Wolfgang Am 02.09.2014 um 13:48 schrieb Axel Joensson: Wolfgang Maschke wrote: > Hello, Hi Wolfgang, it's always recommendable to start a new thread for a new question. Regards, Axel _______________________________________________ TYPO3-english mailing list TYPO3-english at lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english From wm at wolfgang-m.de Tue Sep 2 16:40:11 2014 From: wm at wolfgang-m.de (Wolfgang Maschke) Date: Tue, 02 Sep 2014 16:40:11 +0200 Subject: [TYPO3-english] =?utf-8?q?_Get_rid_of_page_title_in_mega_menu_lev?= =?utf-8?q?el_2?= Message-ID: Hello, I built a drop down megamenu in 6.2.x with fetching image file, image title and image description. Now I want to get rid of the standard page title in level 2 because it is a double of the image title. ##################### ##### MEGA MENU ##### ##################### lib.navigation.main > lib.navigation.main = COA lib.navigation.main { 10 = HMENU 10 { 1 = TMENU 1 { wrap = expAll = 1 noBlur = 1 NO = 1 NO { ATagTitle.field = abstract // description // title ATagBeforeWrap = 1 linkWrap = | wrap =
  • |
  • wrap.override.cObject = COA wrap.override.cObject { if { value = 4 equals.field = doktype isTrue = 1 isTrue.if { value.data = TSFE:page|uid equals.field = shortcut } } 10 = TEXT 10.value =
  • |
  • } } ACT < .NO ACT { wrap =
  • |
  • } CUR < .ACT IFSUB < .NO IFSUB { doNotLinkIt = 1 allWrap = | wrapItemAndSub.insertData = 1 wrapItemAndSub = } ACTIFSUB < .IFSUB ACTIFSUB { wrapItemAndSub = } CURIFSUB < .ACTIFSUB } 2 < .1 2 { expAll = 1 NO = 1 NO { ATagTitle.field > ATagBeforeWrap > linkWrap > wrapItemAndSub = stdWrap.innerWrap.cObject = FILES stdWrap.innerWrap.cObject { references { table = pages uid.field = uid fieldName = media } renderObj = COA renderObj { 10 = TEXT 10 { # file: title ausgeben stdWrap.data = file:current:title stdWrap.wrap =

    |

    } 20 = IMAGE 20 { # file: image ausgeben file.import.data = file:current:publicUrl file.width = 200 wrap =
    |
    } 30 = TEXT 30 { # file: description ausgeben stdWrap.data = file:current:description stdWrap.wrap =

    |

    } 40 = TEXT 40 { value = ? alle Infos & alle Produkte wrap =

    |

    } } } } ACT < .NO ACT = 1 ACT.ATagParams.dataWrap = title="{field:title}" class="act left-nav-header-new" id="acts" wrap = CUR < .ACT IFSUB > ACTIFSUB > CURIFSUB > } 3 > 4 > } } Any ideas or hints for me? Wolfgang From riccardo.decontardi at bhuman.it Tue Sep 2 21:07:08 2014 From: riccardo.decontardi at bhuman.it (Riccardo De Contardi) Date: Tue, 02 Sep 2014 21:07:08 +0200 Subject: [TYPO3-english] toctoc_comments and news extension Message-ID: Hi everyone Can someone help me in configuring the toctoc_comments extension to work together with news (not tt_news) extension? I must be doing something wrong but I don't know what I use TYPO3 6.2.4 and the latest version of both extensions from TER my pagetree is something like: Home[ID=1] | +-news[ID=3] | | | +-Detail page[ID=4] | +-News folder[ID=5] +-Comments folder[ID=6] I'd like my website users to comment each news in the detail page :) In ts constants I added plugin.tx_toctoccomments_pi1.storagePid=6 In this folder I added a record "plugin to table map" with this values: Plugin:news Table: tx_news_domain_model_news Optional URL parameter: tx_news_pi1 The other fields are empty In the detail page [ID=4] I added a comments plugin with the following: Mode: normal Triggering prefix: news (the record "plugin to table map" mentioned before all other fields are empty or left with their default value. But... this way nothing is rendered on frontend! :( Am I forgetting something or doing something wrong? Thank you for your answers and best regards -- -------------------------------------------- Riccardo De Contardi ? TYPO3 Certified Integrator B Human Srl - www.bhuman.it Corso di Porta Nuova, 46 - 20121 - Milano TEL +39-02-20.23.271 - FAX +39-02-20.240.561 -------------------------------------------- From gu-jonss at online.no Tue Sep 2 21:13:52 2014 From: gu-jonss at online.no (Gunnar Jonsson) Date: Tue, 02 Sep 2014 21:13:52 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_Image_links_in_bootstrap_carouse?= =?utf-8?q?l?= References: Message-ID: I installed the extension Colorbox (jQuery lightbox) to solve the problem. Regards, Gunnar Jonsson From info at bednarik.org Tue Sep 2 23:18:45 2014 From: info at bednarik.org (Jan Bednarik) Date: Tue, 02 Sep 2014 23:18:45 +0200 Subject: [TYPO3-english] Export import in 6.2 fails with FAL related exception Message-ID: Hi all, I did standard export from my localhost running 6.2 and imported it into 6.2 on server. Unfortunatelly, I'm getting exceptions like No file found for given UID. Metadata can only be retrieved for indexed files. The export contains Flux based website with some content that includes images. I have excluded all references to local files (e.g. from fileadmin/templates/...) from the export. Thanks Jan From t3ng at bernd-wilke.net Wed Sep 3 08:46:54 2014 From: t3ng at bernd-wilke.net (bernd wilke) Date: Wed, 03 Sep 2014 08:46:54 +0200 Subject: [TYPO3-english] Add Custom Class to menu all li tag In-Reply-To: References: Message-ID: Am 02.09.14 14:23, schrieb yogesh shishangiya: > Hi , > > I create menu and its working successfully. now i want to add custom > style to my every li of first level so i add class to like below. [...] > wrapItemAndSub =
  • |
  • |*|
  • class="service">|
  • |*|
  • |
  • |*|
  • class="l">|
  • |*|
  • |
  • [...] > > But Problem occured first class of li apply to first and second apply to > still before last. and last menu get third li tag class .. Can any one > know right method for it ? what mistake i done ? "optionsplit" is not easy to understand. especially the priority of assignment. in case you need a linear asigment from first to last existing element you should use the second level of otionsplit: wrapItemAndSub =
  • |
  • ||
  • |
  • ||
  • |
  • ||
  • |
  • ||
  • |
  • but that solution is basically not a good solution as it is not flexible enough to take care of modifications to the page structure. it would be better to use any page property (e.g. name in lowercase, alias, ...) to use as class inserted automatically. bernd -- http://www.pi-phi.de/cheatsheet.html From t3ng at bernd-wilke.net Wed Sep 3 08:52:08 2014 From: t3ng at bernd-wilke.net (bernd wilke) Date: Wed, 03 Sep 2014 08:52:08 +0200 Subject: [TYPO3-english] Unable to Get Page alias in menu typo script for first level In-Reply-To: References: Message-ID: Am 02.09.14 16:03, schrieb yogesh shishangiya: > Hello , > > I am Trying to get page alias in menu typo script so i can add as class > and all custom style to my every li of first level menu. but i cant able > to get page alias or proper method to how get it ? > [...] > wrapItemAndSub =
  • |
  • > stdWrap.wrap = | class="hr">? [...] > Any one have idea how can make it possible or what i need to make right > for it ... > > Thanks in adavance. wrapItemAndSub has a different behaviour than dataWrap: only dataWrap can replace field values. but you can define wripItemAndSub with cObject, which can use the whole univers of typoscript wrapItemAndSub.cObject = TEXT wrapItemAndSub.cObject { value = | dataWrap =
  • |
  • } bernd -- http://www.pi-phi.de/cheatsheet.html From shishangiya.yogesh at gmail.com Wed Sep 3 11:56:47 2014 From: shishangiya.yogesh at gmail.com (yogesh shishangiya) Date: Wed, 03 Sep 2014 11:56:47 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__Unable_to_Get_Page_alias_in_men?= =?utf-8?q?u_typo_script_for_first_level?= References: Message-ID: Hi Can You Able to Giving me Brief Explanation what are you saying ? From emini1 at o2.pl Wed Sep 3 12:41:24 2014 From: emini1 at o2.pl (BartÅ‚omiej ÅšwiÄ…tek) Date: Wed, 03 Sep 2014 12:41:24 +0200 Subject: [TYPO3-english] =?utf-8?q?_drop_down_breadcrumbs?= Message-ID: Hi, I need to made breadcrumbs with drop down menu after mouseover. To do this I need by breadcrumbs menu put every pages from current level, like this: main page -a --aa --ab ---aba ---abb --ac -b --ba --bb -c this should give me this html for site aba: main page |
    • a
    • b
    • c
    |
    • aa
    • ab
    • ac
    |
    • aba
    • abb
    Now this is my TypoScript: lib.breadcrumbs2 = HMENU lib.breadcrumbs2 { special = rootline special.range = 0|-1 1 = TMENU 1{ NO = 1 NO{ allWrap = ||> } CUR = 1 CUR{ stdWrap.field = title linkWrap = ||> doNotLinkIt = 1 } } } this generate for me only path, without menu. Do you have any ideas? :) From t3ng at bernd-wilke.net Wed Sep 3 15:09:17 2014 From: t3ng at bernd-wilke.net (bernd wilke) Date: Wed, 03 Sep 2014 15:09:17 +0200 Subject: [TYPO3-english] Unable to Get Page alias in menu typo script for first level In-Reply-To: References: Message-ID: Am 03.09.14 11:56, schrieb yogesh shishangiya: > Hi Can You Able to Giving me Brief Explanation what are you saying ? while wrapItemAndSub normaly is no cObject and contain only static text wrapItemAndSub =
  • |
  • you can modify this behaviour with the declaration of wrapitemAndSub.cObject as a cObject of your choice. I choose TEXT to get a clear value and a clear dataWrap but I could have used also a COA: wrapitemAndSub.cObject = COA wrapitemAndSub.cObject { 10 = TEXT 10.value =
  • |
  • } as (nearly) all elements in TYPO3 got stdWrap since 4.6 a cObject might not neccessary at all: wrapItemAndSub = | wrapItemAndSub.stdWrap.dataWrap =
  • |
  • all should result in a replacement of the field placeholder with the field value bernd -- http://www.pi-phi.de/cheatsheet.html From shishangiya.yogesh at gmail.com Wed Sep 3 16:31:20 2014 From: shishangiya.yogesh at gmail.com (yogesh shishangiya) Date: Wed, 03 Sep 2014 16:31:20 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_Unable_to_Get_Page_alias_in_menu?= =?utf-8?q?_typo_script_for_first_level?= References: Message-ID: And Finaly i finding answer NO { wrapItemAndSub = stdWrap.wrap = |? wrapItemAndSub.insertData=1 } Place Inplace of Below My Code and You Can Get navigation tile .and you can use uid for getting page id. From cgroughy at gmx.net Wed Sep 3 16:42:10 2014 From: cgroughy at gmx.net (roughy) Date: Wed, 03 Sep 2014 16:42:10 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_Image_links_in_bootstrap_carouse?= =?utf-8?q?l?= References: Message-ID: How do you embed the pictures with this extension? As "Images only"? From christian.tauscher at media-distillery.de Wed Sep 3 17:57:15 2014 From: christian.tauscher at media-distillery.de (Christian Tauscher) Date: Wed, 03 Sep 2014 17:57:15 +0200 Subject: [TYPO3-english] fluidcontent, vhs: and v:content.resources.fal Message-ID: Hello. I'd like to use this Method from vhs: http://fluidtypo3.org/viewhelpers/flux/development/Field/Inline/FalViewHelper.html How do I read the page.media images? does nothing {result} gives empty or 1 Is there some example howto use this? Of cource I could use TypoScript for this (aktually I do), but I have some caching problems with this solution wich I hope so solve using pure fluid. Thank you, Christian. From mailinglists at energiequant.de Wed Sep 3 18:51:49 2014 From: mailinglists at energiequant.de (Daniel Neugebauer) Date: Wed, 03 Sep 2014 18:51:49 +0200 Subject: [TYPO3-english] XSS vulnerability in weeaar_googlesitemap? Message-ID: Hi! I just got the note that weeaar_googlesitemap is supposed to be vulnerable to cross-site scripting [1]. Unfortunately there are no details if that vulnerability only affects backend or also frontend and if it is exploitable through other means than the PAGE TLO configured in TypoScript (eID maybe?). Can anyone share some more details to assess the risk of keeping that extension running despite the known vulnerability? Thanks, Daniel [1] http://typo3.org/teams/security/security-bulletins/typo3-extensions/typo3-ext-sa-2014-010/ From atul_shin at yahoo.com Wed Sep 3 19:13:10 2014 From: atul_shin at yahoo.com (atul shinh) Date: Wed, 03 Sep 2014 19:13:10 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__FAL_feature_request?= References: Message-ID: I have found a solution for this. I had to change the plugin code to use new tables related to files in TYPO3 6.2. However do not found how to create categories via TYPO3 interface. Also found that how to create these categories. One can create new categories using List > Root page > Create new record and create categories which can be linked to any table. Its like inbuilt tagging system. Very good feature. From atul_shin at yahoo.com Wed Sep 3 19:20:25 2014 From: atul_shin at yahoo.com (atul shinh) Date: Wed, 03 Sep 2014 19:20:25 +0200 Subject: [TYPO3-english] =?utf-8?q?_Forms_issue_with_old_plugins_in_TYPO3_?= =?utf-8?b?Ni4yLjM=?= Message-ID: Hi All, I upgraded from TYPO3 4.5.25 to TYPO3 6.2.3. I had certain custom extensions and BT Simple Contact plugin working on old version but after upgrade the BT contact plugin and custom plugin forms have issue. As soon as I submit the forms, I get a page not found error. I have been able to find a workaround but not the root cause of this issue. The plugin forms use input names as EXT_KEY[name_of_field] and if I make it simple string the forms work but not with multi dimensional inputs. Does any body has any idea what needs to be done? I hope some code changes are required but what exactly, I have no clue at the moment. Any sort of hint appreciated. Thanks From peter at function2form.net Wed Sep 3 20:41:09 2014 From: peter at function2form.net (=?UTF-8?B?UGV0ZXIgS8O8aG5sZWlu?=) Date: Wed, 03 Sep 2014 20:41:09 +0200 Subject: [TYPO3-english] drop down breadcrumbs In-Reply-To: References: Message-ID: Hi Bart?omiej (?), Am 03.09.2014 12:41, schrieb Bart?omiej ?wi?tek: > lib.breadcrumbs2 = HMENU > lib.breadcrumbs2 { > special = rootline > special.range = 0|-1 > 1 = TMENU > 1{ > NO = 1 > NO{ > allWrap = ||> I don't understand the leading || and the >>. This shouldn't work at all. Consider trying allwrap = | instead? > } > CUR = 1 > CUR{ > stdWrap.field = title > linkWrap = ||> Same here. > doNotLinkIt = 1 > } > } > } Cheers, Peter -- http://function2form.net http://peter-kuehnlein.net "In the judgement of the elders, a Samurai's obstinacy should be excessive. A thing done with moderation may later be judged insufficient." (Hagakure) From finees at rimamkt.com Wed Sep 3 20:45:04 2014 From: finees at rimamkt.com (Finees Mendez) Date: Wed, 3 Sep 2014 14:45:04 -0400 Subject: [TYPO3-english] Random sort Images with TextImg Message-ID: I have a Text with Images content element with X number of images. Typo3 renders and sorts these images based on filename. I would like to change the ascending sorting to random sorting. How can I sort (1.jpg, 2.jpg, 3.jpg, 4.jpg) randomly to render as (2.jpg, 4.jpg, 1.jpg, 3.jpg), etc. I am looking for some sort of typoscript like tt_content.textpic.image.20.rendering, but nothing seems to work. Any help is greatly appreciated. Finees. From gu-jonss at online.no Wed Sep 3 20:54:29 2014 From: gu-jonss at online.no (Gunnar Jonsson) Date: Wed, 03 Sep 2014 20:54:29 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_Image_links_in_bootstrap_carouse?= =?utf-8?q?l?= References: Message-ID: Yes, I used content element Images. In the content editor in the template you also have some parmeters if you want to change something. Regards, Gunnar Jonsson From emini1 at o2.pl Thu Sep 4 08:11:22 2014 From: emini1 at o2.pl (BartÅ‚omiej ÅšwiÄ…tek) Date: Thu, 04 Sep 2014 08:11:22 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__drop_down_breadcrumbs?= References: Message-ID: You're right with ||, the one | works. With >> - the first is closing span, and the second is mark > between crumbs like this: a > ab > aba So I've now: lib.breadcrumbs = COA lib.breadcrumbs { special = rootline special.range = 0|-1 1 = TMENU 1{ NO = 1 NO{ allWrap = |> } } } but still don't know how to put menu by every crumb... From wm at wolfgang-m.de Thu Sep 4 09:53:23 2014 From: wm at wolfgang-m.de (Wolfgang Maschke) Date: Thu, 4 Sep 2014 09:53:23 +0200 Subject: [TYPO3-english] Get rid of page title in mega menu level 2 In-Reply-To: References: Message-ID: Hi all, really nobody knows something about this issue? Or is there no solution? Can't believe? Wolfgang Am 02.09.2014 um 16:40 schrieb Wolfgang Maschke: Hello, I built a drop down megamenu in 6.2.x with fetching image file, image title and image description. Now I want to get rid of the standard page title in level 2 because it is a double of the image title. ##################### ##### MEGA MENU ##### ##################### lib.navigation.main > lib.navigation.main = COA lib.navigation.main { 10 = HMENU 10 { 1 = TMENU 1 { wrap = expAll = 1 noBlur = 1 NO = 1 NO { ATagTitle.field = abstract // description // title ATagBeforeWrap = 1 linkWrap = | wrap =
  • |
  • wrap.override.cObject = COA wrap.override.cObject { if { value = 4 equals.field = doktype isTrue = 1 isTrue.if { value.data = TSFE:page|uid equals.field = shortcut } } 10 = TEXT 10.value =
  • |
  • } } ACT < .NO ACT { wrap =
  • |
  • } CUR < .ACT IFSUB < .NO IFSUB { doNotLinkIt = 1 allWrap = | wrapItemAndSub.insertData = 1 wrapItemAndSub = } ACTIFSUB < .IFSUB ACTIFSUB { wrapItemAndSub = } CURIFSUB < .ACTIFSUB } 2 < .1 2 { expAll = 1 NO = 1 NO { ATagTitle.field > ATagBeforeWrap > linkWrap > wrapItemAndSub = stdWrap.innerWrap.cObject = FILES stdWrap.innerWrap.cObject { references { table = pages uid.field = uid fieldName = media } renderObj = COA renderObj { 10 = TEXT 10 { # file: title ausgeben stdWrap.data = file:current:title stdWrap.wrap =

    |

    } 20 = IMAGE 20 { # file: image ausgeben file.import.data = file:current:publicUrl file.width = 200 wrap =
    |
    } 30 = TEXT 30 { # file: description ausgeben stdWrap.data = file:current:description stdWrap.wrap =

    |

    } 40 = TEXT 40 { value = ? alle Infos & alle Produkte wrap =

    |

    } } } } ACT < .NO ACT = 1 ACT.ATagParams.dataWrap = title="{field:title}" class="act left-nav-header-new" id="acts" wrap = CUR < .ACT IFSUB > ACTIFSUB > CURIFSUB > } 3 > 4 > } } Any ideas or hints for me? Wolfgang _______________________________________________ TYPO3-english mailing list TYPO3-english at lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english From katja.lampela at lieska.net Thu Sep 4 09:52:27 2014 From: katja.lampela at lieska.net (Katja Lampela) Date: Thu, 04 Sep 2014 10:52:27 +0300 Subject: [TYPO3-english] introduction package-> text and images->image centering doesn't work Message-ID: Hi, The official bootstrap introduction package doesn't center images ("Position: Above, center" and "Position: Below, center") without adding this to css: .image-center-outer {width:auto;} -- Kind regards, Katja Lampela www.lieska.net From t3ng at bernd-wilke.net Thu Sep 4 10:12:55 2014 From: t3ng at bernd-wilke.net (bernd wilke) Date: Thu, 04 Sep 2014 10:12:55 +0200 Subject: [TYPO3-english] Get rid of page title in mega menu level 2 In-Reply-To: References: Message-ID: Am 04.09.14 09:53, schrieb Wolfgang Maschke: > Hi all, > > really nobody knows something about this issue? > Or is there no solution? Can't believe? > > Wolfgang > > > > Am 02.09.2014 um 16:40 schrieb Wolfgang Maschke: > > Hello, > > I built a drop down megamenu in 6.2.x with fetching image file, image title and image description. > Now I want to get rid of the standard page title in level 2 because it is a double of the image title. if you build an alternative you can disable the std-rendering with doNotShowLink = 1 http://docs.typo3.org/typo3cms/TyposcriptReference/MenuObjects/Tmenuitem/Index.html bernd -- http://www.pi-phi.de/cheatsheet.html From olivier.dobberkau at dkd.de Thu Sep 4 10:19:47 2014 From: olivier.dobberkau at dkd.de (Olivier Dobberkau) Date: Thu, 04 Sep 2014 10:19:47 +0200 Subject: [TYPO3-english] XSS vulnerability in weeaar_googlesitemap? In-Reply-To: References: Message-ID: Am 03.09.14 um 18:51 schrieb Daniel Neugebauer: > Hi! > > I just got the note that weeaar_googlesitemap is supposed to be > vulnerable to cross-site scripting [1]. Unfortunately there are no > details if that vulnerability only affects backend or also frontend and > if it is exploitable through other means than the PAGE TLO configured in > TypoScript (eID maybe?). > > Can anyone share some more details to assess the risk of keeping that > extension running despite the known vulnerability? > > Thanks, > Daniel Its common sense to ask the issuer of the bulletin instead of a public forum. please use security at typo3.org for such questions. Olivier From t3ng at bernd-wilke.net Thu Sep 4 10:36:35 2014 From: t3ng at bernd-wilke.net (bernd wilke) Date: Thu, 04 Sep 2014 10:36:35 +0200 Subject: [TYPO3-english] drop down breadcrumbs In-Reply-To: References: Message-ID: Am 03.09.14 12:41, schrieb Bart?omiej ?wi?tek: > Hi, > > I need to made breadcrumbs with drop down menu after mouseover. To do > this I need by breadcrumbs menu put every pages from current level, like > this: > [...] > this is my TypoScript: > > lib.breadcrumbs2 = HMENU > lib.breadcrumbs2 { > special = rootline > special.range = 0|-1 [...] > this generate for me only path, without menu. Do you have any ideas? :) I don't think that this approach is the correct one. I think you want something like the breadcrumb on http://pi-phi.de/343.html just before the footer "Ihre aktuelle Seitenauswahl: ..." that was an easy configuration as TYPO3 supports you with these dropdowns: temp.rootline_sel = COA temp.rootline_sel { 10 = HMENU 10 { 1 = JSMENU 1 { levels=1 1.showActive=1 1.showFirst = FALSE 1.alwaysLink = 1 2 < .1 2.wrap = >| 3 < .2 4 < .3 5 < .4 6 < .5 7 < .6 8 < .7 } } } [treeLevel = 2] temp.rootline_sel.10.1.levels=2 [global] [treeLevel = 3] temp.rootline_sel.10.1.levels=3 [global] [treeLevel = 4] temp.rootline_sel.10.1.levels=4 [global] [treeLevel = 5] temp.rootline_sel.10.1.levels=5 [global] [treeLevel = 6] temp.rootline_sel.10.1.levels=6 [global] [treeLevel = 7] temp.rootline_sel.10.1.levels=7 [global] [treeLevel = 8] temp.rootline_sel.10.1.levels=8 [global] if you want to build it by your own I would recommend to use the normal HMENU, where you can get all siblings for all pages in the root path. You might get problems as the sublevels get rendered inorder instead of postorder (= render next level _after_ all entries of this level are rendered). this could be arranged with a good CSS or with some JS. Or you build a complex menu in TS where you render each level by its own. bernd -- http://www.pi-phi.de/cheatsheet.html From christian.tauscher at media-distillery.de Thu Sep 4 11:14:42 2014 From: christian.tauscher at media-distillery.de (Christian Tauscher) Date: Thu, 04 Sep 2014 11:14:42 +0200 Subject: [TYPO3-english] flux:field.inline.fal Message-ID: Hello dear flux-Friends On my page tempate I have this field: If I try to select an image I get this error alert: "Wrong configuration in table pages" ??? table pages is correct. Thank you for your help, Christian From jigal.van.hemert at typo3.org Thu Sep 4 11:20:37 2014 From: jigal.van.hemert at typo3.org (Jigal van Hemert) Date: Thu, 04 Sep 2014 11:20:37 +0200 Subject: [TYPO3-english] Can't login to Install Tool, want to upgrade from 4.5.5 to 6.2 In-Reply-To: References: Message-ID: Hi, On 1-9-2014 22:33, Jigal van Hemert wrote: > Just encountered the problem on a fresh 6.2.4 installation today. The > weird thing is that the server contains two installations (both fresh > 6.2.4) and only one of them is affected. In the other installation the > Install Tool password could be changed by pasting the salted hash in > LocalConfiguration.php, but this particular installation simply refuses > to work. It turned out that the server was upgraded from PHP 5.3.x to PHP 5.5.x after installing TYPO3. PHP 5.3 used APC for opcode cache, but also as extbase cache. In PHP 5.5 OPcache is active by default and APC was deactivated in PHP (it's a development machine and a different cache for TYPO3 / extbase will be installed). Because we couldn't login into the Install Tool the setting of APC for extbase caching wasn't removed, but it seems to cause problems when changing the Install Tool password. Solution: 1. Use new Install Tool password in login screen, copy the hash that is displayed 2. Put new hash in LocalConfiguration.php 3. Restart Apache 4. Login with new password into Install Tool -- Jigal van Hemert TYPO3 CMS Active Contributor TYPO3 .... inspiring people to share! Get involved: typo3.org From xavier at typo3.org Thu Sep 4 11:36:33 2014 From: xavier at typo3.org (Xavier Perseguers) Date: Thu, 04 Sep 2014 11:36:33 +0200 Subject: [TYPO3-english] Can't login to Install Tool, want to upgrade from 4.5.5 to 6.2 In-Reply-To: References: Message-ID: Hi, > Because we couldn't login into the Install Tool the setting of APC for > extbase caching wasn't removed, but it seems to cause problems when > changing the Install Tool password. > > Solution: > 1. Use new Install Tool password in login screen, copy the hash that is > displayed > 2. Put new hash in LocalConfiguration.php > 3. Restart Apache > 4. Login with new password into Install Tool Good catch! In fact, modifying a PHP file when having an aggressive opcache leads to no change until the cache has been cleared (or webserver is restarted). -- Xavier Perseguers TYPO3 CMS Team Member TYPO3 .... inspiring people to share! Get involved: http://typo3.org From christian.tauscher at media-distillery.de Thu Sep 4 11:46:11 2014 From: christian.tauscher at media-distillery.de (Christian Tauscher) Date: Thu, 04 Sep 2014 11:46:11 +0200 Subject: [TYPO3-english] flux:field.inline.fal In-Reply-To: References: Message-ID: Am 04.09.2014 um 11:14 schrieb Christian Tauscher: my mistake. Works a s expected. :-) Christian. From admin at webground.pl Thu Sep 4 11:50:30 2014 From: admin at webground.pl (Adrian) Date: Thu, 04 Sep 2014 11:50:30 +0200 Subject: [TYPO3-english] =?utf-8?q?_TYPO3_RealURL_-_defaultToHTMLsuffixOnP?= =?utf-8?q?rev_=3D=3E_0_only_for_YAG_Gallery?= Message-ID: Is it possible to turn of the defaultToHTMLsuffixOnPrev => 1 to defaultToHTMLsuffixOnPrev => 0 but only for YAG Gallery? My url looks like that: example.com/media/gallery/yag/album/ItemList/submitFilter//gallery-name?cHash=6df0e50e026c71ea469960adb4422307.html The chash value will be change, so when google will index this site there will be lots of 301 problems - that's why I need to turn off .html at the end. I insert standard RealURL config for YAG Gallery: 'encodeSpURL_postProc' => array( 'yag' => 'EXT:yag/Classes/Hooks/RealUrlHook.php:user_Tx_Yag_Hooks_RealUrl->encodeSpURL_postProc', ), 'decodeSpURL_preProc' => array( 'yag' => 'EXT:yag/Classes/Hooks/RealUrlHook.php:user_Tx_Yag_Hooks_RealUrl->decodeSpURL_preProc', ), and have defaultToHTMLsuffixOnPrev => 1 for all pages From waldito at gmail.com Thu Sep 4 12:37:42 2014 From: waldito at gmail.com (waldo verdejo) Date: Thu, 04 Sep 2014 12:37:42 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_RealURL_works=2C_but_404_when_lo?= =?utf-8?q?gged_in_at_BE_=2E=2E_why=3F?= References: Message-ID: It did. Yours was the only post in the whole Internet that helped me understand what was going on. Thanks, kind sir for your effort! From rs at danship.dk Thu Sep 4 13:52:11 2014 From: rs at danship.dk (Rikard Svenningsen) Date: Thu, 04 Sep 2014 13:52:11 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__Re=3A__Re=3A__Re=3A__Can=27t_lo?= =?utf-8?q?gin_to_Install_Tool=2C_want_to_upgrade_from_4=2E5=2E5_to_6=2E2?= References: Message-ID: Hi Again I have discovered what the issue was... I have the feeling that I should have known, but I didn't see i come. The plan was to move from an old hosting system to a new hosting system and then upgrade to latest version 6.2.4 To do that without interrupting the daily ues of our web system I made an entry in my local host file in Windows 7. do a ping and check the IP was right. great no problem.... But there was, for some unknown reason when used in my browser, it went on to the old system, I didn't see that, if I have done some network sniffing I would have discovered it. I am very sorry to have taking all that time and support time. But now it works. I can login to the Install tool. Best Regards Rikard Svenningsen. From typo3.lists at 2014.trash.schams.net Thu Sep 4 14:15:36 2014 From: typo3.lists at 2014.trash.schams.net (Michael Schams) Date: Thu, 04 Sep 2014 22:15:36 +1000 Subject: [TYPO3-english] XSS vulnerability in weeaar_googlesitemap? In-Reply-To: References: Message-ID: On 04/09/14 18:19, Olivier Dobberkau wrote: >> I just got the note that weeaar_googlesitemap is supposed to be >> vulnerable to cross-site scripting [1]. Unfortunately there are no >> details if that vulnerability only affects backend or also frontend and >> if it is exploitable through other means than the PAGE TLO configured in >> TypoScript (eID maybe?). >> >> Can anyone share some more details to assess the risk of keeping that >> extension running despite the known vulnerability? > > Its common sense to ask the issuer of the bulletin instead of a public > forum. please use security at typo3.org for such questions. ...but in general: (quote) "The extension author failed in providing a security fix for the reported vulnerability in a decent amount of time. Please uninstall and delete the extension folder from your installation." I would consider following this advice :-) and/or look for alternatives asap. Cheers Michael From wm at wolfgang-m.de Thu Sep 4 15:21:29 2014 From: wm at wolfgang-m.de (Wolfgang Maschke) Date: Thu, 4 Sep 2014 15:21:29 +0200 Subject: [TYPO3-english] Get rid of page title in mega menu level 2 In-Reply-To: References: Message-ID: thx Bernd, but 2.NO.doNotShowLink = 1 is disabling my dropdown. Link should be still there, only text has to go. wolfgang Am 04.09.2014 um 10:12 schrieb bernd wilke: Am 04.09.14 09:53, schrieb Wolfgang Maschke: > Hi all, > > really nobody knows something about this issue? > Or is there no solution? Can't believe? > > Wolfgang > > > > Am 02.09.2014 um 16:40 schrieb Wolfgang Maschke: > > Hello, > > I built a drop down megamenu in 6.2.x with fetching image file, image title and image description. > Now I want to get rid of the standard page title in level 2 because it is a double of the image title. if you build an alternative you can disable the std-rendering with doNotShowLink = 1 http://docs.typo3.org/typo3cms/TyposcriptReference/MenuObjects/Tmenuitem/Index.html bernd -- http://www.pi-phi.de/cheatsheet.html _______________________________________________ TYPO3-english mailing list TYPO3-english at lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english From jigal.van.hemert at typo3.org Thu Sep 4 16:16:41 2014 From: jigal.van.hemert at typo3.org (Jigal van Hemert) Date: Thu, 04 Sep 2014 16:16:41 +0200 Subject: [TYPO3-english] Can't login to Install Tool, want to upgrade from 4.5.5 to 6.2 In-Reply-To: References: Message-ID: Hi, On 4-9-2014 13:52, Rikard Svenningsen wrote: > But there was, for some unknown reason when used in my browser, it went > on to the old system, I didn't see that, if I have done some network > sniffing I would have discovered it. Thanks for reporting back and great that you've find the cause! > I am very sorry to have taking all that time and support time. I happens to most people at some moment :-) -- Jigal van Hemert TYPO3 CMS Active Contributor TYPO3 .... inspiring people to share! Get involved: typo3.org From loek at netcoop.nl Thu Sep 4 16:21:38 2014 From: loek at netcoop.nl (Loek Hilgersom) Date: Thu, 04 Sep 2014 16:21:38 +0200 Subject: [TYPO3-english] Get rid of page title in mega menu level 2 In-Reply-To: References: Message-ID: Hi Wolfgang, There is no standard option for disabling the content of menu items, but you can overwrite it... with nothing, an empty cObject in this case. So just add this: 2.NO.stdWrap.cObject = TEXT or this (the same, but more obvious): 2.NO.stdWrap.cObject = TEXT 2.NO.stdWrap.cObject.value = Hth, Loek On 02-09-14 16:40, Wolfgang Maschke wrote: > Hello, > > I built a drop down megamenu in 6.2.x with fetching image file, image title and > image description. > Now I want to get rid of the standard page title in level 2 because it is a > double of the image title. > > ##################### > ##### MEGA MENU ##### > ##################### > > lib.navigation.main > > lib.navigation.main = COA > lib.navigation.main { > 10 = HMENU > 10 { > 1 = TMENU > 1 { > wrap = > expAll = 1 > noBlur = 1 > NO = 1 > NO { > ATagTitle.field = abstract // description // title > ATagBeforeWrap = 1 > linkWrap = | > wrap =
  • |
  • > wrap.override.cObject = COA > wrap.override.cObject { > if { > value = 4 > equals.field = doktype > isTrue = 1 > isTrue.if { > value.data = TSFE:page|uid > equals.field = shortcut > } > } > 10 = TEXT > 10.value =
  • |
  • > } > } > ACT < .NO > ACT { > wrap =
  • |
  • > } > CUR < .ACT > IFSUB < .NO > IFSUB { > doNotLinkIt = 1 > allWrap = data-toggle="dropdown">| > wrapItemAndSub.insertData = 1 > wrapItemAndSub = > } > ACTIFSUB < .IFSUB > ACTIFSUB { > wrapItemAndSub = > } > CURIFSUB < .ACTIFSUB > } > 2 < .1 > 2 { > expAll = 1 > NO = 1 > NO { > ATagTitle.field > > ATagBeforeWrap > > linkWrap > > wrapItemAndSub = > stdWrap.innerWrap.cObject = FILES > stdWrap.innerWrap.cObject { > references { > table = pages > uid.field = uid > fieldName = media > } > renderObj = COA > renderObj { > 10 = TEXT > 10 { > # file: title ausgeben > stdWrap.data = file:current:title > stdWrap.wrap =

    |

    > } > 20 = IMAGE > 20 { > # file: image ausgeben > file.import.data = file:current:publicUrl > file.width = 200 > wrap =
    |
    > } > 30 = TEXT > 30 { > # file: description ausgeben > stdWrap.data = file:current:description > stdWrap.wrap =

    |

    > } > 40 = TEXT > 40 { > value = ? alle Infos & alle Produkte > wrap =

    |

    > } > } > } > } > > ACT < .NO > ACT = 1 > ACT.ATagParams.dataWrap = title="{field:title}" class="act > left-nav-header-new" id="acts" > wrap = > CUR < .ACT > IFSUB > > ACTIFSUB > > CURIFSUB > > } > 3 > > 4 > > } > } > > Any ideas or hints for me? > Wolfgang From wm at wolfgang-m.de Thu Sep 4 16:52:34 2014 From: wm at wolfgang-m.de (Wolfgang Maschke) Date: Thu, 4 Sep 2014 16:52:34 +0200 Subject: [TYPO3-english] Get rid of page title in mega menu level 2 In-Reply-To: References: Message-ID: Hi Loek, thx a lot. That's it. regards wolfgang Am 04.09.2014 um 16:21 schrieb Loek Hilgersom: Hi Wolfgang, There is no standard option for disabling the content of menu items, but you can overwrite it... with nothing, an empty cObject in this case. So just add this: 2.NO.stdWrap.cObject = TEXT or this (the same, but more obvious): 2.NO.stdWrap.cObject = TEXT 2.NO.stdWrap.cObject.value = Hth, Loek On 02-09-14 16:40, Wolfgang Maschke wrote: > Hello, > > I built a drop down megamenu in 6.2.x with fetching image file, image title and > image description. > Now I want to get rid of the standard page title in level 2 because it is a > double of the image title. > > ##################### > ##### MEGA MENU ##### > ##################### > > lib.navigation.main > > lib.navigation.main = COA > lib.navigation.main { > 10 = HMENU > 10 { > 1 = TMENU > 1 { > wrap = > expAll = 1 > noBlur = 1 > NO = 1 > NO { > ATagTitle.field = abstract // description // title > ATagBeforeWrap = 1 > linkWrap = | > wrap =
  • |
  • > wrap.override.cObject = COA > wrap.override.cObject { > if { > value = 4 > equals.field = doktype > isTrue = 1 > isTrue.if { > value.data = TSFE:page|uid > equals.field = shortcut > } > } > 10 = TEXT > 10.value =
  • |
  • > } > } > ACT < .NO > ACT { > wrap =
  • |
  • > } > CUR < .ACT > IFSUB < .NO > IFSUB { > doNotLinkIt = 1 > allWrap = data-toggle="dropdown">| > wrapItemAndSub.insertData = 1 > wrapItemAndSub = > } > ACTIFSUB < .IFSUB > ACTIFSUB { > wrapItemAndSub = > } > CURIFSUB < .ACTIFSUB > } > 2 < .1 > 2 { > expAll = 1 > NO = 1 > NO { > ATagTitle.field > > ATagBeforeWrap > > linkWrap > > wrapItemAndSub = > stdWrap.innerWrap.cObject = FILES > stdWrap.innerWrap.cObject { > references { > table = pages > uid.field = uid > fieldName = media > } > renderObj = COA > renderObj { > 10 = TEXT > 10 { > # file: title ausgeben > stdWrap.data = file:current:title > stdWrap.wrap =

    |

    > } > 20 = IMAGE > 20 { > # file: image ausgeben > file.import.data = file:current:publicUrl > file.width = 200 > wrap =
    |
    > } > 30 = TEXT > 30 { > # file: description ausgeben > stdWrap.data = file:current:description > stdWrap.wrap =

    |

    > } > 40 = TEXT > 40 { > value = ? alle Infos & alle Produkte > wrap =

    |

    > } > } > } > } > > ACT < .NO > ACT = 1 > ACT.ATagParams.dataWrap = title="{field:title}" class="act > left-nav-header-new" id="acts" > wrap = > CUR < .ACT > IFSUB > > ACTIFSUB > > CURIFSUB > > } > 3 > > 4 > > } > } > > Any ideas or hints for me? > Wolfgang _______________________________________________ TYPO3-english mailing list TYPO3-english at lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english From invisible.kinder at gmail.com Thu Sep 4 18:02:25 2014 From: invisible.kinder at gmail.com (Viktor Livakivskyi) Date: Thu, 04 Sep 2014 19:02:25 +0300 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__fluidcontent=2C_vhs=3A__and_v?= =?utf-8?q?=3Acontent=2Eresources=2Efal?= References: Message-ID: Hi, Christian > I'd like to use this Method from vhs: > > http://fluidtypo3.org/viewhelpers/flux/development/Field/Inline/FalViewHelper.html I think you mean this :) http://fluidtypo3.org/viewhelpers/vhs/master/Content/Resources/FalViewHelper.html > How do I read the page.media images? > > > uid="{page.uid}" /> I may be worng, but s I understand, 'uid' attribute should point not to page.uid, but to sys_file or sys_file_reference uid. Did you try to omit this parameter? From julielabrune83 at hotmail.com Thu Sep 4 18:43:56 2014 From: julielabrune83 at hotmail.com (julie rightplace) Date: Thu, 04 Sep 2014 18:43:56 +0200 Subject: [TYPO3-english] =?utf-8?q?_LDAP_/_SSO_service_configuration?= Message-ID: hi i try to connect my typo3 website to a ldap with the LDAP / SSO Authentication extension. for the connection it's ok but for the ldap_bind i have always a error "Can't contact LDAP server" i'm connected to my ldap with apache directory studio with the same dn, host and port so i don't know where is the probleme best begin 644 ecran.png MB5!.1PT*&@H````-24A$4@```GH```(P"`(```">"U%1`````7-21T(`KLX< MZ0````1G04U!``"QCPO\804````)<$A9[=W?CS397=_QEJ+\"W\8UOO#$(V25H2XX2*^BBR-D"99[ZZ-%&1?)#`7P6.O042!1-FUX9'6AME- MO`8,^SSK9W>F\SUUON=GG:KNF:DSW:?G_5+M>:I.G3I5U7WZ?*9Z'NTS>QD` M`-2T7"Z)6P``ZB)N`0"HCK@%`*`ZXA8`@.I,W/YGH()GGWWVM==>TX$&`->; MB5OY#ZCA^>>?UX$&`->;3(G$+6J19UP=:`!PO'\UED<:R5\\,3LS9 at 90/LKA_\P1_4T=*13=T1(6X!P)(I4>+V M>#&+8U,VN[PE;C'LMW_[MS5I.[*I.R+$+0!8,B7.!E)3:G4F[<(WVM2GWZR! M"VDCK,N:0S+O&O^`6WRT%<0M`%@R)9HODWTH)I$X]/!JC%-X@[ M)FRO'^(6`"R9$@M?)@.3(&X!P)(ID;A%+<0M`%@R)1*WJ.77?_W7=:`!P/4F M4R+_WBVJ>.ZYY[[YS6_J0`.`Z\W$K:X"`(`ZB%L``*HC;@$`J(ZX!0"@.N(6 M`(#J3-R^"0``:B)N`0"HCK@%`*`ZXA8`@.J(6P``JB-N`0"HCK@%`*`ZXA8` M at .J(6P``JB-N`0"HCK@%`*`ZXA8`@.J(6P``JB-N`0"HSL3M/_C54Q86%OU, M`$`%Q"T+BR[ZF0"`"HA;%A9=]#,!`!5L;=R>_;%_H\H=GYG:7 MRS_^P]ZN;5I^Y16]3O''W]J::Y[HU=//!`!4('/4K)NISGZC-_M\Y5:W)_;Z M6=;&++]U]FW=G:=CH8?2B0J+G4!OG?U*5A\O;I(-XLL;W_NKI[_QNE:KXJU= MV=)$W.I%NG=P<]>LX\J_91-=B7XF`*`"F:-6Q:W+/)=/>:;&3SS??B79E?7@ MTG=UXMJ6([.GOQC?57>(;H[O=8_.8;[NMV?I+_I&C_\,="6+#J2I?T+2SP0` M5""3UKIQ6ZP)T:62?O+V:SZ%Z./RZ0\;WENRA7QHLVMG/J7^H/Q#0!<;[IK#*^->*\O?R]#I"LM`#UE]_%[DUVSH MU>9?!L at +U;OFO(UPKV>XT[AE;V^]1/Q,`4(',->>(6S=# M1;.\SFMG7_G#WI37[\%- at ED09HN=B\?:N.DUN9+S[DV?C0JW%A;]D<)?DERA MO*02`,C2R/IV9YBY'39,M1#G&>R:2_2WY>_9ENC MF^Z%\B^1GK%XS6YO=@%95^6]GK]LMVB#@=ZR*[GP/>IG`@`JD)GF'''K\U(# M(YTW\TFPWT/O\-*RUE^2\I-F)-S"V%YW#7[^M8O+DM*UI;-YK]Y?JJ:R;=9_ M-;+*)+WB4USH=,DRU$/_$)?9ML_LFK-0'(M;M^Y?U8O$;?I:Q4MVZKQ]"AWV%NUD>.;UBTZ4B7#JP;T7B%LW at WMZ MK.LJ8_?FD=`M<6S8!MI5'!AI/(1E]'2EEH,]]*)(:[)KSD(QR[S2-8>>QP-U M?*]?M#Y8(VXO<8_ZF0"`"F2FN?B7R3ZB,CX`>M-E84K-%GM(F"O76_R)"MF3 M[753W?'%@(C[W;%%<;+0`^7B2+9]!

    -6]>Y?4.S4^?M"U=RD7O4SP0`5"`SS<7_JM0%&JQ8[,RXLKW[3618 MT at EW;&]OKK?+VI>J3[IQ9/5JTPSA"XGK+GR[N:JC;T=,ERV#+ZE\F^YXO M&;?9NEBYV+DO#\O^TDOE9/H>WVL6 M]^5P-N>67 at 2S2(?EF;U_H.G9[NI'B%W<2V2$.RUVZR\X_:M2Q=-ERU`/>G97 M;R_27\9(%,GFT`!([M*Y/EMTZO?"5Z:R MQ/'9*3]%18L+^_A.T\"0)>O67__0Z?K+4`_9[<1I/1)%LNDZ=)?=N^;"@(G> M^I&]Q=E5SL'O4S`0`5R$RS+?\31YU>"_G$TMZB,=;4 MNZF?"0"H0&;$+8E;^[PR^*S&TM+2?]QL8='/!`!4(%,B_R(0RP3+^M]R;^VB MGPD`J$"FQ9FN`@"`.HA;``"J(VX!`*B.N`4`H#KB%@"`ZHA;``"JJQZW7__- M)][K?.ISG]*5W]>]&_/[6W,EU3SP[N_7-0#`IKFX=?$33!)$VJWK:V,AYT+? MGWC7XU:R]C_^];]&X at +`EC!QZYX_0_38,+I\%&G*/?&;7]>*3>G%[4Z3E/WV M!][YE_?](Q(7`+:$B=LNB/)(E(#*X]>),BO$F%L3NC\]J#M#+_7R-D(O)&^J M+7M[=M//NNH:NULKWCG6>^HGW_)/E[W[? M\O2A-^[\GIL_];=)7`#8!BYND[D^H1-_&EVN>4B%)$)<.(QO9SDU%*C=SH&] MGKL at QS48Z"VKT*VTL>O2-=6:7E>KXC:]<9GK93?^9WO MOO6>OTG6`L`V<'$[.)WKU!_V)UF09T\6%/GN>#N+F/S8\9[SO7UIBU[[I.)2 M]^BVH\-CJZ_42%JM=TA?EK5_\5__%ED+`%MB5=SVLR2I61%%^>YXN]=S>NQX MST.)Y.H#VZ+7?O1*TIKQ*UEEK/70U;K3.^N,_Y7L/5V29IBU[[N"*YHTY2DQ_;N_!10ZW'KC9L>^':2N*LO?W% M[_Z+_T;6`L!V6?E7I30NPG2?Y,>**!I*$;.=[\N.'>^Y=W"O*MWLM4\J+G6/ M;CLZ/-8[LY55#[02^=GZDN=:R5J>:P%@^YBXU:D^FNOM'&^W-0G2G'.S?QX3 M63CDNY-MM^$:9\=F*9;NS3LVTA:CA^<=Z%;:N6N;GROO*CM33[^]64UKDSYD MP_=5NM$8S[4`T`03M^9/-]][/AV,=&\T]:^(HGSWT'8LG'AD;]Z1%1_PQ!-9 MB^@>I*[?P47OT1\8'9++[L0>.GBUZ95$9\I)LI[]Y>^:N+7/M60M`&PK%[=; M0%-F)+60LG$K"UD+`%MN:^*V_[B)56:SF63MG_R?_R0+60L`VVR3<9M]Q3KR MK2F*)&Z%!"U9"P!;;HN^3`8`8%<1MP``5$?<`@!0'7$+`$!UQ"T``-41MP`` M5$?<`@!0G8G;)P$`0$TF;O\(``#49.(6``!4Q>]N`0"HCK@%`*`ZXA8`@.J( M6P``JB-N`0"HCK@%`*`ZXA8`@.J(6P``JB-N`0"HCK@%`*`Z$[<'SWZ!A86% MA86%I=YBXO:7``!`3<0M``#5F;C]Y"<_*6N4E)24E)24E4H3M\\\\\S33S]- M24E)24E)6:DT?````-9FX_44``%"3B=N/ M`P"`FDSUFU+]VHM1O:V*)'NE?/$U6W_S:Y\;/JK;&1]% M24E)24EY+4H)P=FCCS[ZR"./A/*S7S4I^>J7HWJM>M'6O/AJ%YY?_:P_RM9T MI%'Q*-LDVDM)24E)27E=2DG`V<$G0``7!N2 at +./9)Y_^0V3DE_232.O2K;MQALO/_^1+W5Y:]:B'=JJV^=W M`0!PC4@$SCZ<>^^]E)24E)24E)5*$[=WWWWW77?=14E)24E)25FI-'%["P``U$3< M`@!0'7$+`$!UQ"T``-41MP``5$?<`@!0'7$+`$!UQ"T``-41MVC;C8.]F;=_ MI+67=;2?]Y6<9S;;.[BA.QPY1,1'I8=,=FT`FD3MKDDT at 0EI8"N2EG9C[1Y,`V"54H"Y.C/8W$Y9]R/0 M'R"C+ at Q+K34CT:[&+2W?/@B-PDY_+A$?$KH&<#T-QZUR\T52J;I]9A[)0M*V M-9-+O/,\/0"KR8CJ)9BK2_;)AAE>O1'8:^D#,CF\XW<%OE&\+UJW`UOE!P.X M9 at 9^=YM,%-%459 at S;--TAVV\?V3WZ;QUKAZ`E(6.R1)6!E%0R-6=KEV)G<)7`#5%>/6IIUCYB*-VT/W M2!#/51$_U=GZ^>%AR,VLJ9OADG,5&C(3HBQ.4[L>C9S%<1A8?E0&_6,!H*Y^ MW-II*INB=.[J:NUZ;X;2N<[6IY$IAY4/ZFKU5/'QQ6L`8C)(_'ARZS*(PJB) M&_2$$G%KDZZ8BUIKU]TDE09K&K?11&8/4JX^J53=OO040($,$C], MW?I0W.;A*MO1+ at 8:@/HN%[=V-:FWZ[VX%6'*,\R^J*?4X`[`D4'BAZE;3[(S M;I!*]PRW`X#)G.O+9#LI10WB:DW3>*.WR8[&2[6Q\['.C(8'$CQ(PC M/W!ZHZG/-/.C*^H'`*HYWU^5ZB8ONZXS5&@ZGX_$K=T.PC18WA-J0TL@$0V2 MA4]6'9!F2U:'1T\8N`PQ`%>A&+<``&!*Q"T``-41MP``5$?<`@!0'7$+`$!U MQ"T``-41MP``5$?<`@!0W>P6``"HB;@%`*`ZXA8`@.J(6P``JB-N`0"HCK@% M`*`ZXA8`@.H:BMNC??,OD^X=W-!M``!:42EN:T0C<8N<'1/6_I%6`L`6(F[1 MKAL'^VXXW#C8(W`!;+%BW&JP[>V9/\R:SFEF2C-;!U'PV3I5J-(YL-#,BI]/ MQAL3MQ at FHX.A`6"+C<5ME)WQNF/J;$L;DOUU/_^MVXP+`"T8B5L; M!F\;Z<>OJ M5- at 5JNW!`\WR![20#M3]*BY73 M.#F?N"@S MY2=X6V4,5)N at 3BOX"1E51`%HQZRRE9'8QR=^5CLLC.,6[?;'14? M<;S0U3QNCQ?)6-9-,\:O`;UI`)SDJ^.M^R:\G-2="!0A8RQ;CBZ M/SO11C(R;67>U`Q0?0P.]7W2)![*?K/K^5JP-P[@,BX=MT(G+!6UCNMH%:A" M!F$W`LU8TT?&5>:\:G'.VK-$CMFA^]<0OA-LTGX#JQ=P_ at PM:/ M6SL'>=&\%',34ZB/IRI@,B$[H\&V\)5V[!JA,M2)WL'1SX>F4C?":3I^4P^Y M-KJ[!W!Q?(IP?631N8ZAM#4TB#9'KR.B.RK0$P"X*#Y%N#XN$+<`,`WB%@"` MZHA;``"J(VX!`*B.N`4`H#KB%@"`ZHA;``"JF]T"```U$;<``%1'W`(`4!UQ M"P!`=<0M``#5$;<``%1'W`(`4!UQ"P!`=97B]FC?_/N8>P/ MLVQ at X^R]49_98`<&6(6S3,)&@^RFX<[+L:LUNCM=02`*Y.,6XU+/?< MPT"8IL(#@O#5MG;OX,`>]VN_%C7B20+5R$`='5ZR7P?IJI8`4-E8W'83E8M2 MLV[K[;05KRP#JZ(\[+QN`(RT!X$J,Q*T^#82)*ZF.M^)(MK+9#JA` MQET88C+D>N/-#$PW0L=;`D!EZ\:MV4BJXRWB%IN0A*@9J[%ZI8`4-?* MN(V#LU]OU_MQVZ\!)F>&F0M.&9`N67V6AOVEE@!PA4;B-O#3E\:H\G.6K4VF ML-`P'`Q,+HQ5-]#B,1J/R7Y+`+ at ZJ[],!@``ET3<`@!073%N`0#`E(A;``"J M(VX!`*B.N`4`H#KB%@"`ZHA;``"J,W$K_P$`@*J(6P``JB-N`0"HCK@%`*`Z MXA8`@.J(6^RLLS??U#4`V#3B%HU[_5O+DQ-=CYQ^_1MO??X+;_^O_ZW;`+!1 M*^/V>&'^@:#Y86%"`S9-LO87/G'V\2?._C09H)*U;][_@>\\^/"M7_G5MU]Y M16L!8'/Z<9OE*W&+;=5E[?*97SY[YI=//_;8V9_\J:TV67OO^]_Z\$>63STC M*V^^\-FSTU.["P`VA;A%LV[?/GOD\;-//+W\=__^](FGWGKH0Z??^,;IU[_^ MYCWWW_[0SR\_\?2M>^__\Q_[9V=OO:7M`6!SLK@].9R;=%6+XRQNT]W=?F!S MSF[??OM#'SE][!>6_^;?OOWHQ]]\_P=NW7W?[8<_O'SB25GYLQ]]S]EWOJ-- M`6"CSO-T:U?)6&P32=SO?."!MS[\T>4SO[1\\IGE$T\M?^&)6W?=\V?O_O&S M-\E:`-OB_'&K?`- at P\Z^<_OF^^Y9/O'T4LKY^Y:/??S/?OA'R5H`6^6T M$0!L6C]NHR?8]*]*97]/BE_B8N-,UM[YOML_^W/+CSUV<_XSW_JA'_GF#[SS MK_[Y3RX?>/"-?_&3_^_[_N'MEU_6I@"P486X!9IP^LHK-^?ON_W^?[W\Z,=N MOO?.;_W3'SY[\TU97ON^[__VC_SH\OT_^U<_]I[7WO&]MU]Z20\`@,TA;M&J MM_[G'[SQWOGM^W_VYM[\]7?]D/\_),O*GW[W]_S%.]]U\ST_\7^_]^_?^IW? ML?4`L$'$+1KVUN__CV__Q+]\_9WOROXU`MG\QM_YNV0M at .U!W*)MMW_O][*L MM$]T[A(_^8#U#Z]F14N]OK7?M>`U.%_ONW4Z8M=D7\J@>7>'U$.-JTD\/V#@YL5?ELP!48B5L[H.T`MV/;UL?K M=L.N=^-8/P]V3*]1/]0/L)H,&#L:NW4S<,P0T@%DAIRNZB"+^5'63<5='VEO MR;IMG77>/]%02UV-#/6?W4[74::KU_5=X>[:N^SK$QTEXG<+V)C57R;;C6Z8 M1ZM)FUZ3Y-!N8ZB^L.X_4<`H&2\ZHKRX*@3IB+A16$]Z]AMQ;7&]V+)T&?%^ MOY%4KF2Z-1^7':)W)B9X?>+6:XT$H+9UX]:-=V$';MPFU,NX#M51FZ'ZH7Z` MU62\Z(CRXJHPR=J!E=!6.C`#/[I#SWXCKBVN%UN6YOIXO]](*I74Y;1-[\K; MU]U79X+7)VY=>@N`*[3OC[EMP#8H&+<`IC<5DWZ<1I-Z\(]$XK8<<0M<#6.]KSV;R+N"VL!`"#N$7+NO<_C[4MK`1P M[?7CMILM9O.Y_'3><1/'B?EY/0CS2;;#1E^_4OLUA]F=74-;6SC&]V]KY_+( M$*JSWHG;ZZ@;.E?Q>'K)2@`P!N.VFRE;T98]J^\D:YD>!@#`5EHK;LV&7=/Z-.1ZSY]#E=UA7=)VF3M;++J* ML,]W&6WE<:L=:\OT,```MM)XW-KU+NKBZC3QO#P8.W&E'FA??^\\(6`(#JB%L``*HC;@$`J(ZX!0"@.N(6 M`(#J9@?/?H&%A86%A86EWF+B]DT``%`3<0L`0'7$+0``U1&W``!41]P"`%`= M<0L`0'7$+0``U1&W``!41]P"`%`=<0L`0'4F;K/_T10+"PL+"PO+M(N)VU\" M```U$;<``%1GXO:3G_RDK%%24E)24E)6*DWUFW+"UU[L:NS&Q<^>W(3I-.M_X-AUVE!2 M4E)24IZCE%R9/?KHHX\\\DA4?OE5$T^OOFAK7GSUYE<_VVM3J?SL5TW4O?KE ML3;KE7H37[8UTJ]TNE[_TUT#)24E)25E5TJNS#Z6>J%+FYM??4&W'5MOZ5YM M>E-WV-IBI;#Y9[WZ95L7]RF5<1-S8+<=]VJ-G=VS?:65>?_]BGX;>Y;N@@?_D-$R%?TDWU)1,U;[S\O*R&!G:MJPW[BY7%P[O*]$SI MR?U1Q<.+)PKL;L_VF?8?1'UE;:(M?Y:X-0``*TEJS#Z<>DZSY#G=[MC*5X^[ MC6,;.\_%M;ZN6&GK8E*;]*G2.G=\4CM^]@)WME4G7Y3U[@"I?EC;G7Q1^G&579])EV9_UJ?M)]3([+ZJ4J:^1Z2-KH:;Q^E;E5?UY*2DI*2LI^*6DQ>_#!!Q]XX`%* M2DI*2DK*2J6)VY\#```UF;C]````J,G$[?L!`$!-)F[OO__^^^Z[CY*2DI*2 MDK)2:>+VGGONN??>>RDI*2DI*2DKE29N[[[[[KONNHN2DI*2DI*R4FGB]A8` M`*B)N`4`H#KB%@"`ZHA;``"J(VX!`*B.N$6K?AGHZ(``MAMQBU;)//L.X!WO MT`$!;#?B%JVR<:L;F[#Q"P!O`1JRY7%[M#\3>P?]VV7KM>^]8`[W;8-L639I6`0=R"MP`-*<5M'(Y> M6AEMQ3OB=!RHMZLILR-N'L0=`@GB%KP%:,B&XK8?H''S8*@U0-R"MP`MF>K+ MY+7C5M=#L,IVMQZW\>RWS<0M"HA;\!:@(9/]5:FUXU8D'0D7O863AJ:N$6`- M3[4R:J[B1[3A"S at ZG>V_K>O.C8.SO8/;NC&M&Z=[>Z?A?K/-74;>O6V_M1^A[M+V>SL. at E24+[RK&H3KH246^G MPZ]:?E2G6*GZW98OF[A%2XA;M(JXM=[>3Z+.;LH'>U?)#9ZY=Y>X14-D]!*W M:-)XW.ZYWT*$X(U^6>$2-?RRPC8,3=;(Z[7B-GXL*SQ*^J1,*I=Z?<6'3ND\ M?BX\.DU27#=M,NVDL^A'&>(6#9'12]RB2:-QZP+5KT9U)@.[.#6QG*?JI$^W M\D3KLZ'X=!LJXU^XFI25&+Y]L.]\^L\2-O"%'__7!H6;ZHY*AX MTR;33HI_9"%NT1`9O<0MFG2^N"T]W<9OE#(Z#,_NZV/`!G.R5 MP^.+C39M,NTD>X,6<8N&R. at E;M&D\\6M775LE8E at SQVAK?(X+E@=M[?,%\*E M!UE7,U!ID[5TK`AQ*PWB;U:S32/^S;%[&4RWH;>.Y+1OUBWA`GR<#W65'J*5 MHT<-=K6RV^RRB5LTA;A%JS8^U4YZ`=G7PNL(H=[)-J\%XA8-(6[1JFL?MR!N MT1+B%JW:K;C%1?`6H"'$+5I%W(*W``TA;M$JXA:\!6@(<8M6$;?@+4!#B%NT MBK@%;P$:0MRB5<0M>`O0$.(6K;)3K90;M/$+`'&+5A"W:)6=:@$=$,!V(V[1 MJHT_V?!HM7&\!6@(<8M6$;?@+4!#B%NTBK@%;P$:0MRB5<0M>`O0$.(6K2)N MP5N`AA"W:!5Q"]X"-(2X1:N(6_`6H"'$+5I%W(*W``TA;M$JXA:\!6@(<8M6 M33W5'NW/]H]T?2WC%W#[8&\YFYE%>[UQNM=M=LMI=*9>2ZR+N$5#B%NT:IOC MUB3HWL%MW;*.3GWW-P[.9OMO=ZNEEE at 7<8N&$+=HU?!4>^-@;Q;XD),\==P# MY\&>Z"K^@]^Y=W"CV[G2\`4KD%>Z=?7,G@!YN$U?&^W+H4 M3<-4MTH-US<6M^'[8?,KV_ at WM8;_,GEE2XPB;M$0XA:M6B]N)42+#[*NLD;< MFN#<.]5^78C>.#CUI_)Q6VR)M1&W:`AQBU:-QJW^'E:$")4\=;0RB5NW/ZH9 M-S;71]\2GVE_1Z?^2^/X;R876F)=Q"T:0MRB5:-QNW9F7@)S_<;Q%J`AQ"U: M1=R"MP`-(6[1JHU/M`C2$N$6KB%OP%J`AQ"U:1=R" MMP`-(6[1*N(6O`5H"'&+5A&WX"U`0XA;M,I.M5)NT,8O`,0M6D'`C2$N$6KB%OP M%J`AQ"U:=9ZI]FA_MG^DZT4K&Q2,7<#1_G(VTV7OX+;68F+$+1I"W*)5VQNW M-P[.HHA]>W__;5W%Q(A;-(2X1:N&I]H;!WLS9^_ at ALE29;;BO9JQ:8,H>J6M MJ;%KVL0V$F-Q.^M'[-&IKXSR^.U]]Q#J:GK MUUP7Q"T:0MRB54-3;8C(8.#A-32-&Q3BMM3GZ%Q?B,E2W![M)U\U9YM);$NF MFBB]?;#G.E3]FNN#N$5#B%NT:F2J#4^KFIM)W(:]8KVX%;T^UYSKS:/GJ3FB M$+=94N;!&?\"N%NZ?GI/P*6::X*X14.(6[1JG:G6)6>4H'&P#C[=1AG;>ZKU M30`O0$.(6K2)NP5N`AA"W:!5Q"]X"-(2X1:OL M5"OE!FW\`D#8"OIQ>[R8B<6Q;E[85/T`!39N=:--.W`+P"ZI_9%< M/VYM_?SP1+=7(6Y1$7$+8%K;$[?G1=RB(N(6P+0V%K>'AW/S9WB>C9]NA]HL MER>N2A&WJ(*X!3"M3<6M35`;GG'$QNMV0Z/7Q*IFK8W8J!Z8&G$+8%J;BEN- MR2ACH]6D3:])%R M?JCK-9R[_Y/E?"[%=CA>SA:Z.J$+O.9RR&Q6Y6(P[.KC%F@`<3OF>&$FZ^*/ MNN>8^B5[SA^$Q&W?!>)V,?#VH2;B%B@@;L?(9+U8E*?X"TS]Y[)]C%2Z6KT<4]ENGDGD[9]GG7+CKUISTLY"BWKJ?PCWK%"T at 5 M^N_?A=O4)>I<[ZG[!M7^`LJNV\6?L5"9W<7Q)<-U)>GZP[-__*YWO>O33^^% M\Q:?1"_\FAS.=5/:F'?3;E9X[$:*N`4*!C\8YJ\/V`F[6P]QZVKC!ALU>`LR M32 M at H])E>5B%('Z2&278GU7*;-\])H,Q*V?T_UZ?*YB2Z?8?^$NX at LSUU;U,70C MY(X6B^'7?(W7Q-5'<;M60F,"Q"U0,/C!B(.UT;C-GX%6I5TLGN6%_1LW\90] M8=Q*>-AS%?O/[Z)`DDEC:K>8>[OH:](A;C>#N`4*1CX8$JTZ[8D6XU;T?W=; MR,42FZ^>3U^)1GU^BG]W>YFXC2N+_6=W,22-ENYP\_O7[_H;^@ZVYJ=^_*>Z MFYGN-2%NKPIQ"Q34_F!<@;9O06)@NA]:+O_WF^1P^ZO36[=NW7___5I[Y>[\ M>^^6"[`WA>80MT`!<=NT[B])G3M?[[SSSEZ8I0_9HZ9*8A_MV#'$+5!`W#9M M9=:6DA6HB[@%"HC;IO7_DA3YBHTC;H$"XA;`M(A;H("X!3`MXA8H(&X!3(NX M!0J(6P#3(FZ!`OO!D+)I.W`+P"XA;H&<_6``P+1TBJF`N$63:O\<>@5VX!:` M7<+3+5!`W`*8%G$+%!"W`*9%W`(%Q"V`:1&W0`%Q"V!:Q"U00-P"F!9Q"Q00 MMP"F1=P"!<0M@&D1MT!!,UEU+Y6RV/-8MM865P*X@;H&"D4?# MP_DL6-AP2"JU+JFTD9C7F.VNM5^1R#$K4CKA#,)71`VT[YZ16[BJQ]-+5@([ MA;@%"D;CUN=;2,G`[8_;6?T:5V7^F,]-3R9M_TO>,V^/%["J#5TZW.`[KY5.ON(7#^7(V<\M\>;Z+/U[.#W5EXMP] M;X=#[4^6\^RFI*6_W]G2OW[6\<)4ACHY?+ at Q<"'$+5!PSKB]8G'<#AJ[A44: M(2>'YTR4D^6BQ;B-6F:O at -E%QGZ9A:*);VC#4=Q6#MR#A&G(EEC[2N;.; MX/'U_CHM22E;W^_0[[)79Q\?[3+2<])A\7K2G@[;<("_-U at N]$+MLW*!Z"'=.-/>(6*!C)JGF<@WG< M1OS>\B%1K5^-6YH^3=-P1!"?SJUK\V#P%@KAT:,)9-9,KMCF)ANR1\F!ATLY M19Q_R8%RB,VG8L\#'?KKR7H>:F\ZC_+2Z+64S+-GER"TKYQ?20Z/KM,++9WD M'MWA^8W;=;>R^A#L%.(6*!C)JI!T(0E#K:P%=F_YD#A&78NX9;05^@PG\>UT MO9_*(S\QI(D5\0^+LH2X]<'3S[:!M,O2*`MXS;EBSVF'_>O)0=M)5 MG!G26V at FA_B<&XW;XO5D/0]=0-*YE;;TKT!\%E'X46`5>T at Q)K-*LRG7[WI> MYQ#L$.(6*!CY8)A,]#3A?/XE.WW^R>Y`*TMQ:U>=0H]9AV8S'!L.[2I6?+;] MPYE9;`ZECW0ZZ8_'K>NGGQ"^?WMUDFIV4Q:]U8&>0X?%Z^GU7+Z`]%C3N9PB MJM'7K#OHB;H&M0MP"!3N05<0ML%6(6Z"`N`4P M+>(6*"!N`4R+N`4*B%L`TR)N at 0+B%L"TB%N@@+@%,"WB%BBP'PPIF[8#MP#L M$N(6R-D/!@!,2Z>8"HA;-*GVSZ%78`=N`=@E/-T"!<0M@&D1MT`!<0M at 6L0M M4$#<`I at 6<0L4$+<`ID7<`@7$+8!I$;=``7$+8%K$+5!`W`*8%G$+%!"WHXZ7 MLX6N`E@/<0L4G.>#<;R8+8YUO6AE at RI6W,+A?#F;N66^/-'J]1POYX>Z,G'N MGK?#H?8GRWEV4]+2W^]LF;TAQPM3&>KD\.'&P(40MT#!CL?M(HV0D\-S)LK) MO['?I=[E70 M35E&>DXZ+%Y/VO/@!72=)Q>;!7/40%^0^)#T<+GX.)N-^-JB?K3&W8[IV7Z+ ML#!?)_A.Y+)]@Y%#L%N(6Z!@Z(,1(C(8>'@-3>,&A;@M]3F!P<]V(3QZ-(', MFLD5V]QD0Y8!`P^7!SKTUY/U/-3>=![EI=%K*9EGSRY! M:%]_OY(<'EVG%UHZR3VZP_,;M^MN9?4AV"G$+5`P\L$(3ZL:6DGNH"DGH]ER\@/=9T+J>(:GS$RN%NU=#TC:^M1)Y3?5?^ MU)*4OM+^2-'/3CE=G.[K'()=0=P"!;4_&%=@!VX!V"7$+5!`W`*8%G$+%!"W M`*9%W`(%Q"V`:1&W0`%Q"V!:Q"U00-P"F!9Q"Q00MP"F1=P"!<0M@&D1MT"! M_6!(V;0=N`5 at EQ"W0,Y^,`!@6CK%5$#<`@!0'7$+`$!UQ"T``-41MP``5$?< M`@!0W>S at V2^PL+"PL+"PU%M,W+X)``!J(FX!`*B.N`4`H#KB%@"`ZI;+Y?\' 4114(G(BWT:X`````245.1*Y"8((` ` end From ian at webian.it Thu Sep 4 19:31:30 2014 From: ian at webian.it (ian excedo) Date: Thu, 04 Sep 2014 19:31:30 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__template_partials?= References: Message-ID: Hi Xavier, am I right to say that this fallback doesn't work if Fluid is called by typoscript? I am asking cause I tryed to overwrite a partial of EXT:bootstrap_package with this typoscript: page { 10 = FLUIDTEMPLATE 10 { partialRootPath > partialRootPaths { 10 = EXT:bootstrap_package/Resources/Private/Partials/Page/ 20 = EXT:iandefault/Resources/Private/Partials/Page/ 30 = EXT:ianlocal/Resources/Private/Partials/Page/ } } this produce a FE error: Partial root path "typo3conf/ext/bootstrap_package/Resources/Private/Templates/Page/Partials" does not exist It looks like that the overwrite feature is implemented only in class TemplateView and not in class StandaloneView. But I can be wrong cause I'm new to Extbase/Fluid. From mramaraju.dba at gmail.com Thu Sep 4 19:45:42 2014 From: mramaraju.dba at gmail.com (Ramaraju Musku) Date: Thu, 04 Sep 2014 19:45:42 +0200 Subject: [TYPO3-english] =?utf-8?q?_How_to_index_Plugin_pages?= Message-ID: Hi, Greetings! I have a problem with News Single pages, I am using Indexed Search feature for search in website, here I have News system plugins and news related single pages are created by Plugin so these pages are not indexing when I want to "Index" them. Please guide me in this problem thankks in advance you can mail me if possible mail id is: pkrishna312 (at) gmail.com From xavier at typo3.org Fri Sep 5 07:41:41 2014 From: xavier at typo3.org (Xavier Perseguers) Date: Fri, 05 Sep 2014 07:41:41 +0200 Subject: [TYPO3-english] LDAP / SSO service configuration In-Reply-To: References: Message-ID: Hi, > i try to connect my typo3 website to a ldap with the LDAP / SSO > Authentication extension. > > for the connection it's ok but for the ldap_bind i have always a error > "Can't contact LDAP server" > > i'm connected to my ldap with apache directory studio with the same dn, > host and port so i don't know where is the probleme Please post image to an online service and link to it instead of attaching. Users (like me) of a mailing list instead of a forum receive ascii garbage otherwise. I went to the English forum and discovered that you were connecting securely using SSL. As such you may have a problem I debugged recently that is caused by an incompatibility between GnuTLS and SSL in the way the SSL certificate has been generated/signed. This is described with a solution here: https://wiki.debian.org/LDAP/OpenLDAPSetup#Symptoms_.28round_2.29 HTH -- Xavier Perseguers TYPO3 CMS Team Member TYPO3 .... inspiring people to share! Get involved: http://typo3.org From xavier at typo3.org Fri Sep 5 07:43:39 2014 From: xavier at typo3.org (Xavier Perseguers) Date: Fri, 05 Sep 2014 07:43:39 +0200 Subject: [TYPO3-english] template partials In-Reply-To: References: Message-ID: Hi Ian, ian excedo wrote: > Hi Xavier, > am I right to say that this fallback doesn't work if Fluid is called by > typoscript? Don't know, maybe. Then you may have found a bug which should get reported. Kind regards -- Xavier Perseguers TYPO3 CMS Team Member TYPO3 .... inspiring people to share! Get involved: http://typo3.org From emini1 at o2.pl Fri Sep 5 08:43:14 2014 From: emini1 at o2.pl (BartÅ‚omiej ÅšwiÄ…tek) Date: Fri, 05 Sep 2014 08:43:14 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__drop_down_breadcrumbs?= References: Message-ID: This is exactly what I need, thank you Bernd! From baden32 at yahoo.fr Fri Sep 5 09:35:02 2014 From: baden32 at yahoo.fr (joel zimmerli) Date: Fri, 5 Sep 2014 08:35:02 +0100 Subject: [TYPO3-english] Remove extension manually (Typo3 6.2) Message-ID: Just after I installed yag_gallery 3.2.7 on Typo3 6.2 almost all the "admin" menus in BE (extension manager, languages, install, etc.) are not available anymore. When I click on the menu, I received the following error: Oops, an error occurred! Class Tx_PtExtbase_Utility_FeBeModeDetector does not exist As I canot use the Extension manager menu, I'm wondering how I can delete(uninstall) this extension? I already tried to delete the entry "yag" in LocalConfiguration.php and deleted all files under typo3temp but I still get this error. If I just rename the "yag" directory under typo3conf/ext, the whole BE access is not available (blank screen!). What is the right way to delete this extension manually? Thank you in advance for your help. Regards, Joel From t3ng at bernd-wilke.net Fri Sep 5 10:48:10 2014 From: t3ng at bernd-wilke.net (bernd wilke) Date: Fri, 05 Sep 2014 10:48:10 +0200 Subject: [TYPO3-english] Remove extension manually (Typo3 6.2) In-Reply-To: References: Message-ID: Am 05.09.14 09:35, schrieb joel zimmerli: > Just after I installed yag_gallery 3.2.7 on Typo3 6.2 almost all the "admin" menus in BE (extension manager, languages, install, etc.) are not available anymore. When I click on the menu, I received the following error: > > Oops, an error occurred! > Class Tx_PtExtbase_Utility_FeBeModeDetector does not exist > > As I canot use the Extension manager menu, I'm wondering how I can delete(uninstall) this extension? > > I already tried to delete the entry "yag" in LocalConfiguration.php and deleted all files under typo3temp but I still get this error. > > If I just rename the "yag" directory under typo3conf/ext, the whole BE access is not available (blank screen!). > > What is the right way to delete this extension manually? since 6.2 you can call the install-tool (.../typo3/install/index.php) and remove extensions which break the installation also since 6.2 installed extensions are no longer noticed in LocalConfiguration.php but in PackageStates.php so you need to modify this file if you want to do it by hand (not recommended). bernd -- http://www.pi-phi.de/cheatsheet.html From aleichsenring at ab-softlab.de Fri Sep 5 13:09:04 2014 From: aleichsenring at ab-softlab.de (Anja Leichsenring) Date: Fri, 05 Sep 2014 13:09:04 +0200 Subject: [TYPO3-english] Remove extension manually (Typo3 6.2) In-Reply-To: References: Message-ID: Hi Joel, after you got yourself in such a trouble, do the following: 1. Edit typo3conf/PackageStates.php: find the extension that caused the crash and change its status from active to inactive. Save the file, delete typo3temp/Cache/* and try again to access the Backend. 2. If you can't access the Backend yet, go to the install tool by using the url your.domain/typo3/install/index.php. Enter the important actions section, clear the cache with the button there, and if you get the option, clear the opcode cache as well. Now you should be able to access the backend. If you don't, repeat the steps with other extensions you might have installed before. If you already renamed folders in typo3conf/ext, remove this folder and delete PackageStates.php. It will be recreated after you logged into the Backend, but you have to activate all your extensions again using the ExtensionManager. Never ever rename folders in typo3conf/ext, also no backing up extensions like one could do before 6.2, just leave the folder alone. PackageStates.php will break otherwise. Hope that helps Anja On 05.09.2014 10:48, bernd wilke wrote: > Am 05.09.14 09:35, schrieb joel zimmerli: >> Just after I installed yag_gallery 3.2.7 on Typo3 6.2 almost all the >> "admin" menus in BE (extension manager, languages, install, etc.) are >> not available anymore. When I click on the menu, I received the >> following error: >> >> Oops, an error occurred! >> Class Tx_PtExtbase_Utility_FeBeModeDetector does not exist >> >> As I canot use the Extension manager menu, I'm wondering how I can >> delete(uninstall) this extension? >> >> I already tried to delete the entry "yag" in LocalConfiguration.php >> and deleted all files under typo3temp but I still get this error. >> >> If I just rename the "yag" directory under typo3conf/ext, the whole BE >> access is not available (blank screen!). >> >> What is the right way to delete this extension manually? > > since 6.2 you can call the install-tool (.../typo3/install/index.php) > and remove extensions which break the installation > > also since 6.2 installed extensions are no longer noticed in > LocalConfiguration.php but in PackageStates.php > so you need to modify this file if you want to do it by hand (not > recommended). > > bernd From xavier at typo3.org Fri Sep 5 13:19:24 2014 From: xavier at typo3.org (Xavier Perseguers) Date: Fri, 05 Sep 2014 13:19:24 +0200 Subject: [TYPO3-english] Remove extension manually (Typo3 6.2) In-Reply-To: References: Message-ID: Hi Anja, > after you got yourself in such a trouble, do the following: > > 1. Edit typo3conf/PackageStates.php: find the extension that caused the > crash and change its status from active to inactive. Save the file, > delete typo3temp/Cache/* and try again to access the Backend. What about warning the user prior to the initial activation when the extension has no TYPO3 dependencies, just as we do when trying to activate an outdated extension? Cheers Xavier -- Xavier Perseguers TYPO3 CMS Team Member TYPO3 .... inspiring people to share! Get involved: http://typo3.org From aleichsenring at ab-softlab.de Fri Sep 5 14:21:12 2014 From: aleichsenring at ab-softlab.de (Anja Leichsenring) Date: Fri, 05 Sep 2014 14:21:12 +0200 Subject: [TYPO3-english] Remove extension manually (Typo3 6.2) In-Reply-To: References: Message-ID: Hi Xavier, this is the ext_emconf.php of yag extension 3.2.7, that Joel uses. Nothing wrong with it. So what do you mean? I think I don't get your point. Greets Anja https://github.com/YAG-Gallery/yag/blob/6dbba03df9bbdf247a21bc35ea4ff3eff8d1a306/ext_emconf.php On 05.09.2014 13:19, Xavier Perseguers wrote: > Hi Anja, > >> after you got yourself in such a trouble, do the following: >> >> 1. Edit typo3conf/PackageStates.php: find the extension that caused the >> crash and change its status from active to inactive. Save the file, >> delete typo3temp/Cache/* and try again to access the Backend. > > What about warning the user prior to the initial activation when the > extension has no TYPO3 dependencies, just as we do when trying to > activate an outdated extension? > > Cheers > Xavier > From baden32 at yahoo.fr Fri Sep 5 14:47:56 2014 From: baden32 at yahoo.fr (joel zimmerli) Date: Fri, 5 Sep 2014 13:47:56 +0100 Subject: [TYPO3-english] Remove extension manually (Typo3 6.2) In-Reply-To: References: Message-ID: I tested on Typo3 4.7 and 6.2 and both instal do not have pt_extlist and pt_extbase. Do you think this can cause my problem? Maybe this is what means Xavier: if other extensions are required, a warning should be displayed, and yag shouldn't be installed. What do you think? Regards, Joel Le Vendredi 5 septembre 2014 14h25, Anja Leichsenring a ?crit : Hi Xavier, this is the ext_emconf.php of yag extension 3.2.7, that Joel uses. Nothing wrong with it. So what do you mean? I think I don't get your point. Greets Anja https://github.com/YAG-Gallery/yag/blob/6dbba03df9bbdf247a21bc35ea4ff3eff8d1a306/ext_emconf.php On 05.09.2014 13:19, Xavier Perseguers wrote: > Hi Anja, > >> after you got yourself in such a trouble, do the following: >> >> 1. Edit typo3conf/PackageStates.php: find the extension that caused the >> crash and change its status from active to inactive. Save the file, >> delete typo3temp/Cache/* and try again to access the Backend. > > What about warning the user prior to the initial activation when the > extension has no TYPO3 dependencies, just as we do when trying to > activate an outdated extension? > > Cheers > Xavier > _______________________________________________ TYPO3-english mailing list TYPO3-english at lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english From xavier at typo3.org Fri Sep 5 15:21:19 2014 From: xavier at typo3.org (Xavier Perseguers) Date: Fri, 05 Sep 2014 15:21:19 +0200 Subject: [TYPO3-english] Remove extension manually (Typo3 6.2) In-Reply-To: References: Message-ID: Hi Anja, > this is the ext_emconf.php of yag extension 3.2.7, that Joel uses. > Nothing wrong with it. So what do you mean? I think I don't get your point. Was not speaking about this particular case because I did not pay attention to the faulty extension. What I mean is following. If you try to install extension X which has dependency with TYPO3 < currently used, you get a warning, I find it perfect! If you try to install extension Y which has NO dependencies, you get no warning at all. Since every extension is now supposed to have dependencies set (and it's a good practice for in house extensions as well), I would suggest to throw a warning as well in that case. -- Xavier Perseguers TYPO3 CMS Team Member TYPO3 .... inspiring people to share! Get involved: http://typo3.org From supportdoc at brainstuff.com Fri Sep 5 16:30:55 2014 From: supportdoc at brainstuff.com (brain stuff) Date: Fri, 05 Sep 2014 16:30:55 +0200 Subject: [TYPO3-english] =?utf-8?q?_php_settings?= Message-ID: Hi, It seems that we have some problems with the php settings for typo3 ... is there a list of the needed settings and is it possible that typo3 recognize in the install tool the password and not in the backend? thanks John brainstuff From klein.t3 at reelworx.at Fri Sep 5 16:52:11 2014 From: klein.t3 at reelworx.at (Markus Klein) Date: Fri, 5 Sep 2014 16:52:11 +0200 Subject: [TYPO3-english] php settings In-Reply-To: References: Message-ID: Hi! Looks like there's a problem with openSSL. Do you get any warnings in the Install Tool? System Environment Check? Kind regards Markus ------------------------------------------------------------ Markus Klein TYPO3 CMS Active Contributors Team Member > -----Original Message----- > From: typo3-english-bounces at lists.typo3.org [mailto:typo3-english- > bounces at lists.typo3.org] On Behalf Of brain stuff > Sent: Friday, September 05, 2014 4:31 PM > To: typo3-english at lists.typo3.org > Subject: [TYPO3-english] php settings > > Hi, > > It seems that we have some problems with the php settings for typo3 ... is > there a list of the needed settings and is it possible that typo3 recognize in > the install tool the password and not in the backend? > > thanks > John > brainstuff > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.typo3.org > http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english From ralf.rene at online.de Fri Sep 5 19:40:51 2014 From: ralf.rene at online.de (=?UTF-8?B?UmFsZi1SZW5lIFNjaHLDtmRlcg==?=) Date: Fri, 05 Sep 2014 19:40:51 +0200 Subject: [TYPO3-english] php settings In-Reply-To: References: Message-ID: Am 05.09.2014 16:30, schrieb brain stuff: > and is it possible that typo3 > recognize in the install tool the password and not in the backend? SURE ... this are totaly different things first checks against a php file and second against the database -- image[FORMAT] - Ralf-Ren? Schr?der http://www.image-format.eu ... Wir geben Ihrem Image das richtige Format From philipp.gampe at typo3.org Fri Sep 5 22:09:54 2014 From: philipp.gampe at typo3.org (Philipp Gampe) Date: Fri, 05 Sep 2014 22:09:54 +0200 Subject: [TYPO3-english] Remove extension manually (Typo3 6.2) References: Message-ID: Hi Xavier, Xavier Perseguers wrote: > What I mean is following. If you try to install extension X which has > dependency with TYPO3 < currently used, you get a warning, I find it > perfect! If you try to install extension Y which has NO dependencies, > you get no warning at all. Since every extension is now supposed to have > dependencies set (and it's a good practice for in house extensions as > well), I would suggest to throw a warning as well in that case. +1 Best regards -- Philipp Gampe ? PGP-Key 0AD96065 ? TYPO3 UG Bonn/K?ln Documentation ? Active contributor TYPO3 CMS TYPO3 .... inspiring people to share! From ian at webian.it Sat Sep 6 08:01:16 2014 From: ian at webian.it (ian excedo) Date: Sat, 06 Sep 2014 08:01:16 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__Re=3A__template_partials?= References: Message-ID: Bug reported: https://forge.typo3.org/issues/61361 From hiddink at bendoo.nl Sat Sep 6 09:48:01 2014 From: hiddink at bendoo.nl (Bert Hiddink [BENDOO e-work solutions]) Date: Sat, 06 Sep 2014 09:48:01 +0200 Subject: [TYPO3-english] Apache Password Protection and RealURL Message-ID: Hello, I have EXACTLY the same problem as Jeff Segars reported here: http://lists.typo3.org/pipermail/typo3-english/2006-November/033670.html "I've recently encountered some problems with password protected directories (via Apache) and mod_rewrite rules for RealURL. When there is not an .htaccess file in place, password protection works as expected and I am prompted to enter a username and password when accessing the directory. When I add the .htaccess file back in and enable RealURL, my TYPO3 generated 404 page is immediately displayed when trying to access this password protected directory. I'm using the default .htaccess file and I've tried adding my password protected directory into the list of directories that mod_rewrite should not rewrite but it doesn't seem to make a difference. > RewriteRule ^(typo3|typo3temp|typo3conf|t3lib|tslib|fileadmin|uploads|showpic.php|protected)/ - [L] Interestingly enough, if I modify the .htaccess file to pass requests through a nonexistent index2.php file rather than TYPO3's index.php file, then the password protection works again....but obviously the rest of the site does not :)" Has anyone else encountered similar behavior? How to resolve this? Any ideas? Thanks in advance! Regards, Bert From ellagaby489 at gmail.com Sat Sep 6 10:27:19 2014 From: ellagaby489 at gmail.com (Ella Smith) Date: Sat, 06 Sep 2014 10:27:19 +0200 Subject: [TYPO3-english] =?utf-8?q?__Some_methods_to_deleted_photos_from_i?= =?utf-8?q?Cloud?= Message-ID: Recently, a big earthquake happen in Hollywood entertainment about celebrity leaked nude photos scandal. Celebrity leaked photos have occupied major search engines headlines and BBS. All finger pointing to the iPhone and Apple's iCloud will push the cusp. It may have impact on the upcoming iPhone 6 sales. Although, Apple claim after a 40 hours survey show that none is due to iCloud or Find My iPhone by apple's system such as the invasion. But many industry believes that iCloud have some security risks. What't more, many old iPhone customers now have many doubts about photos security on iPhone and the iCloud security. After this celebrity leaked nude photos scandal, many industry and customers make a intense discussion about how to delete your photos from iCloud to protect them from leaking. In addition, they also list many ways to Strengthen iCloud safety as follows: 1.Use two-step verification. 2.Reset your iCloud account. 3.Reset your account password . Many people also make a vote about which is the safest way to keep private photos after the celebrities leaked photos hack. It's a very interesting activity! Hurry to join it and show your precious opinions! From katja.lampela at lieska.net Sat Sep 6 15:10:42 2014 From: katja.lampela at lieska.net (Katja Lampela) Date: Sat, 06 Sep 2014 16:10:42 +0300 Subject: [TYPO3-english] bootstrap_package update and content elements only Message-ID: hi, I have 2 questions about the great bootstrap_package: 1. Now that bootstrap_package has been updated, is it safe to update it on my existing installation? Of course I should have all the modifications in my own folders and files, but is there something else I should also be aware of? 2. Is there a way to use the bootstrap_package's carousel or other bootstrap content elements without using it as a basis of the site? I tried this so that I have the t3onepage package as a basis and then I installed the latest bootstrap_package. If bootrap_package template static is loaded first and then t3onepage, the site works otherwise but carousel gives error: ERROR: Content Element type "bootstrap_package_carousel" has no rendering definition! If the bootstrap_package is loaded last, the site stops working and I get error: #1288092556: Could not load partial file. Tried following paths: "/mysite/typo3conf/ext/bootstrap_package/Resources/Private/Partials/Page/footer.html", "/mysite/typo3conf/ext/bootstrap_package/Resources/Private/Partials/Page/footer". -- Kind regards, Katja Lampela www.lieska.net From katja.lampela at lieska.net Sat Sep 6 17:09:18 2014 From: katja.lampela at lieska.net (Katja Lampela) Date: Sat, 06 Sep 2014 18:09:18 +0300 Subject: [TYPO3-english] Include Basis Template not working Message-ID: Hi, TYPO3 6.2.4 I cant get the Template/Includes/Include Basis Template work as it worked before, for example 6.1.x If I include for example a lib.testing object, it isn't there in the lib when checking with TSOB. Has something changed or is this a bug? -- Kind regards, Katja Lampela www.lieska.net From blueduck at gmx.net Sat Sep 6 18:53:13 2014 From: blueduck at gmx.net (Stefano Kowalke) Date: Sat, 06 Sep 2014 18:53:13 +0200 Subject: [TYPO3-english] Remove extension manually (Typo3 6.2) In-Reply-To: References: Message-ID: Another way is to use the command line interface. Execute the following command from your document root: $ ./typo3/cli_dispatch.phpsh extbase extension:uninstall yag That uninstalls the extension (not delete it) Regards Stefano Am 05.09.14 09:35, schrieb joel zimmerli: > Just after I installed yag_gallery 3.2.7 on Typo3 6.2 almost all the "admin" menus in BE (extension manager, languages, install, etc.) are not available anymore. When I click on the menu, I received the following error: > > Oops, an error occurred! > Class Tx_PtExtbase_Utility_FeBeModeDetector does not exist > > As I canot use the Extension manager menu, I'm wondering how I can delete(uninstall) this extension? > > I already tried to delete the entry "yag" in LocalConfiguration.php and deleted all files under typo3temp but I still get this error. > > If I just rename the "yag" directory under typo3conf/ext, the whole BE access is not available (blank screen!). > > What is the right way to delete this extension manually? > Thank you in advance for your help. > Regards, > Joel > From hiddink at bendoo.nl Sun Sep 7 11:51:30 2014 From: hiddink at bendoo.nl (Bert Hiddink [BENDOO e-work solutions]) Date: Sun, 07 Sep 2014 11:51:30 +0200 Subject: [TYPO3-english] Apache Password Protection and RealURL In-Reply-To: References: Message-ID: Hello, Found the solution to the problem from this article: http://blog.servint.net/2014/01/31/rewrite-rule-conflicts-protecting-sub-directories-using-htaccess/ Adding the line ErrorDocument 401 default ...just before "RewriteEngine" resolved the problem. The solution is explained in the article above. Cheeers and regards, Bert ... # Enable URL rewriting ErrorDocument 401 default RewriteEngine On ... On 06-09-14 09:48, Bert Hiddink [BENDOO e-work solutions] wrote: > Hello, > > I have EXACTLY the same problem as Jeff Segars reported here: > http://lists.typo3.org/pipermail/typo3-english/2006-November/033670.html > > "I've recently encountered some problems with password protected > directories (via Apache) and mod_rewrite rules for RealURL. > > When there is not an .htaccess file in place, password protection works > as expected and I am prompted to enter a username and password when > accessing the directory. When I add the .htaccess file back in and > enable RealURL, my TYPO3 generated 404 page is immediately displayed > when trying to access this password protected directory. > > I'm using the default .htaccess file and I've tried adding my password > protected directory into the list of directories that mod_rewrite should > not rewrite but it doesn't seem to make a difference. > > > RewriteRule > ^(typo3|typo3temp|typo3conf|t3lib|tslib|fileadmin|uploads|showpic.php|protected)/ > - [L] > > Interestingly enough, if I modify the .htaccess file to pass requests > through a nonexistent index2.php file rather than TYPO3's index.php > file, then the password protection works again....but obviously the rest > of the site does not :)" > > Has anyone else encountered similar behavior? How to resolve this? Any > ideas? > > Thanks in advance! > > Regards, > Bert > From eraclio.ramirez at yahoo.com Sun Sep 7 18:46:54 2014 From: eraclio.ramirez at yahoo.com (Eraclio Ramirez) Date: Sun, 07 Sep 2014 18:46:54 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_Can=27t_login_to_Install_Tool=2C?= =?utf-8?q?_want_to_upgrade_from_4=2E5=2E5_to_6=2E2?= References: Message-ID: How about list of extensions? From eraclio.ramirez at yahoo.com Sun Sep 7 18:48:06 2014 From: eraclio.ramirez at yahoo.com (Eraclio Ramirez) Date: Sun, 07 Sep 2014 18:48:06 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_Image_links_in_bootstrap_carouse?= =?utf-8?q?l?= References: Message-ID: Did you try to update bootstrap? From eraclio.ramirez at yahoo.com Sun Sep 7 18:49:13 2014 From: eraclio.ramirez at yahoo.com (Eraclio Ramirez) Date: Sun, 07 Sep 2014 18:49:13 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_Powermail_form_reset_problems?= References: Message-ID: I have the same problem and I didn't find any solution yet. From eraclio.ramirez at yahoo.com Sun Sep 7 18:51:36 2014 From: eraclio.ramirez at yahoo.com (Eraclio Ramirez) Date: Sun, 07 Sep 2014 18:51:36 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_Responsive_image_generation?= References: Message-ID: Did you try to change CSS styles? It's faster and simpler way to make images look good for mobile devices: http://basicuse.net/articles/pl/textile/html_css/how_to_resize_images_proportionally_using_css_for_responsive_web_design You don't need to make several versions of the one image for different devices. CSS style will resize it automatically, even if it has predefined width and height in HTML. From t3ng at bernd-wilke.net Mon Sep 8 14:45:43 2014 From: t3ng at bernd-wilke.net (bernd wilke) Date: Mon, 08 Sep 2014 14:45:43 +0200 Subject: [TYPO3-english] Navigation in file system with individual actions? Message-ID: we have a static export of TYPO3 pages which are transferred to another system with rsync. as sthe sync is non destructive (no removal on target) up to now there were no problems with information no longer needed (it stays on the target) now we want to reduce data to only neccessary data and we need a tool to remove these no longer needed pages. as we have around 20000 pages we are not able to remove all data and generate only those new which are active any more. what I think about is a BE-module where editors can navigate in the export tree (which is represented by folders and files in the export folder). maybe something like quixplorer, where the action is reduced to view and delete. the configuration may need further restriction, as not every editor is allowed access to every branch. my important points: * navigation (maybe like t3quixplorer) outside of fileadmin * restriction to (admin-)configurable folders per editor * restriction to (admin-)configurable actions per pagetree per editor (editors need to be able to remove files/subtrees) or maybe a filestorage? but how can I restrict folders and actions for each BE-Editor? ar any other ideas? bernd -- http://www.pi-phi.de/cheatsheet.html From alexander.stehlik at gmail.com Mon Sep 8 14:51:31 2014 From: alexander.stehlik at gmail.com (Alexander Stehlik) Date: Mon, 08 Sep 2014 14:51:31 +0200 Subject: [TYPO3-english] Version history missing in TER Message-ID: Hi guys, I'm not sure if this is the right place to report this but I currently have a problem with one of my Extensions in TER: I uploaded a new version earlier this day [1] using the web uploader and the new version is on-line but the old version simply disappeared (version 0.0.1). Nothing in the download graph and in the version history. Can someone help me here? Or should I open an issue in forge? Thanks and kind regards, Alex [1] http://typo3.org/extensions/repository/view/mediaoembed -- Alexander Stehlik alexander.stehlik at gmail.com From typo3.lists at 2014.trash.schams.net Tue Sep 9 08:19:24 2014 From: typo3.lists at 2014.trash.schams.net (Michael Schams) Date: Tue, 09 Sep 2014 16:19:24 +1000 Subject: [TYPO3-english] Version history missing in TER In-Reply-To: References: Message-ID: On 2014-09-08 22:51, Alexander Stehlik wrote: > I'm not sure if this is the right place to report this but I currently > have a problem with one of my Extensions in TER [...] If you don't get a response in the typo3-english mail list, you can try to post to the typo3-team-extension-coordination list: http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-team-extension-coordination Or report the issue on forge at the "team-ect" project: https://forge.typo3.org/projects/team-ect Version 0.0.1 of your extension is still available and downloadable, but not shown in the list... http://typo3.org/extensions/repository/download/mediaoembed/0.0.1/t3x/ http://typo3.org/extensions/repository/download/mediaoembed/0.2.0/t3x/ Cheers Michael From alexander.stehlik at gmail.com Tue Sep 9 08:39:27 2014 From: alexander.stehlik at gmail.com (Alexander Stehlik) Date: Tue, 09 Sep 2014 08:39:27 +0200 Subject: [TYPO3-english] Version history missing in TER In-Reply-To: References: Message-ID: Hi Michael, thank you for your reply and for looking into this. I'll wait a bit and if nothing happens I create an issue in forge. Cheers, Alex Am 09.09.2014 um 08:19 schrieb Michael Schams: > On 2014-09-08 22:51, Alexander Stehlik wrote: > >> I'm not sure if this is the right place to report this but I currently >> have a problem with one of my Extensions in TER [...] > > If you don't get a response in the typo3-english mail list, you can try > to post to the typo3-team-extension-coordination list: > > http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-team-extension-coordination > > > Or report the issue on forge at the "team-ect" project: > > https://forge.typo3.org/projects/team-ect > > Version 0.0.1 of your extension is still available and downloadable, but > not > shown in the list... > > http://typo3.org/extensions/repository/download/mediaoembed/0.0.1/t3x/ > http://typo3.org/extensions/repository/download/mediaoembed/0.2.0/t3x/ > > > Cheers > Michael > -- Alexander Stehlik alexander.stehlik at gmail.com From typo3-english-14 at beech.it Tue Sep 9 09:54:45 2014 From: typo3-english-14 at beech.it (Edward Lenssen) Date: Tue, 9 Sep 2014 00:54:45 -0700 (MST) Subject: [TYPO3-english] tx_form - attachment configuration In-Reply-To: References: Message-ID: 40 = FILEUPLOAD 40 { name = image1 label { value = Upload image } } Rules 1 = fileallowedtypes 1 { breakOnError = 0 showMessage = message = (%allowedTypes) error = Image type is not allowed (only: .jpg, .jpeg, .gif, .png, .tif) types = image/jpeg, image/jpg, image/gif, image/png, image/tif element = image1 } 2 = filemaximumsize 2 { breakOnError = 0 showMessage = message = The file has to be smaller as %maximum error = The file is too big (max 10MB) maximum = 10000000 element = image1 } -- View this message in context: http://typo3.3.n7.nabble.com/tx-form-attachment-configuration-tp233494p265867.html Sent from the TYPO3 English mailing list archive at Nabble.com. From hbirkner at gv-bayern.de Tue Sep 9 10:50:41 2014 From: hbirkner at gv-bayern.de (Holger) Date: Tue, 09 Sep 2014 10:50:41 +0200 Subject: [TYPO3-english] =?utf-8?q?_file=3Acurrent=3Aalternative_--=3E_get?= =?utf-8?q?_text_from_original_file?= Message-ID: Hi there, I have typoscipt for rendering images. for alternative text I use file:current:alternative. I was expecting that the mechanism uses the text from the relation (which works perfectly) where I put the image and if there is no alternative text than it should use the alternative text that I entered in the original file data where I uploaded the image file. In backend I can see, that the alternative text is used from the original file when I don't enter text when I use the image. But I can override the text. Do I have to use different typoscript for the alternative text of the original file? I don't find anything in the api documentation. regards From mramaraju.dba at gmail.com Tue Sep 9 13:09:43 2014 From: mramaraju.dba at gmail.com (Ramaraju Musku) Date: Tue, 09 Sep 2014 13:09:43 +0200 Subject: [TYPO3-english] =?utf-8?q?_Events_are_not_displaying_According_to?= =?utf-8?q?_the_Calendar_Date?= Message-ID: [img]index.php/fa/16061/0/[/img] I am facing the problem with my calendar events, If I create an event for the month of December It is displaying between September and October. I created a single page for News system plugin placed a sort order option like given date/time. begin 644 Ev?nements 2014-09-09 07-07-49.png MB5!.1PT*&@H````-24A$4@```X@```)$"`8```!4[0JU```@`$E$051XG.S= M>WA4U:'^\3PUHTW5A-LY/SER%$4!K1";@&EC2JJI@`$$Q*A`@R#Q at A0:E4B5 MVE at -HE!$K48I(@:-%Z"BGE+@@-464=2F`E6!"@=I%&I#3<(EX`1]?W_,GIDU M,WNN"9ST/9&;V9>WKN_?::Z>\_/;?%5P``````,>?%`(B`````$`B M(`(`````+`1$`````(`D`B(`````P$)`!`````!((B`"`````"P$1`````"` M)`(B`````,!"0`0`````2"(@`@`````L!$0`````@"0"(@````#`0D`$```` M`$@B(`(`````+`1$`````(`D`B(`````P$)`!`````!((B`"`````"P$1``` M``"`)`(B`````,#BV(#XP?;=NODWKRKSEL?4J:A"&:/N:[/ES.OFJ.#G3^NY M/V[4OJ;#R:Y:`#A^N1NUI[96M;6UJMW;%/A9TU[/WVMKM:?1G9SI`P`@R1P9 M$)]]_0.=-7Z..EU=H8RK[E-&T4QE7'V_.EP]J\V6CM?,TG^.?5`W//JJ/M_; MF.PJ1KNQ1$4I*4I)25'*^>7Z,-F3`SC=A^4ZW[O-%"T)_&Q)D>?O*2DZOYRM M"3CF(FV?`(X9QP7$#W;L5H\)OU;ZJ'N5452AC&L>4,:UL]5AS%QU&/N0.HR= MUX;+0^KRDX M_0[*DB+K-RGGB_-IOUCJA;I+DE8-B.^IK+LUK.YE>B^6<:!]<>_6AL7E*L[K MIR+4T1?MRD+_><6:O7:WCLM[V&UQVVG:I765 MTS0RKY=.2W=9ZX!+Z:=E:=3LM=H=84$V;5FF\E%9QN_2U+E7GHJC_,[SX_=5 MWB_-&E%)];WTFJ75\W&J+ M!YZH6A(0W=I8GBE7BO^D)J"X,E6^,?(1BI!CCX#H8*T8$-TKQBO#.ADL7-00 MVSA:;+G&N%AO'&/YF/#[T)04I:1T4=&2.IL?UFG)F*X1?INF?A4;'1L2MU5D M'IWUNTT=IQNTOJ)`75V1EG^*7%W'R&X5J%LR)N)OT_I5*.PAN.Y-E6:Z`KX? M>9_UH`]LA8O4$&$0A!Q[!$0':[6`V*!%A2[[$ZZCN:_9.$,]V^)ZT[17M36K M].S+Z[0U^-G/MFS;@_IAGT&:-F>5:O8T>@*=NU$[EH[7F2GA3\AWSLOUA<,N MA97:;#WSVK1KI7'BWUVEZYUX)N]6]8BCM'ZWL>/TA^7G6Q=4T]5G5+D6K]LJ MS^H=>"S-&+\B,.SOG*=<;SCL4JC*S=:ZT[1+*TO]%VZ[EZX/N4C at WEVM,5T# MPV'4?=9[9>H>;EH`&XX+B!FC[E%ZT4QEC'U('2;,5\>;JM3IEN?5:?*+ZO33 M%]7IIR^UX?*B.DU^01UO?C:I=7SI]QJH[0A-/=N%G+RDL6_7Z?M_( MC(!XA_YL6FN9(QCP,7F#'0N-*84J1(-15_R'%K]X9* M30IHCN5I4C.IWF.IOUDD+*Z&4VQ7.DZ+6M4^*98YG*PF@`- MRK+JQ35HGE.TU;JC3)IMG2H&E5LF^YYET?>FK&1JEIUSHM M+B]67B]_O;G2^VA<]?;P)PA-6SSKGF_^4^1*/RVTN=QG\Y0;X018DMQ+BGS# MR"AY6O-R8UNO at GTV+]>WKHZH#AJ1>["_PLXK[&OWV-J';+W;A9J^9,TZ"L;OYM(NT,#2Y_4W;WG1H6 M#(QQF[-IOFAM,^7+MLAN]?&NDSUG;%33KG6JG#9(69W3/.O`\.=TP.9[:MJE M=5832]]ZFM996>.JM=WM78?/"-B/I:2XU'7,$MOY\TQZC.N at S3SO6E<9M,U8 M\]VMEX8>TW9U;BTI\DY#ADI6FY\939-=A5H4?!7..)F/=I$N4).V5$T*V-X] MRWR0IE79+W/_3W=I7670;ZUZ#VV2N%ZEI\=V+(U['V9N.V=F*Z]7M\#?GIVG M26'FQ7=<'E&MIL;-6E9>K+RSK77HW+OT0<"WXS\6V7*OUL]'E6NM[0_"7\!] MKZR[;YX*0U>`L.N'>^,\Y7?Q3F\7%95/]M57I'V6?WS!ZR)@SW$!,?W*7RGC MZ@?48=QCZGC#T^HTJ5J=)K_@"8CMHKR at 3K<\G]0Z/FX=ZX"8DJ;T]-"K?+YB M/K-DJ%M1HAZ1FJQDE,B_?S<.0!&+SQ'-+2 at G]C!)06+J_(]3)"P7G& M:^.,GA'JSJV-\_)]5Y_MBGVS)?_ZD):>'J&NNRLXTTC!)Q\VQ=5#DU9[SU:, M.VAA3CI6EV0$C&]]Z>EAYKE)>[T]B]KT+NH?3J8JS,=LZE:HI$>$99;21?F/ M!55N*P5$_PE7?\W>&?2A,8Z,D(KQ!T17>GI0<#)+T(FC,6TA);CU@'NCYN5W MB5`O+O68M#HD>/C6V[2TT.DRZLK_O?2`,!%> M at _=S1U_8XX3O+G"*4 at 8NL`F`1@"+L at _VB6&9APOE4>L\)5>>JC,O'H:6P,TI MP7V8N7U&F)?,\M#FM_Z[>6E*"UXO`[:1!(Y%B6A8H(&VXS>.L2D#M^6VZBO\/LL8WT*.'\`PG- at 0+Q'&=<\J`[7/:Z. M-S[C"8BW/!^A_$Z7S/^K?O/N;FVJ/Z at O#GT=.$#W87W^SW_II15OZ[([7XPR MK.?5Z6>OJ.CEG7KGGX>T[XA_,(<.'-2FC[=HVNSE^G_1AA&U5!_;2H5'3#M2 M2ZL$Q!2EI*3IC,%E6KQNAQK=DMR[537">[)[NDK7!P^X0IF^9I^E6KFCT7\0 MM+K at W[IYNW%"80;$-)V1-TES5M587?0W:=Z M)8DT,8U^1ZAA29'UO):G256--P2X&[5YUL6^NW6!5U/=6E%RAL[.*U;Y$ZM4 M4ULK7W9HVJ)[+_(>]&SN8)G+P=55!67+_$W`PGTOWN75 at GKQKT,V`3%<\R-W MHS97%H9OMA1TP2#MC,$J6[Q..SPSH]U5(WS+(&1],$_^7)DJ76G5@:2F79=- M%Q56ULB_2FW6K(NMX!A\AZ95`N)JE61$V$8B[FL"3[)=Z7TT;LXJW_;0]/X= M_NDSZR&. at .A?MUS*+%UI+7])3;NT;$)WZ[/0BP3^]39%KJX%*EM68_NZ#_-[ M*6F]-:KMQ:,=Y^WV%N!Z%UX/FMKPEGC*TSPC59=3=N5F6AMVXR-#YX1]FP7&.\X;!+ MH2IK]OKOSGE?"5.S19ZJBR,@)KH/,[?/BZ9H58VQSW?O5G61=UY"+\R8Q^64 MM-X:5VG?G#FQ8U'\ZA;XC[^NHB7^^717:X1W.D\OE>T:8*PC_GV(-W0;SZ?& M^L[X((5SS,C/,<%Q%.OO$?IUSRHC/&5ZG#C,^HXZ3EUG%0=H?Q> M#^R.=>B']=;+*]4US+"Z/O!7O;4_VC"^UC\W;5#63R--4_2")$A"0.PY8V/( M;\T=?V#33O.$PN9`;C^AD9]!-*]@CJ at ."A/F256*7#W&J+S,>.#>E:F*J-44 M:T#8KU.K]_.=B$MUA/]A->7I$&V;*`&+GYD1&80NK2 M6!]ZSE#(W)@G)D%W+LRP%])D4F;31N-NH7N%QF>$.6DW3DKZ>\_DC""8:=P* M]-5Q1H9G&@).FHQUPYQFXP*';4 at SQA]PYZ at 5`J*_KNSO at L4>$.WN,!MW%VQ. M'J/>M8^T3*2`?4+PWJU="'J!JY750"KS8U7^V=H:? M]*/+NHA7L^I9S9F4[;_0EED1)L"'7\^6CXE\=SY0E":KQC(/WE9VSN[OFY;^ M(;?"PXBA-4["^[!HPS8Z!0JNNXC'9?\<'Y5C40CW>I5ZETGP?L*/-ST8M MXVOB&0!$D(B+;C"?NY_ZY$ MI*:)00.+TDE-E,_=N[1XY'\$7`5.24E1RIE%@<_<-6S2!O/*LF]68 at R(YO-J MF14*[8S;O',08Y,JM7`YQ/J]!-Z-U[*`^)GQK)[]@=O_V^"3Q\37!_])A-&D M*7"F?/5 at ACO_B6#@M/JGT=L\30JX\V:,Q-O<]O32,NN*MO$;(U"8=UO,YQ(S M*VRZ=S>V=W-<+0^(1M/:<&$DYH!HMWY$_CQJB%M=X at M9+OL%Z5\'@K;%^`.B MW?>BS5_KKX/FNF!WD>=8"+A[Y2MIZCTN]%F[6`)B;&''8NY?;;=[LP=+\RZ\ MN:^Q"_MA9S9*0&S!/BS:L,W/@RXPQ%1G1^E8%"BPAW#7P`6!37MC"8BQ/A(3 M];S&.*\(ON#45CN\PC'AO(`XXI=*OWJ6)R"6/*V.-RV.6G[XASA?/+_W0UT: M,(R7==?VKZ/_+H!;K_SVA9BFSZX@"9P>$,T#5YAF)S8#2SP at NC=J7D&8;M9= M754P^WU?(/1=94[+U at -_,VK MPPR[XLR`&$L)/CB;%PKLZ]5_)R7XN:I$UXU7[Q%#[>C"V*_\="/_P M`N]8&'<.?%?G_7\;4;W3^IT1$(SGMY8\\7U'V+3;L`V** MIZEC4*=0K1X0(^Y?I8#M+LP%FW#/PH69N"CAI07[L'@"8MBFU1'JK$7'HMBX MUY?Z.AFR;8ES#`-BQ,<`?/L[`B)".2X at GC+\%SJU:*8RQOU&'28^I0XW/A.U MG''OZ_K)[.4Z?_H2G3^M6O]A?/8?4W^G*1]\%326?^N^NXUAW/\W[0J>D/VU MNNU7UK`F+]6HM?\.?7;IH_4Z(X;ILRM(`J<'Q%@.&J$#2RP0N#>JW'B'DJO' M&%5NV*5=:\O4S_<0O$N9I6^JSKU:)=8S*J[<>0%W3&(.B)&>GPHIYK"BO*LQ MTDEHU[#0E&A`C/UL47`+':339\H8^W\6.T!#EZWS!=R?#>S+I MJ0?OR;[O3I!O7@,[J(FKCELQ(/KNF$9ZEU at 2`V+8H&)7'!40$U\'S76A)6]& M:$E`#-2DO365*C1ZFQRSW+\=M'I`-/>O8;YLO\QBV-?83UR4\-*"?=C1#H@) M'XMB5+=$1;[E[E*FW7,:QRP at FH^MA#YS['N7)0$1-IP7$*_XA4Z]JD(9Q8^J MP_4+U.&&12TNWW^M/F at L]7J@/-+G7ZGZT:J at X;R at J1\%WV7\7%.G)C9-2`(" MHN_SAD6%_M!E=%`C2>[=KQ@]0[K4H[>WM[?0YZV.>D`TNWO/G*$_!W0XX-;[ M=_1,?#G$^KT6!<3P387#-S%M:P'17)\\=R%\=P=L0I3_F4[K3H;WN42K.9?O MMU;S,5\]!?6^EY2`V+!(A=8SNG;/R-F- at X`8\FO'!L369MZ],9M#QA(0_;T< MQ_`,(@'1^BC)`3'HPFN7HC"O3]_5E-"FK)LTTB; M8?WW,\&/*W^EJH<2FRXD@=,#HMFAC%T'(_83FE`@,$^H;)MDV;P^(.0Y"L41 M$*,V@;+GO\)I/YW.?P8Q_($W?$",WCS+;$9X3)J81F,$IX$+ZGSO?[-](;.O MHQI/APF^P.B]^^@],;("H:\N at YXWBMC$-)(6!$1_AQXVK[8(,X[0YP"3V<0T M,D;%.N_VYW7>7?^CL0LVZ-&/;;JUK]ND2WR_ M6:99GP=]_H_WE6TW[/(/]$G05U]_IBK^:;Q^P=&K0(3G](`8<+".]7F01`+! M-E5D>L<3H6."[;.4Y3MXG*4[WK>;E1@#HGFBE%`OI4=A.<3ZO6,>$)/=24TB M+U+V-V5RC2C2"%>*PKUKT3QY'+B at P7=R[S]1]DYCKN9]YE]7 at T^DPX?D*!(. MB/Z>(J.^O#SB2>ZQZZ0FXIT'&\[II":^==!\GBU(-9W,"46",R[+[9=FS>]K_)^@1W"M. at .8D#7XD5:$N.5:O,.HMV= M@;8<$/W=V$=ZS87=G=,87W,19T`TF\/%>^=)4L!K)5)24NQ?L1`T_3UGO&ET M4.-=OMY0Z-*8Y=[W=-DL?_,U%^8[QJ)),"#ZZR>&5]`'1WNQL:0WIU]C&:"@6'$>"V%W=UH\PYT3.NV.3R; MBXLQON8B8K-ID_G>TJBON8AS'Q8E()K[_.#AQO^:B]B/19&8[PY.2>FBHB6V M#4L#F/43>@PV+Q!$F<8$CD_^G\:VO>/XY,"`>(=.&5&N4Z_]M=*+'U/Z^"=C M+M$#8H.>GOU,T._^UR8 at _F^8<81^=\LK+\4UC=Z")(@G()KO"AM1I=UN2>Y& M[5BW6.6C>BO-.!%NO8"HT)<+6_VCNQOWJ&;5'$T;U$?IYYHG0`D&@@\KE.E[ MWV$/C:G:;+T8OE&;EY6IH*OW)#1-7;OZ7T:>\#.("GPY\9GCEVJ7[X7W>U6[ M=9U>GC-- at _JNV)>9$N7MFGJ1&?J>:KTG at B/%6F`F\D^WKJ*:H MR#H1#>R at QJ-!2XJ\Z^:9&K]TE_RK5*VVKGM9;'RSA@>$B22'1`3 M7P?=6EWB;=[G4F;I6L^^0DW:NW6=%I<7*^^,]!:_^#R49[UPI9^MO$ES]/*Z MK=KCK>RF+<8+ZET:N"`P-)@OMG=EEFJEM4-LVK74:-[?7:7K8TLPYO"Z%%9J MLS4=[L;-QG387-PP.B%+<66J=.UN3YU[][/%>3HC/?A"E/_"34K_F?J[W20F MN@\SMYU+?JVM>_RMP)IV5?D[@,DHTI*@Q1EKQSX)'8O"<&\L]Q]+4U+4O71] M:*"WWH]9:\Q+0/VX,E6ZTMI_->W2TI(>OF5I.SP3`1%'B>,"XGK5/'/JI3QU7&7,:]&WWX[OI:3?_%D\;O5NOEX"^]NSK,.$*_NV7YBW%- MH[<@"KABC2=+ at U_[H!W8`D'@KHE M8]0UTGB\W;,;![+PO9B&*^8)8IW>+(W>(VE@$[&@YSH"2IKZE3VBFWJVPX`H MMS;.RS>N2H<65]?=O%1MCOS,>=?Y=ZCK&OM,4]\9YRH]2Y^?>9=:<&W%UEA7G,3BM7X5"6JK&W&PT>N at C("(2YP7$ MP;?KY&$S=$K1`SIUS,,ZM?BQF$LL`5&2M.\3C;O%^[M5-@%Q59AQA'YWR\O/ MQS6-WH(DB"L at 2G)O5_6X+'4V3@! MOO?^N91^6B_E%9=K\;I=1I.FE at 6"IETK-7M4EDY+=QGCR=*H\F7&RYW=6E_: MW?H\\+FR^`*B9UB[-U1J4EZO@'I-Z]Q-O?)&:EKE.NUH#+["O5MKRP?K;&L: M/5?K*[7!P-TZ3.>(%\M&=[S"9J=M\WF^:EI(1T4!/` MO5L;*B[-< M@\\VEH_MLFS2EF7E&I5UFN]BEF?]Z::L03>K?%F-]@8M2"<$1,^D)[H.-FE+ MU30-,NUKF;L at 9-TYQ5FQ52 M=3;'1[M0%O<^S-VH'>M>UIQI/]'(O%[JULW8KM,ZJU?>)%79[_SB>S5((L4]?;7M7]-CN3+2\_9WWG#S8!\0_VPYOVCC:''4Y\!0#:%:,G MTX2>870J8[YL>V4%`*"=<6!`O%7?&7JG3KYJIDX9/5>GC'VDY>7F/^I/P2/Z M^Y_4<^PC.F7L<[H_^%+WYK7Z+[OAW/E>2"^F:Q<\D=`T`4![XN]5-([>$-L` M?R<>X7IE!0"@?7%>0+SL9_I.X72=?.5].N6:.3IE]+Q6*,]I]NZ@$7WVCOJ/ MGJ=31E=J\J:@SP[^3<-MAO-?O_TTZ(O[]5AY8M,$`.V'T3- at N.<%VZBFO;6> M#B9JPS5K!`"@?7%>0/SQ5*5=7J;OC/R53K[Z09U\[=RHI4O)X^H2\3NOZJ4C M02/Z]"UE6I_W6[8WZ,/#>O:!>4'#J-3D35\'?>\331@;??KL"@"T&W%WRP\` M`)S*@0'QITH;/$W?&7&/3BZ:I9.OF1.YC/F=GCTHZ:LF_7W+1YKYU"OZ\:U/ MZNSQ)? M(2<][K^N5-=HTQ>F`````(#3."X@?KM at LKX]Z#:E#?^EOG/53'WGZ@BBCG&<)[4'=N"[P[&.XSX"@`````XC?,"XB6WZ-L#;U7:L+OUG2LK M])VK'HA0GM+,VOC'L??M5_3?0C<4>Q:5\4Z*2"R3KI\COT M[2ONUK='_*I=%@````!P&N<%Q!].U$F7WJ*3!I?IV\-^H6\/+V^7!0````"< MQG$!T?7#ZW7B)9-TXN!I.FGH#)UTQ2_;90$`````IW%>0+QXO$[,OTDG#KQ- M)Q7>J9.&_J)=%@````!P&H<&Q!MUXL!;=5+ASSUW$=MA`0````"G<5Y`S!TG MUX`;=.)E/].)E]^A$X?/Z/E=KG MVR```` M`(#3.#`@7JK4"P;)];TKY.HW2J[^1>VR`````(#3."\@]KY$J=\=*->%P^3* MOE*N?E>URP(`````3N/`@/@CI9[_8[DRA\B5-<(3$MMA`0````"G<5Q`/*%7 MODXXOT"I?0N5^KWA2LT:V2X+`````#B-\P)BSQ_JA/,N56J?P4J]<)@G)+;# M`@````!.X[R`>$Z>3NCU(Z5^=Y!2^PY1:N:P=ED`````P&D<&!`OU at D]\Y5Z M_D"E]BE4:M\Q&O;2=NT]+$G-:OS[ZRH>,D*I?8]0I14MT*K:@W)[!_#I M2\H:^;P^MAGVTFE#?;\+*`-^KNEKS'<+`!UF=94W3;6_]2DR0=_I=6S4<$ M at H$``"``241!5)ZB-._OLL:I>,6_Y=8_=.](8WB#G];[S3OURRO#C*_OT&-2 MEP`````0#^<%Q!X_T`GG#O"]#['S+]Z3>__;FG#I%4KM,T(Y3^^2/E^F[_/N=ND[=7J&V&<`````.`TS at N(9W]?)YR;I]3>ERKUNX4J?EW2ZIE*O6"P MIXQX3A]KA^X>,EBI%SZH5R0MO6VP__.`,M,*B.$^MRM3]>O/I4V/3E3J!3?I MWNW2QY4W69_=ID>^D/ZW?)121SRNUS>\H)QKGM/'`>.X3M/_9O[&O@````"` MTS at O()YUD4XX)U>IO7ZDU/-+/`'M\1N4^MV!GI(Y2Z^H6<]/':C4X<]ZPMGP M@?[/S7+)$WH[TNL5@?JU;WC[S,_[E9KEBLC_6I[KTBS.=!)6WD8FUJ;M;;#_S$ M^ENY)R"676[]OR1T>H+&T??Q3Z6__58]?)_]2=?:C`L`````G,9Y`;%[/YUP M]O>5VO.'2NU]B:Y=)6G5O4H]K\!3AE7I8VW7W9<7*/6\>[54TBME at _R?FV58 ME2>\#;/Y++CDWJNE7TIUJ^[5:;Z_6P'UL8G6_Z?JD7]*_WOW%6''<>TJN[EZ M4]<&C0\`````G,9Y`?',+)UPUD5*/3=/J;WRU?G.#7+O6Z<)/[Q,J;T'*V?! MI]+V9]2W]R5*[3U4U_^I60UK*W1:[TMTZO=OU-6S[[$^NT2I0Y_QA+>AUO_# ME0M*=.^69NFS9?KA!8&???^I/=+V%Y1SX24ZM7BY=FJKIA<8WXDTCM(W);VI M:VW&"0````!.X[R`>$:63NC>7ZGG7*S4G at .4VFNXACW_=^T])$G-:MRV6L67 M_=CSC&*O'RGU^]/UY#;K-1>'&K7M+]6ZO)_UV1`KO`VQ_M]KO.[]1-(GSZBO M]_>]?J34G[UA/S$K[U'J=R?JMC]_X7G-Q:$OM.K^B4KK]2.E]KI'2^V^'S+< M-W2M^3>K`````(#3.#`@7J at 3NO=3:H\?>.XB]AS0+ at L`````.(WC`N*W_CM3 MWSHS2R>?FMVR```` M`(#3."X at GGCFA?K6?V=:O9GF>$)B.RP`````X#2."XC=^_]8W^J6J1/.S/;< M13S[^^VNI!(0`0```#B0XP+B at X\_I6^=WM?7F^D)9^6TNS)TPJU)K6,````` ML..X@%C?T*@1$Z;JA#.^YVEF>M9%[:J%9Z0V+U_FR^G],[3D.NF:NGOU^CPX:^27<4`````$,*1`5&2 M_K+I(XV_]6[UN'B87&==I!/.[-=F2\<+\I4[8KR>6?*:]NT_D.RJ!0````!; MC at V(`````(!CBX`(`````)!$0`0`````6`B(``````!)!$0`````@(6`"``` M``"01$`$`````%@(B```````201$`````("%@`@`````D$1`!`````!8"(@` M`````$D$1`````"`A8`(`````)!$0`0`````6`B(``````!)!$0`````@(6` M"`````"01$`$`````%@(B```````201$`````("%@`@`````D$1`!`````!8 M"(A`4C7KP-XO]%G=_F1/"````.#$@+A#\XNRE9U_NU;6VWV^1M.SLS5]S;&> M+K0NEJ.'9WTOFK\CV1,2!VL;9>$!``"T.\X-B-G9RK]]I4(S(L&B?6`Y>A`0 M`0``X!R.#8A%4Z=J6':!9KP1W/2.8-$BGU>I.'NZ`JNO66_=DW^,0PK+T:,M M!L3]6CZ9@`@``-`>.3<@SM^F=^XK4';!?7JGV?S<)E at TUVKEK(FZ8D".LK.S ME3/@&I55U1AW'\.$D373E>T+2X?U4=44WS"R;OW=7Z8O M7Z[)07_++IHO;UPY_-$2E5TS0#G9VLVQP-N&*B'G[S!=T>O$SJ:U15-E:7YGJF(W?(1,U:6:OF.,<75YWM MF*^BG!E:4[M2LR8.\?PF9X"NF%*M;0'K7;UJJLHTUENWN4,T<=9*&8M3:Z9G M:T+51WKSX8D:DFN-^XHIJMYV6'7OSM>4(?[?3JG>9LV7M;X__F[@[Z[Y9<"Z MHC73E5TT7S4UWN$4R9LI(RZC@'4\<%H]Z]X.+1R=$W*WOG[Y9.7D3%#UY_;5 MMF9ZMBZ?N\G^0P```+19#@Z(.Z3];VA&0;8*[GLG*"28P:)>:Z87*&?T7*W? MK[W)#QZ0-R_9KKR\R?KA9V')4G-!S[3!Z_7R.[\N/FM M>Y2?/4'57YA_W:_7IN8H_YZWU"RI>=M\C[1^[FCE%$S7 MFGKOZ*,%1*LN'GQ7=GP3BVZ/D:7I"CT0N]WUNCZ=DYRLD=K;GK]UCC M_$B/C\Y1SM37?`%ZQ\+1RLD9K<(.Z;_>9MFC\Z1P53E^H3 M3X5IS_JY&IU3H.G>"HMI?''6V8[Y*LK.4LT=G:."Z6M\P6K-]&SEY.1J]-SUVG/87__9N;G*]?VV M676_OUWYV@-^UURG=^>.5D[.9"WW#US9^04J˜ZUU-*9E%#4@ M2OJ\6A-R\G6[]Z'?^N6:G).CRX(?%/;>GZ6"[&)5!26YYK?N4;[O;E[T at +AC?I&R1R_4KIBF<9/F7IZM M"69"W+]J*O8'C^@!<8VF9^?I%V^&"X31-:^\ M7=DY,_2&;_"Q!L3`P.O[ZVM3E9-_G]XQIK4XJ/(#Q_F.[LNW^7YQUMF.^BGS+S6_;XR/]Z\,7+^F&G-#O M>)KK>H.>M3R+JP(N*C2OO%W9(<-_0S-RO.N/]3Q?T.^"UQ7/?[7K+8B`B(``$`[Y/B`*-5KY>WY MRBYZW&KR%QCV=LPO4O;(Q[4M>##-*W5[=HYFO!'Z&Q_SY'G'0HW.R=&@ZV9I MZ0?6W:D(/GID6,!)_?[EDY5]^5QY&MUYQG?[RM"08@:/Z`%QO]Z84:#LW%$J MF_^Z=6:`Z`DQ(?.P8[Z*?,T;8ZG7^2K*'JG'@Q=0\\J`)J9KIFN:?_=$77GYY1KH?9XRH8#HF8[@9Q8])=Z`&!K``G][4*]. M"=/I2;R!--XZBR$@'GQUBFW("JZWE at 1$N[MQH2$U>!IB6$8Q!T2I^=V9NBP[ M6Y<]6!.FLOSV+Y],!T,```#M4-L(B+*:P.6,UL(=@0&QQ7<0S>:77H?W:/W\ M&U207:!9[X>;3D\3P*+Y.Z0OJC7!:&K8\CN(WND.F"$=^.3WFC$\Z)E" MND&Y.<,UX_=;]$7#8?\\MB`@1 at X!K1406_,.HBEZG3G^#N*$:L]T1PB($9=1 MA("88ZYDUC. at PXJ+59`S6 at M#\VJ@#U_4BQ]&^0X```#:G#83$*7/53TA1SFC M9VBZ$1`#[^3Y!3Z#:-\4[XOJ"6'N/D::#F.*JHJ5731?FY9/#GJ&S/[9L.#G MRMZ8D1,:BKZHU at 3;0&4)&X;L`\K^Y9,3#(C6M,[=%/XN:DR!+8EA&;\Q0 M3DBX_4+5$\SEW:QMCQ]A<;6INUCOW%2AG]'R%[0L)````[58;"HBRGA/, M#NS],J9>3+TGO8]KD_5,VN$]Z_5 at D7$"_N&KFO_Z%GENO#7KP*;'-3HGTAU$ M61W3#-.P838!*(9>3)O?N4\%1N^>.KQ'ZQ\L, at +1%_IC]5)]\)G_\]]/+PA[ M-^R=^_*57?2(-8^'M6?]?-TP*$PUS!NB**1&>IZNO MT?PIYKO\YNO=CZHT(2!8U.NM6=?XYM/;$VOSMFK_>_I\O90V>][?=X4U#]8[ M!NS<#UQS,9B0?$Z2MKM?*7WG=`AGD/8IAFM)&7D=1LON,Q MN%Z;-VGNL-"[D-Z+%_-M;R,2$`$``-HK!P9$`````$`R$!`!`````)((B``` M````"P$1`````"")@`@`````L!`0`0````"2"(@```````L!$0`````@B8`( M`````+`0$`$`````D at B(```````+`1$`````((F`"`````"P$!`!`````)(( MB```````"P$1`````"")@`@`````L!`0`0````"2"(@```````L!$0`````@ MB8`(`````+"TN8!XY/^VZZO7ENO0T_-UZ,G?Z-`3CU(HK5>>_(T./3U?7[VV M7$?^;WNR5W<```#@F&HS`;'YO0TZ_.PB'9Q9KGTEQ6HHO$3U%V?IR^SS]&7? MQN2O?H#````QX3S`^*1(SJ\ M["4=N/,V-5Y9F/P003FN2N.5A3IPYVTZO.PEZ/8@/A- M_9'C)\VHL M&IKT4$"AF*7QJJ$Z_-PSR=X\````@*/"D0&Q^;T-VG?#N*2'`0K%KNPK+E+S M.V\E>S,!````6ITC`^+!.?>KOO\%20\"%(IM^5XO'9P],]F;"0```-#J'!<0 MFS=_H(;!^.2^JV`@```+0VQP7$AB&7)OW$GT*)I30,N32IVPH```#0VAP7$+_,/B_I M)_X42DPE^[RD;BL```!`:W->0$SV23^%$DX[<`````[0D!,98R\E$=L:;OJVGAOG>Y#NWP M?.?($YT)`C*40$.,OX0+BY-_I MFXCUV+8*````T)X0$&,I,07$8UG:0$"T+;VU_Y5]#JK'EA<```"@/2$@QE(2 MOH,X15])DM;IX(!+=>"UK?JF6=+J*;[`U#!U@=P[Z_6--?QOZC_45P^-4T-6 MI&F*$!"S?J!]%0OD_OA?GG%)TN%Z'7GK4>V[M'>4>>VO?0^MTI'Z0]8/#^F; MG>_K<,4(U4<L` M`1$```#'`0+B,0F(_]21K5_Z9W+U%'W9M[<:G]@2MAZ^63W%"F5Q!L2^5^K0 MYV$&NN-1-4:8SX;9-5%^=Q0#8M90'=K:;/\=?:FOIO5/_GI`0`0``$`[1T`\ M)@%14O,6'9XTP!_Z?GR/FILEZ1,=GG2)ZK/.T9=]>ZM^U+UR[_?\_=#(1`+B M.:H?D*>&2R_T_W_0+'FB5Z1A7JR#'UC#?'JD-9T7J/Z*:W7@^OPHXXT>$(/K M([@>&^Y_U_/!CF>UO]":]JP+U?C`.L_=U2CAEH`(````M!P!\1@%Q)`@YPM0 MX27<([[SS0>+=A7&,M^4!\<#J M:+7AS-Y0`0``@/:$@'B,`F+([XY60!RW0%^':ZD9<9CGZ,NBAW3DL/'E`UN# MGH_I/UQ3U.XH.9O)OKU"V.,9Q at C3$=PZ3_`T\G- MW_?[%\K61]68=6P"XC>_&Y_\Y4U`!```P'&*@)BL@#CL(6N8G^G0Z-8*B/Z_ M!XPOZU:YHTY_:*D?[GT>-NC^FKAI(C3Y&N2N>.W:NP? M. at U?+[_)TS3T!T-T\,_^'E0C!<1]#U?KX'67J>$'GM=AU`^ZTPJ(S?JJ]!R9 MSREJQV^U[P>]]67?WFKX^1^LYQR]WPL7$*_6X2\\?_WF];+`5WD,KK`Z[6G6 MURO*U.B=A@'#=>")53I4&NT5'01$````H*4(B'$&1%NKIR00$,\)?>;/].GC M$7OMK+_[C:`?>'HHW;?HL]!A->_2U[LC3$??:`#G5,1WX[-/GK`0$1````[1P!L14" MXM?/7IU80.Q[CKZ\=)R:UGRH;[Q!\7"]CORU6@>&7Q!ENOIKWQ-_TM<'K+1V MX'TU#3M'7V9=J at .O;=4WS9+G1?,OZ\"0WMKW[#\C3T??WFJXX0%]]?&_K-]* M:MZOK_]:K0-#`N_>U0\O"_S>@7^H^:5;`^\(V@;$<_3E@#$Z]-8_?+_]IOYY MXQE,[S3X>U[]IGZ'FE\J,^Z2.JL`````[0D!D4)I00$```#:$P(BA=*"`@`` M`+0G!$0*I04%````:$\(B!1*"PH```#0GA`0*906%````*`]<5Q`K/]13M)/ M^BF46$K]CW*2NJT`````K`B at 4NU+?_P*YW_QCLC<3```` MH-4Y,B!*4M.\V4D/`A2*73E8\'8@/C-E__6 at 1G3DAX&*!2S M'+CS-GW]KR^2O7D`````1X5C`Z(D?;.O4?NN'YOT4$"A?-GW'.V[?JR^.7 at P MV9L%````<-0X.B!*DHXVL`````CBKG!T2+ M>^UJ';C]ITD/"I3CJQRX_:=RKUV=[-4?````.";:3$#T.O+)-AV:_[CVWSA. M#8/S5?_]ODD/$93V4>J_WU<- at _.U_\9Q.C3_<1WY9%NR5W<```#@F&IS`1$` M````<'00$`$`````D at B(```````+`1$`````((F`"`````"P$!`!`````)(( MB```````"P$1`````"")@`@`````L!`0`0````"2"(@```````L!$0`````@ MB8`(`````+`0$`$`````D at B(```````+`1$`````((F`"`````"P$!`!```` M`)((B```````"P$1`````"")@`@`````L!`0`0````"2"(@```````L!$0`` M```@B8`(`````+`0$`$`````D at B(```````+`1$`````((F`"`````"P$!`! M`````)((B```````"P$1`````"")@`@`````L!`0`0````"2"(@```````L! M$0`````@B8`(`````+`0$`$`````D at B(```````+`1$`````((F`"`````"P M$!`!`````)((B```````"P$1`````"")@`@`````L!`0`0````"2"(@````` M``L!$0`````@B8`(`````+`0$`$`````D at B(```````+`1$`````((F`"``` M``"P$!`!`````)((B```````"P$1`````"")@`@`````L!`0`0````"2"(@` M``````L!$0`````@B8`(`````+`0$`$``.#3M&N=5OVE+MF3`2!)"(@`@..* MNW&/:FMK55M;J[U-R9Z:]J5I;ZU5MWO4Z$[VU"`>[L;-6C5GDO+.2%-*2HI2 MSB_7A\F>*`!)X=B`^,'VW;KY-Z\J\Y;'U*FH0AFC[FNSYEXWG?^&&YSH^X3VG0I at 73-*A/NEPI_GU'2DJ* MTCH/TJ/_=\RG^!@Q]Y5%8C<`!')D0'SV]0]TUO at YZG1UA3*NND\913.5^ULCDN M:SAIG=5K<)E>W1[]\K]C3 at 8=RKU[@RHGY:G7:>;)5YHZ]\I3`3 at F(VQZZ5-VZ=5.W;L;VYSLY[Z6\XME:N[MMW89SS#[!Z0'1 MO5L;*BZM+,I22DB)7^FG*&C1-IZWM_M8Z M`1&(Q'$!\8,=N]5CPJ^5/NI>9115*..:!Y1Q[6QU&#-7'<8^I`YCY[7A\I"Z M_.0AS7MU0U+K^+A%0`SBUL;RS)"KQK[BRE3YQL at GIXXY&72 at NC=+E>D*%U@\ MY?32]7$.=;G&N*CO0&TW(`9<$$A)44J*2^FG=5,W\X*"JZO&+&GM9\&VJ2+S MZ,P_^X08N#>J/-,587WMHOQY&]4JEP9B.>[5[3H.`F$P`B(0B>,"XC7W/Z^, M4?ICM?_5ATG/J6.)4^I8\G"-E:LZ9ZX0!TG/*F^MSZ3 MU#H^;A$0`WWVF/*M`./*G*&W&]V2FK2KJDA=K&&Z"A>I(=+8.1FT5[=``WUU M6ZJ5.QI])WONQCVJ635'TP;UT>#'/HMON!MGJ"?U'23^;<")`3%D.IIVZ:D1 M&59(S-6\G:TX8G>U1ARE^6>?$-U[9=U]%P0R9[SM>U;3W;A9E85=6K?^VN5Q M+QJW&O=LU;J7G]6JFG#/PA(0 at 4@<%Q#/&C_;TZSTV@?5H?@1=;Q^OCK=N$B= M;GY6G6ZI;MMETG/J=%.5.I8\E=0Z/F[%_S+S#>N$=5RNQNU>=4<31N4I6Z=TWR_/V-PN=YLE1MC1R,@>IM>=PN9 MY^+9:VWG.1%1I^.],G6W/L\H61WT89/VUJS2$^4W:V1>+Z-NK>:IDZH4MJ7B M^E*='B4 at -NVMT:HGRG7SR#SU,O=#49I!1MTGN'=K[>R@?5M:9_7**PZ_+2M< M<^V@$K#\C?4B[/Z^2;O6>=;MT]*-.WJN=)W6K9>&/K$US.]:8KU*3[?&NO5J)^TSMW4JT\/942I!U_=AJQ#E=H0:65W-VKSLO*@ M[<2S/+MUR]*M_ at -5XN/RU<<(5;O=:MPIX4Y4ZW?*\.DU^49U^^J(Z_?2E-EQ>5*?)+ZCCS<\FM8Z/6\H0_J6O;U0``(`!)1$%4N4M)49?\QP)/\`\\I^%1FFFFI'11 MD5T3/&,YI*4%_\8(OBU<7J&,$\"`916#<`'1?)XJXDEQ:P?$!):9.2Y7NM)# MZMY?HMVACDTL02#,]-ENW]'G.:U?A:*TOFZ%Z9#\38I#P\0'=YT;=5FZ,LL# MI]/(^H6Z%2GI$:EJ9IGX5P4TKW=J^8+BZ1MT/ M!&\+4=8+]T;-R^\2<7B!^\768DS7B&J;`+A:)1GVRSRLJ$U6P]=#U.--EWP] M9K=OC[HL,Q1\32.AU8]Z&I-B/ M+2VI7R#)'!<0TZ_\E3*N?D`=QCVFCC<\K4Z3JM5I\@N>@-@:I?0U%;ZX1:__ MXZ#^[=OHO]:^QGUZY]V-*OK%TM8;EVUY09UN>3Z957S\BG)W)D"K!$3/`>2, MP65:O&Z'IYF+>[>JO,W&[.XN?5CA>VXMN&FBFO:JMK966S=O-TZJS8"8IC/R M)FG.JAKM\387?62@[T0WY'FWG;/5WW=B-<-W$*Q;DD at 3T^A-=!J6%/FN9'N<)$Y1K=6E)RAL_.*5?[$*M68KR5HVJ)[+[+&GS%> M*\(>Q%.4XNJJ at K)EJMG3&/%.:MS+R\ZV"F5ZAY<[3W&=8A[%@!B.>V.Y_UG) M+D4RLW9BRRPHC+K2U6?<'*VJV:LF26IZ7W?X3LP&:D&+$V+K!D3WZA+_^I]9 MJI6[K'ENVJ65I?YG=OO/WMG2"8\A()HGL;D*R"L[9RN_`.92YFE*^6OVI4J]06<_ at JH6F.:SRRJ\J^#DIKV/J^Q&>&61Z3UHD'+QWBG MI8L**VN,UYVXU;BG5K6U-=KRJ=TR::EHZZNYS&/9/MQ:7]K=-R]%5;L\VYG< M:MQ3HU6_&!C^#F+#$A5YPVB70E5ZMU&YU;AYEB[V'HM"C@,?JL*[O%R9*EVY MPVC&V:2]M;6JW;I9VQM:85P!ZZQ+77,FJ7+=5L_R"M at _>_;?O4>5:UE,^QJS MGB_2E%4UJO6M!&[MKO8?!T/6K5B/+0G7+Y!\#@R(]RCCF@?5X;K'U?'&9SP! M\9;G6Z7\UP,?Z*W0%@]!#NNMEU?IOUIIG/:E^EA4)8(E(2#VG+$QY+?NZA&^ MSP.;=KJU8KSW8)>A\2&)QW9"(S>O:UB@@=[/0ZY6FR=)*7+U&*/RL at +_E7I7 MIBJB5E.L`7&G9O?W#K=0BT*.AL9=MSA"E7\YV(0W8SE$7-X)+Z_HPXO[F9\H MZV at L=VSC"HCNC9KA.TGJHC'+S?E+?)F9V\>(ZM#U>..,GO&%[HA:,R`V:%&A M-ZAT5UG(+6-CGF.^HYS(='A]IGFYWN734S:K9QA&G0Q<$'+RV=)G,/WK86B` M";N.-BQ2H2M"W1G-7KL;%;^^]'1K'2S2DM`S<"T8&&Z_$6&],"^.V8308DX=)U6WN/SGS,WZVY%8I^)K_>WW?]!_ML)XPQ4D01(" MHNUXPGYN-"U*&2&;\VJ["8WR_%64S]V[M'CD?QA78*UR9E'@,W<-F[3!=_73 MG)48`^)G\Y3K'79FA;:%?,$X6$=IUAKPJY8LAUB_%^MP;+[O&A/KG%B.:4`T M[SRDJ$O)ZL"3KQ8LLV@!I'4[B6G-@&AN at _;KM'\9M/RD+I9Z\(\OGKJ*O-VW M7D`,77>1&B MBPHK-QN=U.S1UG6/:N3IX>LW1+1Z#1L0S8L/F:H(W<"-]<0E.X at WK!('6]^ MMA7*]*2 at .C>J'D%7>V?M7)U M5<'L]WV!T'\KEM[AAN6IY.4P$Y.0HM3`J*Y M;L04*`-_?,P"8L/R,;XF5"G=2[4^^#RO!+4X(#9MT;+RXL!WZ067A`-BD[8L*U=Q<`;ON"I,O88-6)$OAK@; M]^CU6WO:S),9?&)M`9#HN")-O^68!,2 at Y1#3,:$%\PPX@/,"XHA?*OWJ69Z` M6/*T.MZTN.5EUH?:%32>?[S])WWO9\]Y/K_E!7WOT8]#[C#N6KVB=<9O4Y`$ M3@^(YH$PYE=6)!@0 at SHU7JJKIHV**#74<][,,VP'ST at 1JW7L`$KU@[. at N] M]$706#[7U)\%?V^QQO\EZ"[C/S0!`1$W^<-BPK])R5&!S62Y-[] MBM$[G4L]>GM[=.RBDM6!9VA'/2`:W?R[,F?HSP$O8CVGC-_4.7 MHBKM"!RXJH:&7P];.R#Z]P&>CFU\T]*T5S65A=9=<)=R0UX4>?0#XM%AUH-] MT\2`;Q,0(\X_`1%(C/,"XA6_T*E752BC^%%UN'Z!.MRPJ,7E^Z_5!XUEI\;; M?*_?\G\'?>]S39W:\O';%22!TP.BV:&,;><%MA.:4$`T3Y!LFUC9=&'N&KA` MP2^3:)TFIN&9=^/LIM.1SR":\VK304A$QR`@UE6/\$V?;1?N=O,1Y]E+FPV( M,30Q]3=//!9-3(U7S at 1L8^%??^'1LF<0EX_Q;OOV30 at 3>08Q>A-3HTE>P.MA MW-I8T2_@?;"!Q:6N8Y:$[)LBK1?^9L*Q/D-W+,7^FB$IAA8+"38Q#<_H&"CF MCI,2'5>DZ;0!QVETZY\CZECWU8&>/G*V/BPA:7G%>#`^*G M*KG1YKM/_%_0]QHTYYZ6C]^N(`F<'A#-9W!B[OX_D8"X3169,1S at M\]2EN\D M["S=\;[=K,1X`#1/O!/JI?0H+(=8OQ=O0#2#?FN]!]$W*2T,B'4+-##67FH3 M7&:!T]#&`J+3.JDQUZ6`9="RSJFBC3?:>G8L.ZGQ:MI2I4G91K-75[I.RQJE M\F5;0CK/"AE>T/C,Y_9"7O^3;.YJC8AGNUL^QO]R=[N>3F+JI":^==D,V+$] MPYGXN)(7$(V+,,%!/>Y.:NBE%&V/\P+BT#MURLA?*7W,0\JX[@EE7+^@Q:5+ MY?\%-:'Z6G_[G__163=[O[-(9]W^O/J]M#MD>I97MGS\=@5)$$]`-`ZZ=M_U M=YW=F@'1?,V%?;?8- at -+Z$31[*3!]GUN3>^KO%]@AS`MNH,8\,H$N^[J[9E7 MQ^VN]#LR(`8T_XOTNI(F-38&?19E'?7?V4DD(.[4O%Q_T^'0)GG!$EMF@=-P MC`-BC$$VMM='T1[54+D_8*Y746^@VA_`2FA@&B^YL+N MKF>8UUR8WBOK'DTE1?._:C';7.\;77!3%L8&; MK[F(]1U^B8XK:0'1'&]P2Y`$7G,1USP##N"X@'CRD)_KE)'WZ-31CNWIH M3)75U;J[49N7E:F at J_<$,4U=NWK#9`N>053 at 2]?/'+_4]Y)L->U5[=9U>GG. M-`WJW`$QZ.7S9X[7TEW^%\SOV;I.B\M' MJ4^Z*_0=;%'64?^)?8;&OF*_4PL7$#^L\'?V8Q?V[22TS-2R@!C/.F7](LHV M$-_XW:M+?+V[NC)+M=+_-G>M+,T,?_(>S_[%9CJ&/F&^1J9)>VLJ5>CM'"JD M*;`99,_7'>\WR?=B]#F3E-/5:!YN5R?&!;#^,_\>\@RJ^0SB^7=X>C/V[H,F MY9@]'\<1$.76ZA+CV=?2E?)7[4J5^CK-ZB_;7&2\[\^5WD>CRI=I<_`%EL`I MB7!G.7A:UGKV+6K2WJWKM+B\6'EGI,=XD2X!.V>KO_72]SFK:K3'FH^F757^ MCH>ZC-'RF$8?^.[.":_NEF=7OD/K%IO[>\ MX`T\X&)3%Q566G=QW8W:4[-*T\Y0T9*0EWW&=DQ(N'Z!Y'- at 0+Q#IXPHUZG7_EKIQ8\I??R3K5(N>/Z? M,;W,-=CRQUMG_,$%26`>:,(4_\X^\"7R(24MW=?37*L&1$EU*TK4(UR7]=8) MS?#G#G@'EG!3L[HE8]0UTGC2>FM<]7:YC=`:OA?3<,4\R:_3FZ71>R0-;/(5 MJ3?%-/4K>T0W]71>0(RI?E-2E)+255/7&3^*%C+,"PAAEJM]0#1/AF+=!J3$ MEED2`V),Z^'_9^_>XZ,H#[[_\[K)@O$05'B>&W_E1JM6\$"P6>G6F))*E'`* M1Z,&A(J`B!2*2J262E10%(J(E6A$U(#1"E346PL4K'@C'NI#%2N"%42*0FVX M34)"B+OH]_?'SN[.[L[NSB8+.\3/^_6Z_DAV=^::F6MFKN\<$]6O6J^./R?N M-&=>,B?ZWLT6!L18Q77&2*VP2/-A!R&B?C-$Y?<,BKU=,#V9V'(>13SE.*RX MSM"0\GN,A^`D$Q!E>6]SU#H])\9#DVK7Z==Y72/N1?''Z_K'(U_U4V[57NT_DK at .9B\\DJKQAQ>D05(!49)WIZK& MY*BCZ7U5KJP>&E/^CO9Y0_<7I#H at 2I)WWP;-&YVG;L'W_KF4U;F;\D:7:=FF M/:8S#2V[%ZEQSQK-&Y%C>L^92UF=?=I0UD_G6W4T95UMO(FE>L=_VE=50UM MYG*P^[UF!D1_U3=$S-_`M(Y6V3*+:;41,JHWEJG?V:9'XQ_5@"@U9YD=WP'1 MF.8-\S0BIXMIFC/5L5N>1L\+G&V*FJBD`^(7CQ6I2YNL^U*K`&7A31_Z<\:]&=.3MW)O: MJ.V5TU688WJU1&9'=`]ES'F at W??.RJ?9-[?&/.A6YZ&32_7IEUUULO%NT\;YHU6 M7K?P:0ALW_98Y/:DQW74`J)7=;O\5T%<-RQ/W;I$K^N3*F/LU"VO[M$'_WLX;,7W-A[2%_6^ MB-I\HZD8+`"!Y MC at N(F86WZL1!O]%)5]VGDTL>U,G7/7S,RO_WQ)Z(VE3K[NE'9UP`@$BA,YT= MKG_U^#JJ'CRK$.,>.C3/%R]H=MFC6K[\!6W:L5=[]QX(.[C;N.M^Y1$0`2"E M'!@0;]&)@^[025?=JY-+%NCD48N.62E84Q]>F2,[=.U1&A<`($+PZ9)G:=KF MXRD>AIY`;/^2N=.&"&3AH^6R=?,U\GERQ, M47E,Y]_ZJ/Y/S,^7:N;.B,IL7:__+V7C#R\`@'#>?1M45M!5EY3%>%")8S5J M>^48=>]:;/E`&;3`YW]2V4W#E->MB[ITC'CU3N!^MYCO0 at 0`-(?S`N(54Y79 MOU0G#KM;)UW]@$ZZ=D%JRLSW]+DD;V.UUO_W&QIRQ^/ZKS'&9V,6Z[*EG^E` M6$V^U=I''TG=^",*`````#B-`P/B+Y79;[I.''J73BJ>JY.NF9^2TOOE)!\: M<'"K!H],S;BM"@`````XC>,"X at D%DW5"X:W*'#)+)UYUKTZ\^H$4E&?T^_]- MIA:-^N.##Z=HW-8%`````)S&>0'Q\IMU0M];E%ETITX:(^U)8[M=_WKQ,XY[_NS9_V:"Z(X&Q^O2_!_;KSR^M5>_Q]Z=XG-8%```` M`)S&@0%QHMI?,54G#+Q#F4/O4N;P.:VR`````(#3."X at MLN?H/8%OU3[`3-T MPI!9.F'8/:VR`````(#3."\@]AZO]@63U;[_[3IA\)TZ8>C=K;(`````@-,X M+R#^;)S:][E9[?N5ZH2BW^J$(66ML@````"`TS at N(+I^=H/:73Y)[?I-5_M! M,]5^\*Q660````#`:9P7$"^[7NWR)ZI=WUO5?L`=:C_HMZVR`````(#3.#0@ MWJAV?6]1^P&_]I]%;(4%`````)S&>0$Q=XQHW96_4KO^MZO=P#M:90$` M````IW%>0+QTM%R]QZO=%5/5KE^IV at WX=:LL`````.`TC at N(&3^Y1AF7CI8K M?Z)/A\IU2;%0.Q^N3(N["O7Q45RN8?+=HHR<80G*53J] MZ#>:O.Q]_7[F*!O?=T8!`````*=Q7D`\[V=J>WX?9?3HIXR+B_PA,4XY<\Y? M];>WUNB>>^Q8IH^=0Y2J?[? M6!7W!(U^?EOP^XW[M^C6XJ'&YZ-4]/SGJO-)\AW2WY^_6YV#OQTASZ.?JE'2 MRNFFX?5_2N_Y=FO6B!CCZUET+&8E`````"3%@0'Q,K4]+U\9%_151H\!RG[T MG]*N9Y6=/4 at 9V2-UXUL^U;YXES*S!RECV+/Z6/_4/<,&*2/;5/H]J??4H*I? M#0__?ZR24ZH[U[^JL=>4Z)3LH>KSW`'IM?G*S!ZDCG>^)V_]VQK=>Y`R^Y3K MS[X&/3UYJ#*R1ZK/\L_DK:E3M:25TT/#.^?!?YCJ;%T`````P&F<%Q#/N51M M?]0[^#[$[/(]TLXJ9?<8H(P>`W3^PY])7ZW6SWH,4,;0*GVL/;IGJ/^S0,F< M\9:D3;JV1_C_[95BW?`_/GE?G:V,'@-T[3I)Z^X+?G;C9NF+Y;]E+]XC[7Y6.8'?V"UY<[3R:ZEZU1W*O+"O,BZ\P0B(-P6_ M<^U:26OGF'XWQPB(_K^S%^^1_KY$YP3K9]0UH@````"`TS at S()YSJ3*ZY2OC M_`)E+_Y-"_].6!FN:]?6 M2K[W=&-N^&<=?_..O`??U-C>AG*/S+KI<&=TO M5\:@IR-><[%1UW;W?];YQI?T]WK_#QMK_JDW'R]5Q^YC=<].23N?5K;Q/>OA M&'8^K>SN0U7T[*[0:RZ>_;4Z=[]<&8%A17W?--Q`0#3_SR@`````X#3."XA= M<]3VK%[*./9.6I[MD=MS\U5VQ_EM9MCWWLE99`````,!I'!<0VYUYL?[COWH:3S/U^$-B*RP`````X#2."XAG M];I"_]&EI]J>Z?:?13S[IZVN9!`0`0```#B0XP+B`XN?T'_\(#OX--.V/_2T MNC)H["UIG<<`````8,5Q`;&FMDY#QTY5VZX_]E]F^L.?M*IR9NX at K7WC[;3. M8P````"PXKB`*$G;/]VER;^Y5^?F#?:'Q+-Z'??EY.YY&OB+J5KYRGHU-7V3 M[ED,`````%$<&1`EZ?]MW:;K;[E3YUQ6)-YMC^FZ_OU5LN"O2NEF[6 at -%\!QSUD!L?YE3?6X-7EU??,^!Q!E5T6Q MW,45VI7NBC33^AENN6>L#_Z]JZ(X[&^S^I>GRN,I4<4GOJ-1$\UPNQ5CU"D? MCSNLY*K/\'&:^\IN-06^MJM"Q>YB5:1\P39I]RMS-6YX'^4&QN_IK;[#QVGN MZG_HV&Q]C]6\3D9XG>*U0R>(7&^.EE1M7XY5?9MKVZ(BN0MF:'W-T1AZO/9> MKY>G>N0IJ5#BS=HN512[51S8*,3=1B0SW.-1"KD_N6I\K at GBWP(?']$[LCV+"V)L6/;ID5%!9IQ='IPQY#%3K2I5MM?F:DA M'H_&5AGG+XY2IV77TA)Y/"6Z][5/U6#T.7P-![3]M0K-?7Y;:D<6D_,#8NQV MZ`Q.#US'E?J7-37W:!UXDN*V]VV+5&0[F$8$Q'B2&N[QR(G;D!9:/T-N]PR% M[1KV;U;%A`*Y"V;K;<<'_10LDUT5*G;WUP++!+A-BXK5H^E1%J7T.*9/;]Z5 M;^^@2P);%_0G(+:([TW=E>_6V,B$6+]:D]T>37TY%`]]U1OUT+B!_LN@/+UU MS:PUVAO@Z>H*N(H8-.V%2J]IK<\;K?< MN0,UI6*+@@?5K$[IQVS at _H8[8\U>K9EUC7I[3#MH7[4V/F2JQS6SM"946>VJ M*)9GYGKM73-7XP;FRNUVR]-[L*94?1+>X6W:K5=FC5*?7'\]T/UWE6A8O<,K=F[1K.,<5K.OX1U M"RQX_S(=W-L3'%]IY9:P[_BJ-VIN<#YXU+OO*$U;M=UJH?G'6[Q8[[Y;H2FF M:2A=L4WF+L&_7Y\?=ME=;I]18=-I-7\6+.@;CIKO```@`$E$050?N^VDI$W\ M6Z_/'Z?A?7)#ER*.BAZ.>:.T?H9;Q15;M*5BBG_:. M&^S_G=NCWM>4JM*\K&-M:Y)NNTW:5CG%V,9XU'OP.#VT\3G=%BL at QNBXF=NN M[6U\@NV"96VW56K*8/_T>GH/UKB'-NJYVR+FK8WM3?[LC>'K4I]1FOMFC9K, M;=S36]>8MLE6EYC&W:?&$+6>)]K.VUEG8[4'V_N:Q,LB?C_$BHVVY9^)6E%J MK"/N7`V<4J'PS9I/U1OG:I2QKN7V&:72%:]H4:)+3!,.-_GEEVC?:'VP(GY8 M,+?IP"7V"][XW]`7:K:HLM34%QHX3G/#MJN1PX\1GH/S*,YVS6H^VAI_B99N MW:)*T_SN,VJNW at S;K2;95[$*:+XUX>TG8=TBETGB_O+6>'T92ZEJY]&^K!PM M=_YL14;$K0OZRUVT2*%\F*!OD&@[4+]:DR/[*:9M7;+KR:Z*XIA72#J1\P*B MD=;=8ZMDCHCUJR?+[9FA]8$67O^Z9A9X5++ at 757[)%_#5BTN\:A at YNO&S/=O M##R>0DU=:5PJY:O6FAD%X0UHUU*5>`HT=:7_WIZF_:]H1H%')4NM,_Z756/E MR;]-:RQ;@7^4R&.^C&3]#+D]'N66+-#F_?[XT[1ML4H\X>';:H.^JZ)8[H("%0:F([@H M9JK`4Z(%[U;+)Y\:MBY6B:=`,T,3IV)W at 0H*`]^)P5;=:K1^AG]>^K_C4\.G M*S6UP*.2BD!'R]@1/!!8!DVJW?Z:WHAU>5#4>'VJ?G>!2LR7\TFJ?WVI%KVV M7?X#R4W:_=0-\G at FZ/FOXL\?ZXUZBMJ$ZO7ZTD5Z;7NM/\PV[=93-WCDF?!\ M-?2$GD*IFKE[B9)3=K_R at P5>$JT=)=Y.`\$IZVI M=KM>>^.3F,LS8;NP>30QT9F01/4.;"N&S-X at _^+US^M8%*S)>Y-2L@)FIW/KT]NT#N MB$M,+>>[Y;UGB=ICK&VDC7E0L]Z_;5ZP.;@R'D2O:U)MNT&+K-= MO-58KOLW:/803^Q.DE2S>&MSN;Y@]Q-]I"5:V&=L; M7[7>N+M(;D^NLW(S]?DYXQ[KGT-^N+]U[0EL#L.](6" MZY*Q??28;S%(-B`&_K38KD7.1]OC]\AC6G?4M$V+2SRF*^&:T5>Q"HA;%ZB_ M>Y at 6?V*W;E8!T49_.=;X+:2JG5OZLE*CH\Z8^D]NF)=OPKZ!K>U`K':3_'KB M]/O6(SDP(!JG^,,N,S4N+YVQ/KB!W[:H2.[1E>%/$]NV2$7!WQFGH>]Z,[P3 M\,EB#7.7:.D>_W!?GNJ)^D[]RU/EL3 at ZH9K5FNSQ:/+J6,<(_.-T3UP9?A1A MVR(5N4>K,KRR6E04.E.ZJZ)8[OR[]&9X9;5XF%LE_LH:]9JA]99[GJ_T_(3H M:0EJ_.OT>LUPY^FW&^,?=0\?;_1E"=L6%44?-T5-C)C M_3"VPNMGN)7WVXTV+^&TT2Y2$1!MU/NKJK'1TVNL%ZD(B.8#*_XJ394GV!;M MS(>H*;9X2(U;;O>5FO+\IW$>4F,C(-IH=_+MU9I9(X)7(?09/D[3'UJFMW:' M7V)G]^$DX>TQQC8RQCPP3\M[,,TO!??;1"XC)C#]J68=M M#YO35S%O9WQJ^/0UW5OBD6=LE;ZT73?K@!B_OVPU_EA2U^_PRXSW;I` M_T?P<5?1F4>8-@ M9V/PNF9ZW+IMC2_.=P)JM.:V_.!*:,UZG'N6EL@];+&B:AO9>8CJ;(4/[_69 M'KEO6Q.CD^.?]JAID?3)XF%RERS5'O]($W9DK/Z.6<<]2U42.'(5/L#0>.S> M*V6WDV4Q+\-W2/XCO^[<$2JM>,TXBI;\>/7V[(@#%5$_C'ZJH56'V6+XJ6H3 M=J;',B!&;J1>GRF/^S9%KPJAW_J/6.=J1&F%7OLTP;U^=MI%*@*BC7K'^GW8 M_0#-#H at 6[=K87LU^V^Y\B)KBZ/GB:]`7[R_3U`*/"N>^'>,,2N*`:*?=A49Y M0-O?6J6*^WYI7,:6J]&+MP;/C-A^>F78M-J]1\JZZJ M4+'5,HN\C"OF-)K_G=SZG,SR,?\^>KX8]ZL:OVG^]L:Z3<7^73+[U`3#3+2= MMQT0+<9K8WDEGF=V^B$1;+8MZWV]N:W$VM_[#SC$"HB)A]O\Y1V/N/US_0RW=5\H+-`Y?89K MW-Q7 at E<#V:N;=4!,-&]L!\24M?/8OJH:&W:9:=2!,AM]`WO]8:OZ-',]63\C MP>T;SN+0@&@L;.,(N[\AF(\R&$>A+8^R)Q,08QVI-]]3XQ>X3"S^53+6X_2? M68HQGB0Z#W$[RH=>TI08&]OD5X at D`J)QA-9Z^E(?$#]Z:%",3FG$QMA7K7%D^)\;N#>B>0$Q56TB<`2QXLYQ M&MZ_O_H:U]HG'1!CW&L;?LV]3]7OANYQ]11.BKK7+WS>)6 at 7J0B(-NH=Z_=V M.I+-"HCF[]F:#W%^'\'_$"_C2<[-"(AVVIVU)FU;7")/HHY4PO;8W(#XD1X: M%.-WM at Y&)=MV$RS7>'4(^W=RZW/RRR?V_(P:=[.V-\D&Q,3[U,BZ6.W?;&WG MCW)`3#S/[/1#(MAL6^MGQ!ZN.2!&CR/^:R[L#M=.G\@LT;ZQ.?<@JFFW7 at G> M at YJK$<%[.P_II2DQU@>+_EWJ`V)SQQ^8[.A[PEO<5PFR6[?4!<3(-A5OW4RZ MG4?N/\W+Q7P at UNJ,I9T^3;,#8O/6$VU=H,EI?U>*?8X-B/[3Q6-5]95Q*478 M^68[G0S[`3'A&5_?VYI=X%;QXMCWK,0;IYTC[;8#HM/.(-H)?\?\#&+8!VKX M]!7-'!)^7YZ=\8:=0?SR>4W(]6C(S%>T_2OC_JH6G$%,59OX\OD)RO4,T>LM><,XA)W%L@^3L$K\P<$G:?243E;2SS5`7$^/6.]?M/%@^S%Q`#ZTYS MSB`VZTFCB^+VF)XSB&'?;W;;;5Y`#%RJ M9#L@)K5\D at B(S=K>-"\@-N00RLLRT-B''G61*OE`A5SG['.>Y,;$%` M;-9PX["Q;XP=$*WVV9&:M']SA284N%4P][W0\%)Z!C%T9NW8GD$T:T%?)>PK M=NIV+,X at IJ*=Q^._]2Q_]MO65WO9J6L+`V+25?_J+_K#7V)>DN8XS at V(Q at VG M8RLJ-#GJ9E3COI/)J^/Q!0&1-^;NBL_WGV92FE`M+XO)/(>1/O##GT6 M_5Z=L'L0K7YO/.&J.0$Q56W":CG5KYZ1#N!/%[;BW'_S)8'U#_6;RPO M9_(?W(P?_L+G1W.6C_4]B%OT0/_0LFC^]B;9@&AGGVHMZ>V\G76V!0$Q\3RS MTP^)9*]M^>\7B]?GB'$/8LU*373'#HB)A]N,Y6=CWVAY*>%751J;Q,&SL-L= MK.Y=4Z)[$&-<$OSV;.7'V5\:_TQ\+V?"\1L2!9>$?97XH<=>W8YR0$Q9.X^O M?O5DN?-GJV)!_^A[^NWT:9H=$)N_G3N>.#@@&AT"CT>>_ at L4]5:N7<:3VP)/ MM)-/#0>VZ[6*E_21_PNV&GS at 26#!)S>I2;6?OZ^557_15Y)\GRQ6L;M`LVV] M at 316Y\>XGM[TI*3`BZ=?^BA0+1N7$T8]GVGV)J(R#NJBB6 MN^@!;3$_Y3)&``H\K2KXI"Y?@PYL?TT5H8E+74"T]133K_27JI5Z_POC7J/` MD['B'94+>Y*5Q5._WIZM?'>Q%@6?R+59%1,*Y?'8"(B[*E3L+M(#YIF9HC;Q M]NQ\N8L7&4^U-8ZT%GKD238@!NZ%*`@]D5--M?K\_96J,HYX??67*JU\_XO@ M>N)_(EB,LS"RT2Z,:2EZ8(N:K`HJI55NT,Q\BQ;@',7`4/?"$Q/K5 MFNS.UV\W!N:>_PFDGI+%1GOPM],'BDT'B!*VNWK]Z3>C5%KQFNEL@'\X"TP/ M0I",RUT]D[72]"C2Q.W1;D#T'R` MRO7$.B#RMF87F)XDJB;MW_R`BDT/O[)WR7CB[8)%957BR=?8I>:GF(Y0[UQ/ M6">G>=N;9`-BXGUJ+,EOYVVLLRT(B+:61<)^2#1;;:O^==Z M?V650INUF2IP#])=&\Q/,1VHW-PX3S&U/=PDEI^-?:/O[=DJ,#W14DW[M?F! MXC@/@?M(+U6\INVU@?EN/!W6.(-H[TF=T=N0+ZO&RE,P0Z\$E^>G>FYR?MC[ MM:VV:U'SL5E/40W\V]SVFM%721306O`4TX0!T;(O8RU5[3RN^I.1QQ-] MH-96W\#6=L"G]3,\\DQ>&?;4[>2W-DNT&+Y^JWZTPO6_'_QZ:TJ7OZM]2S/L0K#LX M<3H_$>\O=.?VT?!Q<_6RO[(V.P^*?K]-GU&ZV[0FU9C?Y^+IK<'C'M+&A*]< ML`@--6]J;F`XQAF+V)?<-&GW*[."[V,*//EP[LN?J=%RGL=@MVX^\[MZ`N]_ M,K^S<)_6SS6]B\W36X/CO5LG\![$N.^JJPF]-]!X/U#%N]M4.=9&0%2-WIP; M>,^/Z>%+J6 at 3-5M4,27T#J[!4RKT[K9*C4TZ(,I_+T3%E.![Q]R>WNH[JE1+ MW_VW?ZZNGVMZUY4Q#^*^L"A!NY!4\^;DN3; MNR:TK3#>@_C&XHCY6V-^7Y55NXKQ'L2$[T)*/!_"6=_?D-MGN*94F%\-X=,G M2\<&ZSOUY<:H=2/P3KRPUTG$;7<^[7VC0G>.&Z[^P?H:PS$]",$_^D]4%6A[ M@:L\$K9'^Y?EU:R?%9R.P#[`_Q[$@:$GK(XJU8IM84>Q++^J8LK at X+1Y>O?5J-*E"FW6?-J[ M)K1=">RSULR(_QY$.\--;ODEWC?ZZQIZ_Z=EW\2L?JNJ2D>%[F$.O+O6_/6P M91^]ODE6VY`:;:D,O1?/G=M'HTI7:%NB[9I5.THX?CL!L1E]%3MG\&S,FV8% MQ%A]&>M*I*B=Q^._(B`" M#N';HZ61+[X&`*0-`1$@('XO$1"!]/.MN MK<-/5NCP8[_7X4<'Q"-'U+3J>37<<:OJA@](?XB@?*]*W?`! M:KCC5C6M>EXZ+0```("CQK$!\;N:KW5XV5+5#K@\_0&!0LD^5[4# M+M?A94OU;?6_T[UZ`````$>%8P-BTXIG55<\*.VA@$(QE[JK!JGIF:?3O7H` M````1X4C`Z+OK^_HX(0Q:0\#%(I5.3BZ6+ZWWTSW:@(```"DG",#XJ'Y]ZFF MUT5I#P(4BF7Y<3<=FG=ONE<3````(.4<%Q!]'[ZOVG[YZ0\!%$J<4MLO7[X/ MWT_KN@(```"DFN,"8M.J/Z2]\T^AV"E-J_Z0UG4%````2#7'!<1#L^],>\>? M0K%3#LV^,ZWK"@```)!JC at N(]3R<%Q'1W M^BF4)`H```#0FA`0*906%````*`U(2`>E^4RU2]]4=]L_DB^^5Y3L=R7,TLT_]DS+$_J2'= M=3F*!0```&A-"(AV"@$Q^1(K($[^H[Z+.Q^/KP(```"T)@1$.\560#R6Y3@( MB):EN^I?/.B@^=CR`@```+0F!$0[I=EG$*?H&TG2)AWJW4<-+^_0=SY)ZZ8$ M`U/MU"7R[J[1=\;POZOY2-\\.$:U.?'J%"<@YERJ at W.6R/OQO_WCDJ2F&AUY M\V$=[-,]P;3VTL$'U^I(S6'CAX?UW>[WU#1GJ&KBCM?B_Q%G$.L>_=1Z at 0?G MQ;GZ.J>/ZI]Z(WS\'Z]5XX1+T]\&"(@```#X'B`@'I.`^"\=V?%U:"+73='7 MV=U5]^CVF//ANW53C%"69$#,'J[#7\88Z*Z'51=G.FOG;4GPNZ,8$',&Z?`. MG_5W]+6^F=XK_>V`@`@``(!6CH!X3`*B)-]V-4WJ'0I]5]PEGT^2/E73I,M5 MDW.NOL[NKIH1]\A;[___X6'-"8CGJJ9WGFK[7!SZNW"N_-$KWC`OTZ'WC6$^ M.Q`$QH'&'7/N5AU]V_RGUU- M$&X)B````$#+$1"/44","G+!`!5;LQ^(TV>$#CV]3K[=^_7MOT*7K\8?YH]U MZ"W_=[Y[_RDUC+ at XB?&V/"`VK$LT-YSY-%0```"@-2$@'J.`&/6[HQ40QRS1 MM[&NU(P[S'/U=?&#.M)D^G+#CHC[(0F(!$0```"T9 at 3$=`?$^N=5GW2=8 at 6U MT&6BWSXWTG0/8YQZ1)9>O?T/N?E'?6BA['A8=3G')B!^]\?KT[^\"8@```#X MGB(@IBL@%CUH#/,+'2Y)54`,_3]L?#FWR)NP_M&E9DC@?LB#:IH8;[R#=/CS MB/\G&1#K?F\\L.?+)3J8[N5-0`0``,#W%`$Q70$Q.U^'WC>N!?WGRZ%[_GI= MHKI;']8W2R?%K5/PDLQ=CZNN5W0=OET]T7]IZ*4#=>A_0D]0C1<0#SY4I4._ MN%*UE_I?AU%3>(<1$'WZ9MJY,M^GJ%V/Z^"EW?5U=G?5_OI/QGV.@>_%"HA7 MJ^DK_W^_>ZTT_%4>_>88#^WQZ=M72U47J$/O(6IX=*T.3TOTB at X"(@```-!2 M!,0D`Z*E=5.:$1#/C;[GS^SSQ7&?VEESY^L1/_`_H?3 at 4U]$#\NW1]_NBU./ M['-EOCPU2LW+JL\UOC>Q*O8]CCL>#-79,B!V5_V+!\-_$WPZ:7?5_?[#L`?J MF!UY?%#ZVP$!$0```*T<`3$%`?';Y5JE at X^^H6\;C+36\)X:B\[5USE]U/#R#GWGD_POFG]!#0.[Z^#R M?\6O1W9WU4ZX7]]\_&_CMY)\]?KV;U5J&!A^]JYF2&GX]QK^*=_SMX2?$;0, MB.?JZ]XC=?C-?P9_^UW-LZ9[,`-U"#UY];N:7?(]7VHZ2^JL`@```+0F!$0* MI04%````:$T(B!1*"PH```#0FA`0*906%````*`U(2!2*"TH````0&M"0*10 M6E````"`UL1Q`;'FYYZT=_HI%#NEYN>>M*XK````0*HY+B#6%0].>\>?0K%3 MZJX>G-9U!0```$@UQP7$ABD3TM[QIU#LE(8I$]*ZK@````"IYKB`V%3Y1-H[ M_A2*G=)4^41:UQ4````@U1P7$'U_^W]I[_A3*':*[V__+ZWK"@```)!JC at N( M\GK54/JKM'?^*91XI>&V*9+/F]YU!0```$@QYP5$2=XWWU!-GCOM(8!"L2HU MO2Z2=^-?TKV:`````"GGR(`H28T+YZ4]"%`H5N70G%GI7CT```"`H\*Q`?&[ MK_]7#3.GIST,4"CFTG#'K?KVWU^E>_4`````C at K'!D1)^NY at G0[>,"KMH8!" M^3K[7!V\892^.W0HW:L%````<-0X.B!*DHXI0?*\Z7'V?3KUZ[G%;3KMFKO[OJ`&7].6!NG3/XN^5%<5M at IT<.^78[TN.M\!UO-77#J_V;9BGT7G=U#'3U!XR M.ZI+EQP57C=;ZVK37<=T.HH!T5NG#U>5Z:;"''7IF!F<]YD=NREO4J6VQSGX M[]WWCLHGY:E;\''T^+\S?JRJD6?(U::-,CMV49>;_CO^UU<4RV6T MAUM>JT]^.IO--.\O*%/\64]`=+[_UDU=NJA+ERYA[=WQ^5! M=;KN02U\Z9VTSN/O&P)BJAUO]4VD6ANG]90K;KL8JBHZ;'%],J=GTIVQSU>, M4??,!.MDYB6:\T'TS/=^,$>7Q/FMZXR16E$=8\3>G5HRH%/X;^+6VZL5Q2[C MN[TT;[?M24R!9`)B:A$0CP9SB(]=.O5_4KO34;W5(_W;PF/ MKY5[C%-/C0>T8],+FC\I3V=?.B?-G26OZO;OT*87EFOMEOVJ2V58]=9I_XY- M>F'Y6FW97Z?F#=JKJJ')KU.U*XK5H4T;M6F3J:YYDS1_[1;MK_-*\JKNK9GJ MZ3*&V6M>>&?9NT[C.QF?N7IJVIH]_GMAO77ZL'Q`<'FZ^BY15$9L?$]EET2> MN4E0[]JG-"!678XZ`F+K8EJ>Y]VB_S&OS(U[M&KL6<&SB0.>.O:7+7PP\[RT MM+64(R`"+>*X@/C#Z^?Y+RN]]@&=.GJ13KNA0J??^)1.OVFY3K^YZO at NDY[1 MZ1,K==KX)](ZCY%<0&S63E->M ML[)K,LY,"\SKZ$NOS!WYA5J8&_B[@ZY_U:*.WA4J#LSS#N.U+N88 MI=4C0\NU>(7->&3J?%Q@=1W?BN)@?:,^#_YVJ*J\7M5]N%;SIQ6SNY7)O^@ M-VC>B!YA;;--FS;*O&2.+`9M.A-OMSCZEI;.7':C!]W1P0SW3GJ5L7T[;,E:6S\R;% M79^#XPNV[39JD]E1W?)&:]Z&?9;;I(1MN$VFNAIM.-:TG^??&&K3LC*-SNL6 MVG:[LM1C3)5VQES-&[5]59E&Y(1/9^><$2I;M3U%#^1*L#P_F*GS`I_W7:+H MB-BH[941^Q57ECKG%&IZ98PZ!K9'Y\W4!XU[M*E\N at ISC&7B&J)G@@N]5DOZ M)FAKIFV;U2J3\*!"XW:M*HMH$U'%U':]==JUZ07-GWZ="G.Z1.^'8UV.2T`$ M6L1Q`;'#B+N457RO.HQZ4*>.K=!I$RMU^LW/ZO3)?]#IO_R#3O_E\\=Q^8-. MG_R<3KMI>5KG,>P&1*\^6)@?.KMD45SG3+*\-\W[P4+E=XK]NS9MXXHS3,HC$#X@)I]UUAD9&7?M7 MK8VEE\3I,)@#XHJP#GN'\1;Q;]UXX\R458"(-2W^D&U+2@*B2UE9<8*P*TL= M(X.AN>WE+HPZDQ7LG+FRE!7O\LNLCE'!,%118P2-^VVU9O\P4.L/& M:3I;V>8'FK8Y^I>U2_H&Z]!SSB?&?S?IMJZF<#CS/37:VA:8.LUAZ^VQDJJ` M6*T5Q9UB+BNK=7![E*G, MJ'GJ;R?Q;L4(VX:U("!6;RR->UEX9)VD!CTS)%X;\I=.Q1;33$`$6L1Q`3%K M^-WJT^DW/WLT9AULLQD033L85\]I M6K,K56W87)P7-%'E,/O9\GLVD^ERS9IEW&9WK[*H<&@](/(GG2L MR_34J#UKIL6^O"]N0-RMA;F!'7HG#2C_T+@+;0^ZJN[V`,ZP?3%)D1-D_[@5&'1`_J,(>--KI@ M9G2'U5)*`J+1H?-,4OFF'?(O[GVJ'-HAK!/=?4295 at 7:4.-[NCTX[_MJ26WD MH$T=>M<9\DPJUZ8=_M]Z]U5J:(?0M+;)[*X19:NTQ7@$?.-[MX?J97'FXE@' M1._F::%V']:1_D`SSXL]#_Q?,9V%,57"?T#$W(FVL2VH7:*^@>_D+E1H#_&) MYO1L^70FEMP5#S$#HNF at R06WOQ6Z3-E;I_U[MVCM\OE:$G&TR]R>?C)EK;:8 M7FOCW5>EXL#Z'+6-\&K=^$"0<:GGM#4*7KF]9XVF]8Q]/V=X&\Y2CS'SM=9F M^P\+.9E=U:]TF389V^VP]F^QS0B-UU_?X#8H[+)/ZP-MR4DB($8LP]T+'1AV]=1^J/'A/K<55%:;M41O7&2HH715U.?E1#XBU*U1LS/\.N3-- M^U/)6[=5=_5\=KZYGYVETV:-:N\7\RHI&;;_G)[&GF8`(M(@# M`^)=ZG#-`SKU%XMUVHU/^P/BS<\F+E-6Z\KG/M.VP]\F'(>W=J]^->L/EL/) M?=7^\<$7G[!1+\M2U9)9A!:ST^'RZM7K.\3I%)C.*D0OI<%.O=41 M_M"9'?/]-8DN:PI-?^@,1[SE8YI?-NX7^V)AKJDSY-(Y(RN#':^84A40AU9% M!5)OU=#@;R^^-WI['+Q'R.+LF;ES-C3JJ3KF,'RQH@=M"EX6'>BXERZFO#-6 MK25]0V?[PL]HQNY`!WTR1STM0YU4O7V[Z6Q#XFV!N7WT#4LDH79V/`3$4-NP M?Z8\T>6"H45"TEI[AG$OZKTK$#(&Z"HVQ--=8S:]L;;'B55-S4[((:V_=8' M[8+[FP2W!$2,++C=B3H`2D`$6L1Q`?&4X7`7I9.>2K74:'^@PN$9J MM=50 at IV1G@I>Q:8O3/?'V>V()0J(\3Y/HK,1\?FZ\1WB[NC-'8'P^ZYBU\?< MF;;LB)AVVJ&.EFEXEA4Q?=YSCH*SVA1&P\9E&H>M^\6L+MMR9:G'B'E:LR?& M74>I"HA6TYN@,Q>OTYZH0Q]JLU:=M/CM\%@&Q.H5Q:%+N\^:ILUA.<%&0+1] M66:B\&5>GR-#1>C at R_$0$,WK9J5AX-IVMM*ZS:9HB`GPR MXXS\/'[[CO.YJ;ZND99;^U!]S=N at 9DG0-LWKDGG>?+%0N7';M&G]C0Q9#@B( MH?];K[.AS\W[TP3B;7<(B$"+."\@#BM3UM7W^\\@3GA*I]VT/&$Y\_'/U9PW M"^[Y\Y\BAO7?NG^?_=^_^'CBNL4J2"<;.\$$.^/&`WOUZ""KSH8I6,:Z_"U* M.@*BN>,;XS),TU'^\*/FL>N3,'1:7JZ71$`,FP;3_TUG"H,=8:NC[+%X]VE# M63]UC;H_)E/=QUB\4X^`F-PT):-ZB?H&[Q_KI)&K8]]W>]0#XNYYQN7-;:(O MNS5-LYU)CG4)7^+?IN at 2T]T+E6N^+\^5I1Z%TS5_[18=B'D* MS&?Y(\),.@)B_/HVZL#>1S7(5GNR(T[;]-;IK=M#E[J&G3E/&+KCW"M[7`7$ MZ&7GW?>.RL,>Y&51"(A`2CDO(`Z=I:RKY_H#XO at G==K$93;*"YJUVS20(U[M M_O03W;GH%77[U3,Z;>(RG7''FWHQ\MW&.]_3!6'#>4,O1GSE+\N?LQ[GS<^I MZR_MU,VZ()UL[`3#[A-+5,P[-#N=UZB1I2$@FH<9(R#&W,'&KH^Y$VR]3[:J MCZEC8W5)J.F)I*[B%6&79(8NYPUTB$+!U^H2UX0:]VC-O!%1[^:+>A at 1`3&Y M:;++^X'*>H8>2M%IY&J+97CL`F*H?5F\,=]'&*,=Q)Q^!P3$T"6F M5N\1-;UGU%4L\\.DO1^4A>Z'CU<(B$!*.2X at GCSDMSJE^%YU&/-[G3KN"9UZ MX].VRO]YZ!\Z<*11&]>]KMRIRRR^LTSCWX\8V;X/]%/S=^[Z0#O"OO"-*A^R M-_YD"]*)@.BL@&B^'[*3!I2'SFAXZW9I3?`E]ITT?EW$/4FF>YWZ+JDUG:&, M\?H+N[S[M"'BJ:IA]TH1$).;)EO"G[+IZEEF^;H-6^N8^=[;B$L88PXKJMZF M^6%Q-MK\I-3CX1+3H,!K#GI$/_78]:/2L,MY"8A'.2!&/JDUWBLUCO.`:-Y6 M=QI0'GPXEKQUVF5Z*%JG\>M,!P'-]UWVU,S_.1`V7[SOW6[Y,"JC(@1$H`6< M%Q`'_U:G7#5''48_K%-O6*)3)SQELRS3?TVIC/WY3>M5%;G%W;9976QW MQ!>^TAVE=L>?7$$ZM?P2T]C,C^8?*HMG+%APZ"6FIDN:4G:)J7F^AG7]5VBZA7%_F%$/"6U>;SZQ[S04P/#YA\!,;EI2LBK#\IZ MAN:U*U<6;]HPV'B*J=WZF-MCY/?,#[HY)L$AEA0'1!-OW2ZMF3?8]*J;#C*O MZD?O$E/3I?B.O\0TU9)[;4E0PDM,S=MTYUUB*DG5*T;JC#AG`Z/>P6I>!ZW> M"HP[BE*2F>%_XWJG.Y9>7SX=]YJ2;\ M"TV?:>+T9_2?*:J#N2"=DGQ(33)/50N[#\3Z'6W1ON\/J0GP:M^&>1IL?G=: M9D=URYND\G>L7ZHM2=Y7K_=WG%Q#53S4_]OX[SY, at KF304`\:@$Q[*$T;3JI M..H]F6:FR]$B`DWP&X$#!6W,[T&T8+>#V4H#8D!U^>66Z[K]IYBZ%/9LE^/X M(34M?TII(LT,B,?Y0VH"O/LV:-[@)I6_$_W"^T3;%0(B<-0X M+R`.ND,G#[M;62,?5(=?/*H.-RQI<>E4MD5_/Q(QHL;/](O)X=\;^4[L)Z$> MKF_0!W_?JM\^^$=UF=#R.B&=[.R at S:]12/0NO7#FUUS8"RKI"8CFUUQ$/2)< M+7_-A=417^O77(1]PS at C:#=<2^%G;:WJ&Y^WKB[ZQ$0$\R/>,+O,7*I9UGB=U&:VV[D>].D6JTHMKGNMJ`3F6A>ITZJ`J)7 MWE at S-D:G/_XTFMM+Q)E<\VLN+%Z98OK-=*5H&ZF>V^MAA5Z#4GL]2*P_EKM=\*8MRL6KP0B(`)'C^,"XDD# M?ZV3A]VE4TH6*&M,N;+&/MZR,F6#5D<^G$;?Z+\KED5\]WG=\T][=?36?J&Y M]T?^/KF"=+*Y at S:?[+'THV4:G==50R+WU)$OH-]@G/UJ/*`= MFY:I;'2>NF:9[VE*3T",JN>:/490:M0>TSTAT0^.B5>?W5J8&SBKT$D#RC\T M7LCM5=V'Y1H0&%^L2T!-3XW,[)JG2>6;%.M-$V9_+3TK%!!MO/LPQ!](75D] M5#A]OM9NV6NZ_S'\Y=/%*ZS?@=?F at MN-AWLTZL"6M9H_R1-V&=7W(B":.Y:] M[M4_[%[>6[TB]++U-FWDZKM$4><.O77:OW>O]II>TA[6=LWMS%NGM^;E!\]& M6 at XO;)*_1P&Q=HGZNK)T=MXDS5^[)?3"\<;M6M37"-2N?#UB.IUGGL;+?[=# M^X/O!VW4GLK06=\.Q2LB#@9YM6Y\8-WQOW@^L!XW[EFC:<$'$44_L"0M`3%L MN!V4>^];"FWN]VOOEK5ZM&RT\KH.B0IFR9^Q;6Y`E'8O#%WRWFE`>?!]K9'; MJJC[KVT'Q$\TIV=@&SU*+UIM>\WOA!Q:Z3_KYZW3KDW+5#:B>]A]V];-=;?F M]3*^D]E5>9/*M2GF1MX4BCL,5>4^KZ1&'=BQ2;[C^R M*)F7:$[4DT+BUS?AM+O.T,A8EQ!^]*1&1#X\PY6E'F/*]4[4]4/O']"(CF0)"H at VA=W\0E?+S> M#^;H$JLG M4JI%$\^SWI82$($6<5Q`/+%_J4X:?*=.OGJ>3AGUL$X94][,\J3&O'LX>@0' M_Z&2B4D,9_R3ZCYMI88^]P]]%AD at J]]7?C/KAW1*;@?=N'V5RD;DJ'-6J+/C MRNJL+CF%NJEL5>AI;-$_5.7T0N5T#@6>S(Y=E%,X7?/7?A@\0IW.@"@9]X2, MR%&7CIFA'6_';LH;/4\;+$-9HOH:TSXI3]U,T^[*ZJRJQN2HHVF9''>E?X3?VX`8/,,]O5`Y73J'.NC&DS/G;8ANY]ZZ7=KTPGQ-OVZ8\KIU MB=Y&3(HQGX,#V*<-\T:$O[\NLZ.ZY8VV')^4QH!HS*/MJ\HT(L#E_,3$(&4;3BJ:J9.+[]^1RIUGTS MRYLYS$=TQ=J&B`%6ZY[2Y at T+@`W>.GVXJE0%9P0Z*ST5_&X@)A9>*M.'/0;G735?3JYY$&=?-W# M299'=.D+5N&P0<\_O*09PPN5T\IW1=7WA8>;-RP`)N\^K.GSEVOY\K7:LG>O M]NZO,ZW#7M6]?(/^;ZR`:+I,-.%##P`@94)GW:,?EH1P[^KAZ?.U?/ERK=VR M5WOW[C==12-YZU[6#?^7@`@XA0,#XBTZ<=`=.NFJ>W5RR0*=/&I1$N7W.G?Q M/W0@:JB->N'AQY,O/!P\X8%(,3\>HQD[Z\)/376^I4'`'!4!!^J M=9:F;28>QF7K?N\X][0".*:<%Q"O_)5.'#!#)PV?K9.OF:^32Q;:+F<^9!4. MO]6'JY[1:0E^>UK9!MVWL$I=?Q'[.Q<__^^(8=?KD3+[]3,7`"&U6Y=H^G6% MRNG2)>Q>3_-]F];W`IKNFW,5:P5]-`#'B'??!I45=-4E-E[-\KU7NU5+IE^G MPIPNX?=Z&_>E=LDIU'2K=R$"2`OG!<0KIBJS?ZE.'':W3KKZ`9UT[0);I>M# MV[4_ZBFDW^K#%YY1I[#O+E3GFQ[7>3<;Y:;?Z]1K']'$]XVGG1[Y1I_MV*9[ MG_BC+KOY,74>Y?]=IU_^415[(P9_Y!-=-\I>_2(+`````#B-`P/B+Y79;[I. M''J73BJ>JY.NF9^XW+/%(AS:M'>S+AF[1FN;\?L#KZW4J7;J9U$`````P&D< M%Q!/*)BL$PIO5>:063KQJGMUXM4/)"X/[FC^"/>^J7Z/?Y[\Y2$'=^BZ<3;J M%J,`````@-,X+R!>?K-.Z'N+,HONU(G#Y^C$J^Y/7!9L;_X(][XI]U7S=/;= MKVOUGB9;0='[KVVZ?O(\>W6+40````#`:1P7$-O__":UOW*:3A at T4YG#[E'F MB/L2E]^U)"!N4HYI6*=?_Z2**M_1GW<=U+\:OPU^S=O8H$^V_UUSYB_1?UYM MHTX)"@`````XC0,#XD2UOV*J3AAXAS*'WJ7,X7-:90$`````IW%<0&R7/T'M M"WZI]@-FZ(0ALW3"L'M:90$`````IW%>0.P]7NT+)JM]_]MUPN`[=<+0NUME M`0````"G<5Y`_-DXM>]SL]KW*]4)1;_5"4/*6F4!`````*=Q7$!T_>P&M;M\ MDMKUFZ[V at V:J_>!9K;(`````@-,X+R!>=KW:Y4]4N[ZWJOV`.]1^T&];90$` M````IW%H0+Q1[?K>HO8#?NT_B]@*"P`````XC?,"8NX8N7I/4+LK?Z5V_6]7 MNX%WM,H"`````$[CO(!XZ6BY>H]7NRNFJEV_4K4;\.M660````#`:1P7$#-^ M5\OUDVM; M90$`````IW%>0#S_"F50#SO9VI[?A]E].BGC(N+_"&Q%18`````11JRXJ`:`__T'=+? MG[];G7M.UCV[+$;RY_N5T;/(HHQ2GPG/4[\++ M2-WP_&;-F#1>I^<,4NH%K?)EV;$STN`````'`:YP7$IU#^B_?CQ`&3U"Q1\$[PO[7T:/`&_^[A\4M3OXI6? M/O4O:4>ES@\,?V>5LHW/?K;\@+1YD3KVF*0I[[RO^Z[]E>[9:1['8!6]V"#O MNON4:3%L`````'`:YP7$LW^JMC_*4^=I&[3/)WGK=VO9;R;HE(OZ*>.B?D9` MO%<9QM^!X@^(QO_=\_6*&K3TQL#GHW3K^]+'Y1.C?A>S_.PA_=GGTY_+KE;& M1?TTXE6?]-H#RC2/;^W:\.^O MO+6O,B[LJ^S%>T+_]!W2W__P6W6^T/]9QH43_.%M\03C[P2EYTVZ9X=/WOEM7"W1-#:J+>>A7FV&)!5+I0P:D at CG@+;H3H!K:.Y&+ABIPP`NN,\&TEXZC"5:[V52+==E[\ M^F)F=V=W9Z65[42C[?<#`_9J=N:99Q[!_/3\&;7^SE\JH[NZ\&;Y'``````0 M-N$,B,]^0ZV_'57K5VRU?K5#9_Y9TH=#:OWJ&VY`]/[MWPZ.K at 1^[F[?]<+; M=^O\W+]]2Z<_?"C]YS6=?JWJ^#__>QWT_O_[X^O2[%_K-^JC" M"7=_``````B;\`7$`Z^HY9D_UNF_Z-7SK[RAUM^-Z9U_E=9_TJ_6K]A>0+S@ MAD??UI'9#/S3YV?%[>C.O3>S_6_6M/('QVM_%GL?2UK13^*_:%: M7WY7?_.)]/&/NAH[1^>X?J857>@L?P8`````81.^@+C_D%H.]NGB3U?U2T>2 M"KK[+W\KZZ77U?K"ZSJ=K=S_9^]UES_/GE?K"Z\';-U>>.LN?>8>9T:G*_8[ MKTQ at J69T^H4W=.BOYG3WOXME>D^'OA94^MOM;ES$9MP`P```("P"6%`?$DM!UY1Z[/?4.OSA]V0V(0; M`````(1-Z`+BOB^_J'W[#ZGE&4LMST74\OSAIMP`````(&S"%Q"_=%#[GGJY MM)IIRW.O->4&`````&$3NH#XJ_M?TKXOO^BM9FJY(;$)-P`````(F]`%Q`.O M_H'V?>E%M>PW;B_B,[_7=%LK`1$```!`"(4N(%X<_3OM^\V#I=5,6YZVFFX[ MWOWNKM8Q``````0)74!\\/"7^F9W0BU/O>P.,WWZZTVU[8\OWN_]4,\=/N&&Q`.O[OGMUUXXK&/?3B at SE5.A\#^[7<4` M````4".4`5&2?KJPJ.^\^^=Z]K5._7)_5? M&YN[7;4`````$"BT`1$`````\,4B(`(`````)!$0`0`````>`B(`````0!(! M$0````#@(2`"`````"01$`$`````'@(B`````$`2`1$`````X"$@`@`````D M$1`!`````!X"-"4E40``"D9)1$%4(@````!`$@$1`````.`A(`(`````)!$0 M`0`````>`B(`````0!(!$0````#@(2`"`````"01$`$`````'@(B`````$`2 M`1$`````X"$@`@`````D$1`!`````!X"XAY7>'A?*VL/=KL83T;AH>ZOK*E) MK at 8```#8A3>KXR-N33,1EC:K98.K]+Y=X= MN:212>9">_X=E2^7E#%)[=[5?$YRR=JV&FE7U\"XYM:=W2[=X\NG%3,Q_3_[ MU0,``&A*(0R(JYKXWJ"F;C]409*<=$0F(````32.$`3&`DU5_5>_ at 0JHCG`'1N:[S MT2_N89F`N`?4NZY\6C$3U="-QSV!H^OGH[O7>TY`!```:!I[(R!N7%&O,>J> MN%_Z*)^;#Y=3TL0T.C>G=-\Q1;QCG!JXK,5"L9B]]8>\.NN:N=2C8Q%OV.RI<\K> M*W<=Y=,Q18=FM'AY0*?:+!EC%&GOTO#U!RHL3^E?5LPDE;V7+1VGF.F<]1E=ZO%=S[FL[NV at 1VNG0TP+B^/J.U$$KTX&QE5YR3%9 at SEWOV/N/;?:3JAO M8DFER\LE9>)C6I@?]YVO75V^^O5*O77];E])P0'1^\-'Z5[GR^UP5 at JI=[JX:NQM/+**>D[=MVR%)8U=:Y+[?YV>6VT(O!] MMOB^!KJ.>.7RZM%_3PB(````36-/!,35\3,R5D*3&^7/O7M-2,2WDQQ2W;"4RRRI(*JQ-*6E;BI?&M>:4-):L2%RIV345)#GK MW!:&VK,C at +B1D[):%2]/UGVA@]OZI.;5S6_ M6MI9QEBRCB:4N;,I1U)A.:.$;=296BB5^T$N*=ORW8?-.\HD;%GQ=.E^UM2G M'*UGD[)-IT86?>>S+$7B*:4-%'9]M%2._5* MJ'2L^O>AD8"XJHEN2U;I^@M:FTTI'K%D^=OPXOL:R=S4)\5ZO/8#=1I;PQ\7 M3T]`!```:!;A#XC.#0W91M'SU^7OV,HEC:)OGM()KU>GIE>C6BXI<_C[F at GL M'=O09,*J..H(?EQ1%UFC,:7ZWXHD8Z MR[VB^71,)GI>U_T%6!K526-TIN*+=S46-XIZXQ)S25/[/6_(H968=(->/JV8 M,?J33&7M+(YTRIP95V6Q1M1INN7KK-W2C@)B/JV8B6OL;MV=94Q4YRLO1L[U M\XJ6_D#PL8;MZCJ1-[2W'.P"ZU-+&CUI%"\6()>4J;DOCK+]1M;@M/O?C4DE MK.HR>>VET;&A-0'1T>:=J_JA[X\+'P_;M?>B^CYZ;;#CXKPJ:^@1`^*-(44# M at MWJ^!F9+0-?53T2$`$``)I&R`/B`^62MHS5JRL5V>87NI;J4<^Y*2T7I%+/ MA^7O\:NR,:U!VRCR]H#25^]HL^()>UJ#EE%_MBH]5CSXUGG at U@T-17W#7P,> MEN^.Q65.CFJIZIO^\)1/Q[RA at 15[!)[3_[US>N],I8 at YJN4Z9B MT#PY6E.J.M<9;&=#3/,:BUNRCGY;PYF;6BO4["QC^E5]&]PAQI8&IXO7XO6Z M5:@,=L'U616DZO3L591Y>E!60)F"CU]'P"JFD?:WU#-<;+]NN6KOA>1D^\OW ML>Z]>;2`F$_'`MNE^X>)K0)?U?D(B````$TCQ`'1T5(Z+LO82N8:F^^UD.J0 M*?7X!1QQ?4[C`]Y\*^NH_K34X^@^3`>]-L-L&Q"W?UBN]TH.8YY00`P*:/[P M$_@`[Y:[7KD^GX`H=\[;<(_7\QO1V_XYCW47J?'5PZU+.EXGC&P?N!\A(`:] MHJ)BKE\#MEU\YY8N':\S9+KBNT\V(.:21N:=*57G])KV4EC3SIL^EQ[$8EC>(B`^[LJ7C_X>Q(+69M,Z:QO9QJM]?M$] MB$]B9=5MC_$%]R!ZQVNH!]&YH>&CENRS:ED<4>=VK-^%8++:G MMW4U_8%N>>5.QXQ,[Y6ZJYKN+"#>T@?IJ[K]L%@'WJJI%3V(3W`5TR<1$+T5 M:(U=+I,*#[5R,Z.)C^[[CM.ANF]=::07LN%53(,"HJ-.;[E=.MI<&-/9-^WRXC7W)]1MHNK_QW)=3PV^K8CE MJT>OA_?[,S6#50$``+#'A"\@9OOKSODJK1KY8%[C`UTZXJU@:DQ$[5T#&O>_ MPJ':O^0$=+$WW> M^PY]9:YXWYS[OKVW>H8U^6^?27J\@!A+SVL^W5=:T37X/8C!/3R%Y2F=ZRK/ M*W,73YF46RQWMMWH/H MO=_01-K5Y7L?9?WZ?)2`*,E9UYRO?MUW:`YH;,YM&4ZV/Z`7M^*`#0U3==^# MZ+4MKTU?]E_4%D.AG:4)]17KHSBTV+FG['!/J2U:;2?4 non-admin user -> Page records -> No records for pages Message-ID: Hi Everyone, We tested the Recycler as admin user, and it's a handy tool. It works good, and seems a handy tool. Now we are testing it as a non-admin user. They can see the tables: File Reference, Page Content, News and News Link Element. By default (opening Recycler module in backend) it shows 'No records for pages' in the table selectbox. And if we select All Tables, after some loading you get an empty result. -> But there is something loaded in the background because it says page 1 of 3 below. But also no records to display. We checked the access rights of the pages and the (test) user group has all access rights on all pages. We also gave the test group all access lists rights. Has somebody encountered the same issue, and maybe has found a solution or the reason for this? Has somebody the Recycler -> Pages working for a non-admin user? Best regards, Koen From finees at rimamkt.com Tue Sep 9 22:43:48 2014 From: finees at rimamkt.com (Finees Mendez) Date: Tue, 9 Sep 2014 16:43:48 -0400 Subject: [TYPO3-english] tt_content.image.20 - random sort image array Message-ID: Anyone know how to affect the sort order of tt_content.image.20 object? I want to randomize the order of images in a content element. Any help is greatly appriciated. Thanks. From info at cybercraft.de Wed Sep 10 09:49:45 2014 From: info at cybercraft.de (Jo Hasenau) Date: Wed, 10 Sep 2014 09:49:45 +0200 Subject: [TYPO3-english] [TYPO3-core] Different title tag when using "subtitle" field In-Reply-To: References: Message-ID: Am 10.09.2014 09:04, schrieb Kamil R: > Hi Christian, > many thanks for your tip about the extension. It's really close to what > I'm trying to make. Also thanks you for your piece of code. It's working > but... I'm very very green with TYPO and this is my first fight. > Your code is append custom text to subtitle and the line that supposed > add text to "title" is not working (it display only title field, without > any "title_sufix"). Can I ask you for another try with this? Many many > thanks for your (and Jo, from previous posts) help with my issue. So maybe you can switch to typo3.english now, since as already mentioned this list is not meant for lenghty support threads, but for core development. I made a crosspost to the english list, so you can post follow ups there. Cheers Joey -- Diversity: Die Kunst zusammen unabh?ngig zu denken The art of thinking independently together. -- Facebook: https://www.facebook.com/johasenau Twitter: http://twitter.com/bunnyfield Xing: http://contact.cybercraft.de TYPO3 cookbook (2nd edition): http://www.typo3experts.com From info at cybercraft.de Wed Sep 10 09:55:42 2014 From: info at cybercraft.de (Jo Hasenau) Date: Wed, 10 Sep 2014 09:55:42 +0200 Subject: [TYPO3-english] Re: [TYPO3-core] Different title tag when using "subtitle" field In-Reply-To: References: Message-ID: Am 10.09.2014 09:49, schrieb Jo Hasenau: > Am 10.09.2014 09:04, schrieb Kamil R: >> Hi Christian, >> many thanks for your tip about the extension. It's really close to what >> I'm trying to make. Also thanks you for your piece of code. It's working >> but... I'm very very green with TYPO and this is my first fight. >> Your code is append custom text to subtitle and the line that supposed >> add text to "title" is not working (it display only title field, without >> any "title_sufix"). Can I ask you for another try with this? Many many >> thanks for your (and Jo, from previous posts) help with my issue. Just some thoughts about the extension approach. IMHO you should *never* use a fully fledged extension for a task, that can easily be achieved with some lines of TypoScript. Especially when the extension itself needs even more lines of TypoScript to be configured. The piece of code that I posted is tested and working, and if it does not give you the desired output, there must be something wrong with the rest of your TypoScript. So maybe you could post a larger portion of your TypoScript setup so we can take a look and maybe find out what goes wrong. HTH Joey -- Diversity: Die Kunst zusammen unabh?ngig zu denken The art of thinking independently together. -- Facebook: https://www.facebook.com/johasenau Twitter: http://twitter.com/bunnyfield Xing: http://contact.cybercraft.de TYPO3 cookbook (2nd edition): http://www.typo3experts.com From jenka13all at gmail.com Wed Sep 10 10:04:54 2014 From: jenka13all at gmail.com (Jennifer Koenig) Date: Wed, 10 Sep 2014 10:04:54 +0200 Subject: [TYPO3-english] =?utf-8?q?_Migration_4=2E7_to_6=2E2_-_replacement?= =?utf-8?q?s_for_deprecated_static_methods?= Message-ID: hi everyone, I'm currently in the middle of a migration from TYPO3 4.7 to 6.2, using the slides written by J. Weiland for the process. The "smootmigration" tool is telling me to replace deprecated static methods. For the most part, I have found the necessary replacements on this page: http://wiki.typo3.org/TYPO3_6.0_Extension_Migration_Tips However, for the entry "Tx_Extbase_Utility_Extension::createAutoloadRegistryForExtension", which occurs one time in my installation, they only say that the method is deprecated, not how to replace it. I've googled and found no answer. So, does anyone have an idea how to replace the deprecated static call Tx_Extbase_Utility_Extension::createAutoloadRegistryForExtension? From xavier at typo3.org Wed Sep 10 10:28:37 2014 From: xavier at typo3.org (Xavier Perseguers) Date: Wed, 10 Sep 2014 10:28:37 +0200 Subject: [TYPO3-english] Migration 4.7 to 6.2 - replacements for deprecated static methods In-Reply-To: References: Message-ID: Hi Jennifer, > However, for the entry > "Tx_Extbase_Utility_Extension::createAutoloadRegistryForExtension", > which occurs one time in my installation, they only say that the method > is deprecated, not how to replace it. I've googled and found no answer. > > So, does anyone have an idea how to replace the deprecated static call > Tx_Extbase_Utility_Extension::createAutoloadRegistryForExtension? This method was used to automatically create ext_autoload.php. If you really need this file because you do not stick to class organization convention (yourExt/Classes/.../) or are using 3rd-party libraries, you may either: 1) Manually update ext_autoload.php whenever you need to register a new class. This is what I do since it is very efficient in case you don't have "many new entries" to add 2) Use EXT:extdeveval to generate this file for you Kind regards -- Xavier Perseguers TYPO3 CMS Team Member TYPO3 .... inspiring people to share! Get involved: http://typo3.org From rs at danship.dk Wed Sep 10 11:02:00 2014 From: rs at danship.dk (Rikard Svenningsen) Date: Wed, 10 Sep 2014 11:02:00 +0200 Subject: [TYPO3-english] =?utf-8?q?_When_installing_Introduction_package_f?= =?utf-8?q?rom_version_6=2E2=2E4?= Message-ID: Hi I have installed the typo3 (6.2.4) with the Introduction site installed. When I do that on my hosting center (Debian Linux Server), it all work out of the box. Clicking on the different menu item on the page (Features, Customizing and so on) works fine. When I do the same on an Ubuntu 12.04 LAMP server I got trouble with the menu items (Features Customizing and so on) f I click on Features I get the respond 404: Not Found The requested URL /fetures.html was not found on this server Apache/2.2.22 (ubuntu) server at lamp-1.rel.local port 80 The sever has been installed like the one who is working, and the install wizard showed no error before install (the check out was ok) I guess it something about the Apache server configuration I am missing and not has been checked under installation. Any ideas to what is wrong? Bast Regards Rikard Svenningsen. -- Best Regards Rikard Svenningsen From christian at futterlieb.ch Wed Sep 10 11:07:05 2014 From: christian at futterlieb.ch (Christian Futterlieb) Date: Wed, 10 Sep 2014 11:07:05 +0200 Subject: [TYPO3-english] [TYPO3-core] Different title tag when using "subtitle" field In-Reply-To: References: Message-ID: > Just some thoughts about the extension approach. IMHO you should *never* use a fully fledged extension for a task, that can easily be achieved with some lines of TypoScript. I basically agree with that. The approach of the extension is to improve the page title generation of TYPO3 in general, because it's very inflexible. Everybody that wants to configure any content of the title tag with typoscript has to use noPageTitle = 2 and create its own title in page.headerData.. Which is a typoscript-only solution (and thus preferred by many), but imo having a page title generation that is configurable through typoscript is worth an extension, because TYPO3 itself lacks of this feature. > Especially when the extension itself needs even more lines of TypoScript to be configured. I don't want to nitpick on one line more or less of typoscript. But when for example TYPO3 would offer a feature like 'pagetitle_stdWrap' (like titletag does) you would not bother to write the needed typoscript, would you? ;-) > The piece of code that I posted is tested and working, and if it does not give you the desired output, there must be something wrong with the rest of your TypoScript. Very true. Kamil, if you decide to use the extension, be sure to use version 0.4.0, the versions before did not feature the pagetitle_stdWrap. Regards, Christian From hi at andy-hausmann.de Wed Sep 10 12:03:44 2014 From: hi at andy-hausmann.de (Andy Hausmann) Date: Wed, 10 Sep 2014 12:03:44 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__Extbase_-_All_properties_except?= =?utf-8?q?_UID_are_null?= References: Message-ID: Same here with 6.2 LTS. Clearing the Cache via Backend and manually by deleting typo3temp/Cache/* doesn't solve it for me. Deleting the Extbase Reflection Cache helps not as well. Only uninstalling and installing the EXT solved it for me. But sometimes this bug occurs again and persists. From ro.rentz at googlemail.com Wed Sep 10 12:10:18 2014 From: ro.rentz at googlemail.com (Robert Rentz) Date: Wed, 10 Sep 2014 12:10:18 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__Extbase_-_All_properties_except?= =?utf-8?q?_UID_are_null?= References: Message-ID: Hello together, i finally solved the problem. May be you have the same issue. The problem was the cache that gets corrupted in a way. After debugging i could say, that the extension itself and the controllers are all okay. Then after getting some specific error logs i recognized the cause. I had a AJAX Request on my site, which uses some extbase repositories etc...The problem was, that the FE-User was not initialized correctly. That was the reason, why the cache gets corrupted. The right way to init he FE-User is: $GLOBALS['TSFE'] = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\\CMS\\Frontend\\Controller\\TypoScriptFrontendController', $GLOBALS['TYPO3_CONF_VARS'], 0, 0); $GLOBALS['TSFE']->initFEuser(); $GLOBALS['TSFE']->sys_page = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\\CMS\\Frontend\\Page\\PageRepository'); Hope it helps! From rs at danship.dk Wed Sep 10 13:44:10 2014 From: rs at danship.dk (Rikard Svenningsen) Date: Wed, 10 Sep 2014 13:44:10 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_When_installing_Introduction_pac?= =?utf-8?q?kage_from_version_6=2E2=2E4_=28features_-=3E_404=29?= References: Message-ID: Hi. I discovered the missing part.. 1) This is missing in the /etc/apache2/httpd.conf LoadModule rewrite_module modules/mod_rewrite.so 2) In this file, /etc/apache2/sites-available/default this should be changed: AllowOverride None should be: AllowOverride All Then: /etc/init.d/apache2 restart And it works... Found at this link: http://wiki.typo3.org/Introduction_Package and: http://xmodulo.com/2013/01/how-to-enable-mod_rewrite-in-apache2-on-debian-ubuntu.html -- Best Regards Rikard Svenningsen From finees at rimamkt.com Wed Sep 10 21:38:35 2014 From: finees at rimamkt.com (Finees Mendez) Date: Wed, 10 Sep 2014 15:38:35 -0400 Subject: [TYPO3-english] Images don't work. typo3 6.2 Message-ID: When a "Text & Images"-element is rendered, then the width and height attributes are "0": Thanks for your help in advance. ~Finees. From mramaraju.dba at gmail.com Wed Sep 10 23:06:12 2014 From: mramaraju.dba at gmail.com (Ramaraju Musku) Date: Wed, 10 Sep 2014 23:06:12 +0200 Subject: [TYPO3-english] =?utf-8?q?_Taking_much_time_to_populate_newly_add?= =?utf-8?q?ed_News/Promotions/Events_on_Frontend?= Message-ID: I am new to typo3. If I create news, Promotions, Product spotlights and Content modifications not showing Immediately. The changes are reflected after 24 hours or more. Can any one suggest me why it is taking that much time, for this do I need any modifications to be made in the admin panel or somewhere for a quick reflection in changes, I am able to see quick changes in my local system, but in production server it is not showing quickly. From jost.baron at gmx.de Wed Sep 10 23:22:18 2014 From: jost.baron at gmx.de (Jost Baron) Date: Wed, 10 Sep 2014 23:22:18 +0200 Subject: [TYPO3-english] Taking much time to populate newly added News/Promotions/Events on Frontend In-Reply-To: References: Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi! The problem is probably the cache. The changes are visible only after the cache has expired. You can fix this by adding something like TCEMAIN.clearCacheCmd = pages to the pages/folders that contain the changed records. You can do the cache-clearing more selectively, see the reference page [1]. Regards, Jost [1]: http://docs.typo3.org/typo3cms/TSconfigReference/PageTsconfig/TCEmain/Index.html On 09/10/2014 11:06 PM, Ramaraju Musku wrote: > I am new to typo3. If I create news, Promotions, Product spotlights > and Content modifications not showing Immediately. The changes are > reflected after 24 hours or more. Can any one suggest me why it > is taking that much time, for this do I need any modifications to > be made in the admin panel or somewhere for a quick reflection in > changes, I am able to see quick changes in my local system, but in > production server it is not showing quickly. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iEYEARECAAYFAlQQwQkACgkQNme/yCvmvTKRbACgvflKyQWvzSg7RWoQ4+QS5U/b 1SwAoMU8Pt6sboS+/8ImU7YV9fTXxTJM =RBWD -----END PGP SIGNATURE----- From kaufmann at dwwd.ch Thu Sep 11 08:02:48 2014 From: kaufmann at dwwd.ch (Stefan Kaufmann) Date: Thu, 11 Sep 2014 08:02:48 +0200 Subject: [TYPO3-english] toctoc_comments and news extension In-Reply-To: References: Message-ID: Hi, I have tx_news and toctoc_comments at work. and ran into similar problems. -Have you included the static template? -is jquery loaded? Make sure it's not loaded twice, e.g. by another extension, I had a couple of issues with this... Cheers, Stefan On 2/September/2014 9:07 PM, Riccardo De Contardi wrote: > Hi everyone > > Can someone help me in configuring the toctoc_comments extension to work > together with news (not tt_news) extension? > > I must be doing something wrong but I don't know what > > I use TYPO3 6.2.4 and the latest version of both extensions from TER > > my pagetree is something like: > > Home[ID=1] > | > +-news[ID=3] > | | > | +-Detail page[ID=4] > | > +-News folder[ID=5] > +-Comments folder[ID=6] > > I'd like my website users to comment each news in the detail page :) > > > In ts constants I added plugin.tx_toctoccomments_pi1.storagePid=6 > In this folder I added a record "plugin to table map" with this values: > > Plugin:news > Table: tx_news_domain_model_news > Optional URL parameter: tx_news_pi1 > > The other fields are empty > > In the detail page [ID=4] I added a comments plugin with the following: > > Mode: normal > Triggering prefix: news (the record "plugin to table map" mentioned before > > all other fields are empty or left with their default value. > > But... this way nothing is rendered on frontend! :( Am I forgetting > something or doing something wrong? > > Thank you for your answers and best regards > > > > From kaufmann at dwwd.ch Thu Sep 11 08:12:25 2014 From: kaufmann at dwwd.ch (Stefan Kaufmann) Date: Thu, 11 Sep 2014 08:12:25 +0200 Subject: [TYPO3-english] only users that are created in BE can login, rsa issue? Message-ID: Hi List I have an issue on a website that bothers me for some time now. When I create a new user account with a registration extension (sr_feuser_register or datamints_feuser..), the account is created, but when trying to login with felogin, the login fails. Nothing happens. The 'login' button has no effect or wrong user name/password message is displayed - depending on troubleshoot seetings. If I create the user in the BE, the FE login works. Using TYPO3 6.2.4. On a clean installation with same configuration the login works. So I suspect some conflict with password generation on the 'problem-website. Could it be saltedpasswords or rsaauth problem? How to find out? Any hint greaty appreciated. Greetings Stefan From pankamilr at gmail.com Thu Sep 11 10:10:56 2014 From: pankamilr at gmail.com (Kamil R) Date: Thu, 11 Sep 2014 10:10:56 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__Re=3A_=5BTYPO3-core=5D_Differen?= =?utf-8?q?t_title_tag_when_using_=22subtitle=22_field?= References: Message-ID: Hi Christian, many thanks for suggestion. My Typo3 has had not "updated" database of repository and installed 0.3 version of this extension. After update it works just like you said. One more time - many thanks. From ian at webian.it Thu Sep 11 10:41:51 2014 From: ian at webian.it (ian excedo) Date: Thu, 11 Sep 2014 10:41:51 +0200 Subject: [TYPO3-english] =?utf-8?q?_MySql_error_Column_=27originalfilesha1?= =?utf-8?q?=27_cannot_be_null?= Message-ID: Using TYPO3 6.2 whit Bootstrap Package I also use this online tool http://mattkersley.com/responsive/ to test responsive design. When I refresh with SHIFT+F5 and logged in administrator in BE, I often get this MySql error in 1 or 2 Iframe of the tool: ERROR Column 'originalfilesha1' cannot be null My guess is that when a non-cached page is hit quickly many times then there is a problem in the generation of some filenames. Maybe this could be a problem for sites with high traffic. Can someone else reproduce this? Thanks! From invisible.kinder at gmail.com Thu Sep 11 13:13:39 2014 From: invisible.kinder at gmail.com (Viktor Livakivskyi) Date: Thu, 11 Sep 2014 14:13:39 +0300 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_Responsive_image_generation?= References: Message-ID: Hi, Eraclio. ---------------------------------------------------- > Did you try to change CSS styles? It's faster and simpler way to make images look good for mobile devices: > http://basicuse.net/articles/pl/textile/html_css/how_to_resize_images_proportionally_using_css_for_responsive_web_design > You don't need to make several versions of the one image for different devices. CSS style will resize it automatically, even if it has predefined width and height in HTML. ---------------------------------------------------- This may be an option for some small images, which must stay same across all devices, but it has such a drawbacks: 1) Just imagine, that you need to have image to be shown as 800*400 px at retina screens - it'll grow up to 1600 * 800 px; and what about 3.0 dpi [1] - this will be 2400 * 1200 px; Now imagine smartphone with 480px screen width and 1.0 dpi with low-speed GPRS connection. Such a huge image will be loaded very slow and eat lot of traffic. So, that is a bad point to give a big image for a small screens. 2) What if image needs to be different on a smaller screens (differnet focal point) [2]? Then you can't reuse same desktop image, but allow editor to add different images for different screen sizes (at least 3: desktop, tablet and mobile) [1]: http://bjango.com/articles/min-device-pixel-ratio/ [2]: http://designshack.net/articles/css/focal-point-intelligent-cropping-of-responsive-images/ From invisible.kinder at gmail.com Thu Sep 11 14:56:17 2014 From: invisible.kinder at gmail.com (Viktor Livakivskyi) Date: Thu, 11 Sep 2014 15:56:17 +0300 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__only_users_that_are_created_in_?= =?utf-8?q?BE_can_login=2C_rsa_issue=3F?= References: Message-ID: Hi, Stefan > I have an issue on a website that bothers me for some time now. > When I create a new user account with a registration extension > (sr_feuser_register or datamints_feuser..), the account is created, but > when trying to login with felogin, the login fails. Nothing happens. The > 'login' button has no effect or wrong user name/password message is > displayed - depending on troubleshoot seetings. > > If I create the user in the BE, the FE login works. If I recall correctly, sr_feuser_register creates "hidden" user. After user confirms his registration via link form mail, user is "unhided". Did you check your user records, created by these extensiosn? Are they not "hidden"? Do they have correct usergroup? Are they cretaed in correct storage page? From pperic at mail.com Thu Sep 11 17:20:02 2014 From: pperic at mail.com (Pero Peric) Date: Thu, 11 Sep 2014 17:20:02 +0200 Subject: [TYPO3-english] Adding class attribute to an img tag Message-ID: Hi, I'm trying to add a class="something" to every image. I tried this: tt_content.image.20.default.addClassesImage > tt_content.image.20.default.addClassesImage = something I also tried this: tt_content.image.20.default.params = class="something" and this: tt_content.image.20.1.params = class="something" but nothing works. Looking into css_styled_content docs it says: addClassesImage - Add the specified classes to the image element so anybody knows why this doesn't work? Thx! regards. From ralf.rene at online.de Thu Sep 11 19:17:03 2014 From: ralf.rene at online.de (=?UTF-8?B?UmFsZi1SZW5lIFNjaHLDtmRlcg==?=) Date: Thu, 11 Sep 2014 19:17:03 +0200 Subject: [TYPO3-english] Adding class attribute to an img tag In-Reply-To: References: Message-ID: for me (in 6.2.4) the following works... with: tt_content.image.20.addClassesImage = csc-textpic-first something |*| something |*| csc-textpic-last something you add the class to the surrounding div !!! with: tt_content.image.20.1.params = class="something" every image tag directly get's the class BUT: a class for EVERY image makes no sense !!! -- image[FORMAT] - Ralf-Ren? Schr?der http://www.image-format.eu ... Wir geben Ihrem Image das richtige Format From pperic at mail.com Thu Sep 11 20:15:41 2014 From: pperic at mail.com (Pero Peric) Date: Thu, 11 Sep 2014 20:15:41 +0200 Subject: [TYPO3-english] Adding class attribute to an img tag In-Reply-To: References: Message-ID: On 11.9.2014. 19:17, Ralf-Rene Schr?der wrote: > for me (in 6.2.4) the following works... > > with: > tt_content.image.20.addClassesImage = csc-textpic-first something |*| > something |*| csc-textpic-last something > you add the class to the surrounding div !!! Ralf, regarding css_styled_content documentation, class should be added to the surrounding div with addClasses, while for addClassedImage it says: "addClassesImage - Add the specified classes to the image element" This sounds to me as class is added to img element but maybe my english is not too good. > with: > tt_content.image.20.1.params = class="something" > every image tag directly get's the class I tried this but it didn't work in 4.7.19, although this worked for me back before. Strange. > BUT: a class for EVERY image makes no sense !!! Responsive design, bootstrap bla bla. I don't know, i'm not into CSS and designer said yes, put it on every image :-) Regards. From ralf.rene at online.de Fri Sep 12 03:59:03 2014 From: ralf.rene at online.de (=?UTF-8?B?UmFsZi1SZW5lIFNjaHLDtmRlcg==?=) Date: Fri, 12 Sep 2014 03:59:03 +0200 Subject: [TYPO3-english] Adding class attribute to an img tag In-Reply-To: References: Message-ID: Am 11.09.2014 20:15, schrieb Pero Peric: > On 11.9.2014. 19:17, Ralf-Rene Schr?der wrote: >> for me (in 6.2.4) the following works... i had testet it in TYPO3 version 6.2.4 (i havn't read the CSC docs) maybe you or any extension has modified something there (i.e. imagecycle) ... look in your TSOB and find the right location >> BUT: a class for EVERY image makes no sense !!! > > Responsive design, bootstrap bla bla. I don't know, i'm not into CSS and > designer said yes, put it on every image :-) without your own class on every image you could assign every image in content with standard code in CSS .csc-textpic img { foo:bar; } maybe you have to override higher specifications with: DIV.csc-textpic DIV.csc-textpic-imagewrap .csc-textpic-image img { foo:bar; } or in extremly conditions with: DIV.csc-textpic DIV.csc-textpic-imagewrap .csc-textpic-image img { foo:bar !important; } -- image[FORMAT] - Ralf-Ren? Schr?der http://www.image-format.eu ... Wir geben Ihrem Image das richtige Format From pperic at mail.com Fri Sep 12 10:59:27 2014 From: pperic at mail.com (Pero Peric) Date: Fri, 12 Sep 2014 10:59:27 +0200 Subject: [TYPO3-english] Adding class attribute to an img tag In-Reply-To: References: Message-ID: On 12.9.2014. 3:59, Ralf-Rene Schr?der wrote: > Am 11.09.2014 20:15, schrieb Pero Peric: >> On 11.9.2014. 19:17, Ralf-Rene Schr?der wrote: >>> for me (in 6.2.4) the following works... > i had testet it in TYPO3 version 6.2.4 (i havn't read the CSC docs) > maybe you or any extension has modified something there (i.e. > imagecycle) ... look in your TSOB and find the right location > >>> BUT: a class for EVERY image makes no sense !!! >> >> Responsive design, bootstrap bla bla. I don't know, i'm not into CSS and >> designer said yes, put it on every image :-) > > without your own class on every image you could assign every image in > content with standard code in CSS > > .csc-textpic img { > foo:bar; > } > > > maybe you have to override higher specifications with: > DIV.csc-textpic DIV.csc-textpic-imagewrap .csc-textpic-image img { > foo:bar; > } > or in extremly conditions with: > DIV.csc-textpic DIV.csc-textpic-imagewrap .csc-textpic-image img { > foo:bar !important; > } > Thx. Ralph i will look more into it and hopefully make it work. Regards. From sinisa.mitrovic at avisto-eastern.com Fri Sep 12 11:16:13 2014 From: sinisa.mitrovic at avisto-eastern.com (Sinisa Mitrovic) Date: Fri, 12 Sep 2014 11:16:13 +0200 Subject: [TYPO3-english] Typo3 menu with begin and end Message-ID: Hello, Is it possible to set two menus in the same level like this: - First menu item 1 - First menu item 2 - First menu item 3 - Visual menu separator - Second menu item 1 - Second menu item 2 - Second menu item 3 So I can have first menu starting with "First menu item 1" and ending at "Visual menu separator", and second starting with "Second menu item 1". Second one I can do with "begin", but I can't break first one. I need this so user can as many items in menu, and because of that I can't use special "list", and also I can't use special "directory" because I would have that directory in URL. Best regards, Sinisa Mitrovic From pperic at mail.com Fri Sep 12 11:20:29 2014 From: pperic at mail.com (Pero Peric) Date: Fri, 12 Sep 2014 11:20:29 +0200 Subject: [TYPO3-english] Adding class attribute to an img tag In-Reply-To: References: Message-ID: Btw. now i tried putting css_styled_content static template as a last one (before it as was first in my list) and now tt_content.image.20.1.params = class="something" works. ah. :-) regards. From tntprograms at gmail.com Fri Sep 12 11:45:39 2014 From: tntprograms at gmail.com (Nemanja Todic) Date: Fri, 12 Sep 2014 11:45:39 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__Typo3_menu_with_begin_and_end?= References: Message-ID: Hi Sini?a, Here's how you can accomplish this: First, change your pages structure to following: -First menu Group (this is separator page type. Eg. uid is 100) - First menu item 1 - First menu item 2 - First menu item 3 -Second menu Group (this is separator page type. Eg uid is 200) - Second menu item 1 - Second menu item 2 - Second menu item 3 Then, create HMENU like this: lib.navigation.main = HMENU lib.navigation.main { entryLevel = 0 special = directory special.value = 100, 200 #UIDs of your root pages 1 = TMENU 1 { #the rest of the code... } } If I understood the request properly, this should do it. From tom.warwick at typo3.org Fri Sep 12 12:03:25 2014 From: tom.warwick at typo3.org (Tom Warwick) Date: Fri, 12 Sep 2014 12:03:25 +0200 Subject: [TYPO3-english] =?utf-8?q?_Adding_a_pID_to_subnav_UL?= Message-ID: Hi everyone, I'm generating a sub nav as a follows: ## SUB MENU BEGIN lib.subMenu = HMENU lib.subMenu.entryLevel = 1 lib.subMenu.required = 1 lib.subMenu.1 = TMENU lib.subMenu.1.wrap =

    lib.subMenu.1.noBlur=1 lib.subMenu.1.NO { allWrap =
  • |
  • CUR.ATagParams = class="subactive" CUR.linkWrap =
  • |
  • } Is there a way to insert its parents pID into the UL? i.e.
      So all the pages sitting under the pID of 1 would have a subnav that has the UL of 1. Hope this makes sense, thats as ever for your help. Tom From ralf.rene at online.de Fri Sep 12 12:55:06 2014 From: ralf.rene at online.de (=?UTF-8?B?UmFsZi1SZW5lIFNjaHLDtmRlcg==?=) Date: Fri, 12 Sep 2014 12:55:06 +0200 Subject: [TYPO3-english] Adding class attribute to an img tag In-Reply-To: References: Message-ID: when CSC as last static template work for you, then one of your extensions is modyfying something and won't work now as expected... (i know that i.e. imagecycle is such an extension) what extensions have you installed ? -- image[FORMAT] - Ralf-Ren? Schr?der http://www.image-format.eu ... Wir geben Ihrem Image das richtige Format From etradepriyanka23 at gmail.com Fri Sep 12 13:29:07 2014 From: etradepriyanka23 at gmail.com (priyanka rani) Date: Fri, 12 Sep 2014 13:29:07 +0200 Subject: [TYPO3-english] =?utf-8?q?_What_to_Consider_When_Picking_a_Delhi_?= =?utf-8?q?Moving_Firm?= Message-ID: Are you currently considering going in 2010? Each and every year, quite a few folks along with people decide for you to transfer. If you're thinking about turning into a type of folks, there are numerous regarding critical factors that you need to primary look at. A type of issues will involve the particular getting of your relocating corporation. In case you are relocating in order to Delhi as well as shifting coming from Delhi, you really should contemplate employing this solutions of an Delhi transferring business. The majority of men and women along with households choose to employ the transferring firm since it is simpler about them. Any transferring organization makes it possible for nearly all switching folks and also people to keep with regards to the activities, without needing to be worried about precisely how the things are certain to get derived from one of destination to a different. In the event that feels like anything choosing keen on, people should, a minimum of, take into account having a Delhi relocating corporation. To employ any Delhi shifting organization, you may primary must understand your choices. That can be done consequently by means of analyzing any local cell phone publication, particularly when an individual currently stay in the actual Delhi place, as well as also you can search on the internet. Whatever research technique you decide, chances are that might be quite a few benefits. These types of outcomes may very well incorporate several unique Delhi relocating organizations. Prior to picking out a particular Delhi transferring organization, it is crucial that you just take a look at quite a few variables. Most of these components include the price of solutions, the kind of companies provided, along with the location that every transferring organization targets on. Many Delhi transferring corporations covers a broad component of Delhi Point out. In reality, it's also wise to have the capacity to come across no less than one Delhi shifting firm that may help you proceed to as well as via a different talk about. The space which a Delhi shifting corporation protects is very important while picking a firm in order to sell to. The reason being you do not would like to take your time exploring some sort of Delhi transferring corporation which is not able to provide you with guidance. It is usually imperative that you look at the price of providers. You will discover, in many instances, that many Delhi relocating corporation packages their unique expenses. These kind of costs can be big, modest, or perhaps regular, in comparison with conventional shifting charges. Most likely, the particular charges you happen to be priced ought to be one of several very first factors that you need to take a look at. This particular will help you locate an additional Delhi transferring business if you're struggle to pay the products and services of this initial decision. While general charge regarding by using a Delhi transferring corporation is very important, additionally it is crucial to take a look at precisely what is a part of people charges. A lot more companies which can be incorporated, the larger the particular service fees is going to be, of all situations. Certainly, some sort of Delhi shifting corporation will probably transportation ones things in one position to another; nevertheless, they might in addition carry out added tasks. These tasks can include appearance upwards your current possessions or perhaps stocking all of them on a great offsite spot. In the event extra products and services usually are in the price tag in addition to you don't need make use of these products and services, that you are well-advised in opposition to spending money on these. By simply retaining those details at heart, a person are able to discover an easily affordable Delhi going corporation for you to buy from. Your research in addition to very careful assessment, stated earlier, is very important since you will end up presenting the loved items for you to persons you do not realize. For more information please visit the site: http://6th.in/packers-and-movers-delhi/ From pperic at mail.com Fri Sep 12 14:16:23 2014 From: pperic at mail.com (Pero Peric) Date: Fri, 12 Sep 2014 14:16:23 +0200 Subject: [TYPO3-english] Adding class attribute to an img tag In-Reply-To: References: Message-ID: On 12.9.2014. 12:55, Ralf-Rene Schr?der wrote: > when CSC as last static template work for you, then one of your > extensions is modyfying something and won't work now as expected... > (i know that i.e. imagecycle is such an extension) > > what extensions have you installed ? > I'm using following static templates: Images Frames for CSS styled content News_settings Drop-Down site map Slideshow SmoothGallery FlexSlider CSS Styled Content TYPO3 v.4.6 I could remove one by one and find out which one makes problem. regards. From christian at futterlieb.ch Fri Sep 12 14:24:16 2014 From: christian at futterlieb.ch (Christian Futterlieb) Date: Fri, 12 Sep 2014 14:24:16 +0200 Subject: [TYPO3-english] Adding a pID to subnav UL In-Reply-To: References: Message-ID: Hi Tom > lib.subMenu.1.wrap =
        |
      Try replacing the above line with following: lib.subMenu.1.stdWrap.dataWrap =
        |
      Regards, Christian From ralf.rene at online.de Fri Sep 12 16:32:26 2014 From: ralf.rene at online.de (=?UTF-8?B?UmFsZi1SZW5lIFNjaHLDtmRlcg==?=) Date: Fri, 12 Sep 2014 16:32:26 +0200 Subject: [TYPO3-english] Adding class attribute to an img tag In-Reply-To: References: Message-ID: Am 12.09.2014 14:16, schrieb Pero Peric: > Images Frames for CSS styled content > Slideshow i would suggest these testing first... -- image[FORMAT] - Ralf-Ren? Schr?der http://www.image-format.eu ... Wir geben Ihrem Image das richtige Format From info at bednarik.org Fri Sep 12 20:16:27 2014 From: info at bednarik.org (Jan Bednarik) Date: Fri, 12 Sep 2014 20:16:27 +0200 Subject: [TYPO3-english] Typo3 menu with begin and end In-Reply-To: References: Message-ID: You could insert Spacer and then add rendering for the spacer: menu = HMENU menu { 1 = TMENU 1.wrap =
      |

      1.NO.allWrap = | 1.SPC = 1 1.SPC.doNotLinkIt = 1 1.SPC.stdWrap.override =

      } Jan Dne 12. 9. 2014 11:16, Sinisa Mitrovic napsal(a): > Hello, > > Is it possible to set two menus in the same level like this: > > - First menu item 1 > - First menu item 2 > - First menu item 3 > - Visual menu separator > - Second menu item 1 > - Second menu item 2 > - Second menu item 3 > > So I can have first menu starting with "First menu item 1" and ending at > "Visual menu separator", and second starting with "Second menu item 1". > Second one I can do with "begin", but I can't break first one. I need > this so user can as many items in menu, and because of that I can't use > special "list", and also I can't use special "directory" because I would > have that directory in URL. > > Best regards, > Sinisa Mitrovic From pperic at mail.com Sat Sep 13 18:23:19 2014 From: pperic at mail.com (Pero Peric) Date: Sat, 13 Sep 2014 18:23:19 +0200 Subject: [TYPO3-english] GIFBUILDER problem Message-ID: Hi, I'm trying to print a BOX or TEXT on the png image with GIFBUILDER but it doesn't work. So, first i load background png image and then i do something like this: 30 = BOX 30 { dimensions = 10,-10,44,10 align = l,b color = black } The box doesn't show up. If i remove background image box shows up. All img tests are ok in install tool. Anybody knows what's wrong? Thx. Regards. From garais at amadeo-marketing.de Sun Sep 14 11:27:24 2014 From: garais at amadeo-marketing.de (amadeo Marketing & Design - Paul Garais) Date: Sun, 14 Sep 2014 11:27:24 +0200 Subject: [TYPO3-english] GIFBUILDER problem In-Reply-To: References: Message-ID: Hi Pero, are you sure that the order of your layers is correct? Like 10 = IMAGE, 20 = TEXT and so on? It is important that your image is in the background. If you would put the box in order before the image (30 = BOX, 40 = IMAGE), the image will overlay the box. *Paul Garais* Tel. (02 51) 620 651-73 Fax (02 51) 620 651-69 garais at agentur-eulenblick.de www.agentur-eulenblick.de Albersloher Weg 662 ? 48167 M?nster Am 13.09.2014 18:23, schrieb Pero Peric: > Hi, > > I'm trying to print a BOX or TEXT on the png image with GIFBUILDER but it doesn't work. So, first > i load background png image and then i do something like this: > > 30 = BOX > 30 { > dimensions = 10,-10,44,10 > align = l,b > color = black > } > > The box doesn't show up. If i remove background image box shows up. All img tests are ok in > install tool. Anybody knows what's wrong? Thx. > > Regards. > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.typo3.org > http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english > From info at cybercraft.de Sun Sep 14 11:47:37 2014 From: info at cybercraft.de (Jo Hasenau) Date: Sun, 14 Sep 2014 11:47:37 +0200 Subject: [TYPO3-english] TYPO3 User Experience Week T3UXW14 Message-ID: Dear fellow designers, coders, writers, project managers and editors. Due to the usual last minute cancellations we reopened the T3UXW application form at http://www.t3uxw.org - So this is your chance to shape the future of TYPO3 together with us. If you want to know, what this is all about, just go to the FAQ section, call us or ask via PM. We got a budget for travelling, food and accomodation, just bring your creativity and we will take care of the rest. So don't hesitate and apply now! See you there Petra & Joey -- Diversity: Die Kunst zusammen unabh?ngig zu denken The art of thinking independently together. -- Facebook: https://www.facebook.com/johasenau Twitter: http://twitter.com/bunnyfield Xing: http://contact.cybercraft.de TYPO3 cookbook (2nd edition): http://www.typo3experts.com From jigal.van.hemert at typo3.org Sun Sep 14 11:57:20 2014 From: jigal.van.hemert at typo3.org (Jigal van Hemert) Date: Sun, 14 Sep 2014 11:57:20 +0200 Subject: [TYPO3-english] GIFBUILDER problem In-Reply-To: References: Message-ID: Hi, On 13-9-2014 18:23, Pero Peric wrote: > I'm trying to print a BOX or TEXT on the png image with GIFBUILDER but > it doesn't work. So, first i load background png image and then i do > something like this: It's easier for people to help if you post the entire piece of TypoScript for this image plus the TYPO3 version you're working with. Otherwise it's impossible to reproduce potential problems. -- Jigal van Hemert TYPO3 CMS Active Contributor TYPO3 .... inspiring people to share! Get involved: typo3.org From pperic at mail.com Sun Sep 14 12:18:41 2014 From: pperic at mail.com (Pero Peric) Date: Sun, 14 Sep 2014 12:18:41 +0200 Subject: [TYPO3-english] GIFBUILDER problem In-Reply-To: References: Message-ID: On 14.9.2014. 11:57, Jigal van Hemert wrote: > Hi, > > On 13-9-2014 18:23, Pero Peric wrote: >> I'm trying to print a BOX or TEXT on the png image with GIFBUILDER but >> it doesn't work. So, first i load background png image and then i do >> something like this: > > It's easier for people to help if you post the entire piece of > TypoScript for this image plus the TYPO3 version you're working with. > Otherwise it's impossible to reproduce potential problems. > Ok. This is code. TYPO3 ver. 4.7.19 plugin.tt_news { displayList { image > image { stdWrap.cObject = IMAGE stdWrap.cObject.file = GIFBUILDER stdWrap.cObject.file { XY = 99,113 format = png 10 = IMAGE 10 { offset = 0,0 file = fileadmin/polaroid.png } 20 = IMAGE 20 { offset = 5,5 file { # Import the image from the tt_news record import = uploads/pics/ import.data = field:image import.listNum = 0 import.override.field = image width = 89 height = 77 } 30 = BOX 30 { dimensions = 10,-10,44,10 align = l,b color = black opacity = 50 } } } } } From pperic at mail.com Sun Sep 14 12:25:33 2014 From: pperic at mail.com (Pero Peric) Date: Sun, 14 Sep 2014 12:25:33 +0200 Subject: [TYPO3-english] GIFBUILDER problem In-Reply-To: References: Message-ID: Ah, found it.. I missed one } in object 20. Sorry, stupid mistake :-( Regards. From garais at amadeo-marketing.de Sun Sep 14 12:35:53 2014 From: garais at amadeo-marketing.de (Paul Garais) Date: Sun, 14 Sep 2014 12:35:53 +0200 Subject: [TYPO3-english] GIFBUILDER problem In-Reply-To: References: Message-ID: As Jigal van Hemert mentioned: Sometimes it is good to step back and look at the whole code instead of focussing on specific parts ;). I think we all know that problem. Have a nice Sunday! *Paul Garais* Tel. (02 51) 620 651-73 Fax (02 51) 620 651-69 garais at agentur-eulenblick.de www.agentur-eulenblick.de Albersloher Weg 662 ? 48167 M?nster Am 14.09.2014 12:25, schrieb Pero Peric: > Ah, found it.. I missed one } in object 20. Sorry, stupid mistake :-( > > Regards. > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.typo3.org > http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english > From pperic at mail.com Sun Sep 14 12:55:16 2014 From: pperic at mail.com (Pero Peric) Date: Sun, 14 Sep 2014 12:55:16 +0200 Subject: [TYPO3-english] GIFBUILDER problem In-Reply-To: References: Message-ID: On 14.9.2014. 12:35, Paul Garais wrote: > As Jigal van Hemert mentioned: Sometimes it is good to step back and > look at the whole code instead of focussing on specific parts ;). > I think we all know that problem. > > > Have a nice Sunday! Yes or maybe i just need some good TS editor to highlight syntax errors :-) Anyway thx. for getting into this! Regards. From pperic at mail.com Sun Sep 14 16:48:41 2014 From: pperic at mail.com (Pero Peric) Date: Sun, 14 Sep 2014 16:48:41 +0200 Subject: [TYPO3-english] Getting a date in tt_news Message-ID: Hi, I would like to generate tt_news images in list view with gifbuilder and those images should contain coresponding date when news was published. How can i get a date for every news inside tt_news plugin? Thx. Regards. From pperic at mail.com Sun Sep 14 18:08:17 2014 From: pperic at mail.com (Pero Peric) Date: Sun, 14 Sep 2014 18:08:17 +0200 Subject: [TYPO3-english] Getting a date in tt_news In-Reply-To: References: Message-ID: On 14.9.2014. 16:48, Pero Peric wrote: > Hi, > > I would like to generate tt_news images in list view with gifbuilder and > those images should contain coresponding date when news was published. > How can i get a date for every news inside tt_news plugin? Thx. > > Regards. Hm, it seems: field:datetime works. I didn't expect it to be so simple :-) Regards. From spamerworld.spam at gmail.com Sun Sep 14 18:19:50 2014 From: spamerworld.spam at gmail.com (Ershad oli) Date: Sun, 14 Sep 2014 18:19:50 +0200 Subject: [TYPO3-english] =?utf-8?q?_!!football_score!!=7EMiami_vs_Buffalo?= =?utf-8?q?=3A_Live_Score=2C_Live_TV=2C_Highlight_=26_News_Result?= Message-ID: Welcome to Watch online sports between Miami vs Buffalo Live National Football League Match start Time, live stream, score, Highlights, Preview & Recaps Live Telecast Online here by HD Tv link. This NFL Biggest event between Miami vs Buffalo will be held at Sunday, Sep 14, 2014. Watch this competition just you have need to buy a tv software. Follow our given streaming link below to buy a TV software and watch this NFL Football match on your PC, Laptop, Mac(Osx), Smart phones around the world anywhere access. Miami vs Buffalo Live Match Info.. National Football League regular Season 2014-15 Miami vs Buffalo Live Date: Sunday, September 14, 2014. Time: 01:00 PM ET Week: 2 Watch all the games, highlights and interviews live on your Laptop or PC! The Online TV Player is ideal for the frequent traveler in long airport waits and train rides. Get instant access to the widest sports coverage on the net directly on your Laptop from any location. No Extra hardware required. Easy to use and anytime anywhere access. Better and cheapest then your cable TV. Watch Over 3700 thousand HD TV on your PC. Crystal clear coverage is essential so you don't miss any part of the action. The High Quality Definition picture. It's the best on the net. watch Miami vs Buffalo Live National Football (Online TV, Score, Preview 2014). The National Football 2014 Season Continues when Abilene Christian squares off against Georgia State on ESPNU. The first FBS game on the Season played. As Georgia State on the Sun Belt host lower-division opponent Abilene Christian squares. You can watch this game live stream on TV Channel ESPN, ESP3, BTN, ESPU, VERS, FSN, ABC, NBC, CBSC, FCS, ESP2 any one of these channel will broadcast this Miami vs Buffalo game Live. you can listen live commentary of this game on internet radio and live score will be available at yahoo sports. get the best online sports coverage on the net directly on your PC. Just try it will be completely satisfied with your services. No extra hardware required. it's better and chefeapst then your cable TV. watch 3700+HD channel On your deceive. Miami vs Buffalo Live,Miami vs Buffalo Live stream, Miami vs Buffalo nflB, Chicago vs San Francisco live National football, Miami vs Buffalo streaming, Miami vs Buffalo hd tv, Chicago vs San Francisco ESPN, ESP3, BTN, ESPU, VERS, FSN, ABC, NBC, CBSC, FCS, ESP2 nfl Football 2014, PC, Laptop, Mobile. MAC, nfl.,com. nfl.com, FOX sports, bbc, yahoo, bing, google, Facebook, twitter, Miami vs Buffalo Live webcast, Miami vs Buffalo Live sopcast, stream coverage, TV network, Telecast, Miami vs Buffalo Live live hd video, all sports tv+3700+HD channel, Miami vs Buffalo Live Score, Highlights and Reaction, Miami vs Buffalo Live Score & Highlights, Live Score, Miami vs Buffalo Highlights and Analysis, Miami vs Buffalo Live Stream Tv info highlight & News result, Chicago vs San Francisco Live Score & News Result, Miami vs Buffalo Live, Watch Miami vs Buffalo Live hdq tv online, Watch Miami vs Buffalo Live Streaming, From spamerworld.spam at gmail.com Sun Sep 14 18:21:09 2014 From: spamerworld.spam at gmail.com (Ershad oli) Date: Sun, 14 Sep 2014 18:21:09 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_!!football_score!!=7EMiami_vs_Bu?= =?utf-8?q?ffalo=3A_Live_Score=2C_Live_TV=2C_Highlight_=26_News_Result?= References: Message-ID: watch Miami vs Buffalo Live National Football (Online TV, Score, Preview 2014). The National Football 2014 Season Continues when Abilene Christian squares off against Georgia State on ESPNU. The first FBS game on the Season played. As Georgia State on the Sun Belt host lower-division opponent Abilene Christian squares. From spamerworld.spam at gmail.com Sun Sep 14 18:22:50 2014 From: spamerworld.spam at gmail.com (Ershad oli) Date: Sun, 14 Sep 2014 18:22:50 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_!!football_score!!=7EMiami_vs_Bu?= =?utf-8?q?ffalo=3A_Live_Score=2C_Live_TV=2C_Highlight_=26_News_Result?= References: Message-ID: You can watch this game live stream on TV Channel ESPN, ESP3, BTN, ESPU, VERS, FSN, ABC, NBC, CBSC, FCS, ESP2 any one of these channel will broadcast this Miami vs Buffalo game Live. you can listen live commentary of this game on internet radio and live score will be available at yahoo sports. get the best online sports coverage on the net directly on you From spamerworld.spam at gmail.com Sun Sep 14 18:23:56 2014 From: spamerworld.spam at gmail.com (Ershad oli) Date: Sun, 14 Sep 2014 18:23:56 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_!!football_score!!=7EMiami_vs_Bu?= =?utf-8?q?ffalo=3A_Live_Score=2C_Live_TV=2C_Highlight_=26_News_Result?= References: Message-ID: Miami vs Buffalo Live Get nfl live tv link ==>http://satellitedirechdtv.com/nfl/ Match Info.. National Football League regular Season 2014-15 Miami vs Buffalo Live Date: Sunday, September 14, 2014. Time: 01:00 PM ET Week: 2 From spamerworld.spam at gmail.com Sun Sep 14 18:25:35 2014 From: spamerworld.spam at gmail.com (Ershad oli) Date: Sun, 14 Sep 2014 18:25:35 +0200 Subject: [TYPO3-english] =?utf-8?b?ICgoTGl2ZSkpJV49IChNaWFtaSB2cyBCdWZm?= =?utf-8?q?alo=29_Live_Stream=2Eing?= Message-ID: Hi All (NFL) National Football League Fans/lovers. Welcome to Watch online sports between Miami vs Buffalo Live National Football League Match start Time, live stream, score, Highlights, Preview & Recaps Live Telecast Online here by HD Tv link. This NFL Biggest event between Miami vs Buffalo will be held at Sunday, Sep 14, 2014. Watch this competition just you have need to buy a tv software. Follow our given streaming link below to buy a TV software and watch this NFL Football match on your PC, Laptop, Mac(Osx), Smart phones around the world anywhere access. Miami vs Buffalo Live Get nfl live tv link===> http://satellitedirechdtv.com/nfl/ Get nfl live tv link===> http://satellitedirechdtv.com/nfl/ Match Info.. National Football League regular Season 2014-15 Miami vs Buffalo Live Date: Sunday, September 14, 2014. Time: 01:00 PM ET Week: 2 Watch all the games, highlights and interviews live on your Laptop or PC! The Online TV Player is ideal for the frequent traveler in long airport waits and train rides. Get instant access to the widest sports coverage on the net directly on your Laptop from any location. No Extra hardware required. Easy to use and anytime anywhere access. Better and cheapest then your cable TV. Watch Over 3700 thousand HD TV on your PC. Crystal clear coverage is essential so you don't miss any part of the action. The High Quality Definition picture. It's the best on the net. watch Miami vs Buffalo Live National Football (Online TV, Score, Preview 2014). The National Football 2014 Season Continues when Abilene Christian squares off against Georgia State on ESPNU. The first FBS game on the Season played. As Georgia State on the Sun Belt host lower-division opponent Abilene Christian squares. From spamerworld.spam at gmail.com Sun Sep 14 18:48:07 2014 From: spamerworld.spam at gmail.com (Ershad oli) Date: Sun, 14 Sep 2014 18:48:07 +0200 Subject: [TYPO3-english] =?utf-8?q?_!Live_Score=40=29_Miami_vs_Buffalo_Liv?= =?utf-8?q?e_Streaming?= Message-ID: Hi All (NFL) National Football League Fans/lovers. Welcome to Watch online sports between Miami vs Buffalo Live National Football League Match start Time, live stream, score, Highlights, Preview & Recaps Live Telecast Online here by HD Tv link. This NFL Biggest event between Miami vs Buffalo will be held at Sunday, Sep 14, 2014. Watch this competition just you have need to buy a tv software. Follow our given streaming link below to buy a TV software and watch this NFL Football match on your PC, Laptop, Mac(Osx), Smart phones around the world anywhere access. Miami vs Buffalo Live Take this link==> http://satellitedirechdtv.com/nfl/ Take this link==> http://satellitedirechdtv.com/nfl/ Match Info.. National Football League regular Season 2014-15 Miami vs Buffalo Live Date: Sunday, September 14, 2014. Time: 01:00 PM ET Week: 2 Watch all the games, highlights and interviews live on your Laptop or PC! The Online TV Player is ideal for the frequent traveler in long airport waits and train rides. Get instant access to the widest sports coverage on the net directly on your Laptop from any location. No Extra hardware required. Easy to use and anytime anywhere access. Better and cheapest then your cable TV. Watch Over 3700 thousand HD TV on your PC. Crystal clear coverage is essential so you don't miss any part of the action. The High Quality Definition picture. It's the best on the net. watch Miami vs Buffalo Live National Football (Online TV, Score, Preview 2014). The National Football 2014 Season Continues when Abilene Christian squares off against Georgia State on ESPNU. The first FBS game on the Season played. As Georgia State on the Sun Belt host lower-division opponent Abilene Christian squares. From spamerworld.spam at gmail.com Sun Sep 14 18:49:37 2014 From: spamerworld.spam at gmail.com (Ershad oli) Date: Sun, 14 Sep 2014 18:49:37 +0200 Subject: [TYPO3-english] =?utf-8?q?_MyAfibStory=2Ecom_400_at_Chicago_live_?= =?utf-8?q?streaming?= Message-ID: On Sunday, Sept. 14 Start Time: 2 p.m. (ET) Site: Chicagoland Speedway -- Joliet, Illinois Track: 1.5-mile oval Laps: 267 Miles: 400.5 Get NASCAR HD TV Link here => If you looking for a nascar sprint cup MyAfibStory.com 400 at Chicago live streaming link This site the correct place to watch it. You can watch a live online stream of nascar sprint cup MyAfibStory.com 400 at Chicago right here. At www.nascarlivetv.com we make it possible for you to watch Live Sports Broadcasts from all over the world completely free including nascar sprint cup at chicago No matter where you are you can watch nascar sprint cup MyAfibStory400 at Chicago online. All that you need is a computer with internet access no cables or additional hardware is required to watching this game live here 2014 CHICAGO MYAFIBSTORY COM 400 NASCAR RACE LIVE Watch?>>> MyAFibStory.com 400 live streaming online hd tv 2014 ... forumgameragecom ? ... ? Off-Topic Discussion????????? ??? ??? 1 day ago - 1 ???????????????? - ?1 author {}FREE{} MyAFibStory.com 400 live streaming online hd tv 2014 MyAFibStory.com 400 ... Illinois, USA, southwest of Chicago. The speedway ... Watch Nascar Sprint Cup Online ? Live Here ... nascarsprintcuponlinewordpresscom/????????? ??? ??? If you looking for a nascar sprint cup MyAfibStory.com 400 at Chicago live streaming link This site the correct place to watch it. You can watch a live online ... time, TV schedule for MyAfibStory.com 400 - SB Nation wwwsbnationcom/.../2014-nascar-chicagoland-sp...????????? ??? ??? 45 mins ago - ... Chicago 2014: Start time, TV schedule for MyAfibStory.com 400 ... The race will also be shown online on Watch ESPN, and will air live in ... RaceCast - Myafibstory.com 400 at Chicago - ESPN.com sports-ak.espngocom/.../raceca... Loading... Advertisement: RaceCast will continue in ...Skip this ad ?. Report Bug. Watch RaceBuddy Live on NASCAR.COM. Checkard ... Watch Myafibstory.com 400 at Chicago Live Online at ... espn.go.com/.../myafibstorycom... Watch Myafibstory.com 400 at Chicago live online now at WatchESPN or check out the full replay if you missed it. time, TV schedule for MyAfibStory.com 400 - SB Nation wwwsbnationcom/.../2014-nas... ?? ????? ??? - ... Chicago 2014: Start time, TV schedule for MyAfibStory.com 400 ... The race will also be shown online on Watch ESPN, and will air live in ... Fantasy NASCAR at Chicago 2014: Picks, Top Drivers for ... bleacherreportcom/.../2190664... ? ??? ??? - The NASCAR Sprint Cup Series travels to Joliet, Illinois, this week for the MyAFibStory.com 400. The race will be the first race in the new Chase ... MyAFibStory.com 400 - Chicagoland Speedway wwwchicagolandspeedwayco... ???????? ?????? ??? ????? Experience all of the action for yourself live and in person! Check out the MyAFibStory.com 400 Driver Entry List! ... As part of this patriotic pre-race ceremony, Jim Cornelison, the Chicago Blackhawks national anthem singer, will perform "The ... NASCAR Drivers, Standings & News : NASCAR Sprint Cup ... wwwnascarcom/ ???????? ?????? ??? ????? Full race day Chicagoland schedule ? MyAFibStory.com 400 starting lineup ? Ambrose to leave RPM after ... Chase strategies divergent, unknown at Chicago. MyAFibStory.com 400 starting lineup - NASCAR.com www.nascar.com/.../sprint-cup-s... ???????? ?????? ??? ????? MyAFibStorycom 400 starting lineup. September 12, 2014, Staff report, NASCAR.com. Like. Share; Print. MyAFibStory.com 400 starting lineup See how they will ... Watch MyAFibStory 400 Live Streaming At Chicago - Video ... wwwdailymotioncom/.../x25vc... ???????? ?????? ??? ????? 1 ??? ??? - Watch the video ?Watch MyAFibStory 400 Live Streaming At Chicago? uploaded by jikkle on Dailymotion. Nascar 2014 Live Chicago 400 Online | Facebook wwwfacebookcom/nasc... ???????? ?????? ??? ????? Nascar 2014 Live Chicago 400 Online. 112 likes ? 22 talking about this. Myafibstory.com 400 Race Nascar Sprint Cup 2014 Live Stream Chicago Main Events... From roberto.ghilardi at bhuman.it Mon Sep 15 10:24:27 2014 From: roberto.ghilardi at bhuman.it (Roberto ghilardi) Date: Mon, 15 Sep 2014 10:24:27 +0200 Subject: [TYPO3-english] =?utf-8?q?_Access_limitation_=28banned_group=29?= Message-ID: Good morning, is it possible to prohibit the display of a frontend page for a specific group? For example, as if it belonged to a group "banned", without losing the reference of the other groups. I'm using typo3 6.2. thanks Roberto From fschwaiger at gmail.com Mon Sep 15 12:09:38 2014 From: fschwaiger at gmail.com (Florian Schwaiger) Date: Mon, 15 Sep 2014 12:09:38 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_Typo3_=22Core=3A_Error_handler_?= =?utf-8?q?=28FE=29=3A_PHP_Warning=3A_is=5Fdir=28=29=3A_Unable_to_find_the?= =?utf-8?b?IHdyYXBwZXIgLi4uIg==?= References: Message-ID: Hello, see my answer here on Stackoverflow: http://stackoverflow.com/questions/25501864/typo3-core-error-handler-fe-php-warning-is-dir-unable-to-find-the-wrapp/25845520 I do not think that this is caused by a typo, any file searches or database searches were effortless. Maybe there is indeed a low level bug splittings file strings? Regards Florian From tom.warwick at typo3.org Mon Sep 15 15:01:45 2014 From: tom.warwick at typo3.org (Tom Warwick) Date: Mon, 15 Sep 2014 15:01:45 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__Adding_a_pID_to_subnav_UL?= References: Message-ID: Hi Christian, Thanks for your help, no joy with that I'm afraid. I'll keep trying Tom From philipp.gampe at typo3.org Tue Sep 16 01:32:56 2014 From: philipp.gampe at typo3.org (Philipp Gampe) Date: Tue, 16 Sep 2014 01:32:56 +0200 Subject: [TYPO3-english] Version history missing in TER References: Message-ID: Hi Alexander, Alexander Stehlik wrote: > Can someone help me here? Or should I open an issue in forge? Please create a forge issue for the typo3.org project. Did you by chance upload the extension with the old version still in the emconf.php? Best regards -- Philipp Gampe ? PGP-Key 0AD96065 ? TYPO3 UG Bonn/K?ln Documentation ? Active contributor TYPO3 CMS TYPO3 .... inspiring people to share! From hiddink at bendoo.nl Tue Sep 16 08:36:59 2014 From: hiddink at bendoo.nl (Bert Hiddink [BENDOO e-work solutions]) Date: Tue, 16 Sep 2014 08:36:59 +0200 Subject: [TYPO3-english] TYPO3 6.2.x and News: selecting MANY categories in Flexform Message-ID: Hello, I am using News and TYPO3 6.2: when selecting multiple categories (>200) from the Flexform of the plugin, I get an error..."The fields marked with a yellow exclamation mark are not yet correctly filled in. Please complete them properly"...I have to uncheck some categories, in order to be able to check others...the behaviour seems inconsistent to me, having difficulties to determine where the problem comes from. Is this a javascript issue? Or has this to do with TCEFORM.news.config.maxitems? Strangely enough, at page level where the same categories also are available from the same sys_category-table, there I can check/uncheck all categories without any problem.. Any ideas or similar experiences? Thanks in advance! Regards, Bert From snf at dkm.dk Tue Sep 16 09:11:29 2014 From: snf at dkm.dk (=?ISO-8859-1?Q?Stig_N=F8rgaard_F=E6rch?=) Date: Tue, 16 Sep 2014 09:11:29 +0200 Subject: [TYPO3-english] Preferred calendar extension for TYPO3 6.2? Message-ID: Hi We have been using Calendar Base for some years now, but have always thought that its a bit too heavy code wise. What would you guys use for a new TYPO3 6.2 installation today? Best regards, Stig From hiddink at bendoo.nl Tue Sep 16 10:03:41 2014 From: hiddink at bendoo.nl (Bert Hiddink [BENDOO e-work solutions]) Date: Tue, 16 Sep 2014 10:03:41 +0200 Subject: [TYPO3-english] TYPO3 6.2.x and News: selecting MANY categories in Flexform In-Reply-To: References: Message-ID: Hello! The following resolved my issue, in: News/Configuration/flexform_news.xml Set both to "999" instead of "99" 999 999 Thanks and regards, Bert select tree parent 999 TRUE TRUE sys_category AND (sys_category.sys_language_uid = 0 OR sys_category.l10n_parent = 0) ORDER BY sys_category.sorting 10 20 0 999 On 16-09-14 08:36, Bert Hiddink [BENDOO e-work solutions] wrote: > Hello, > > I am using News and TYPO3 6.2: when selecting multiple categories (>200) > from the Flexform of the plugin, I get an error..."The fields marked > with a yellow exclamation mark are not yet correctly filled in. Please > complete them properly"...I have to uncheck some categories, in order to > be able to check others...the behaviour seems inconsistent to me, having > difficulties to determine where the problem comes from. > > Is this a javascript issue? Or has this to do with > TCEFORM.news.config.maxitems? > > Strangely enough, at page level where the same categories also are > available from the same sys_category-table, there I can check/uncheck > all categories without any problem.. > > Any ideas or similar experiences? > > Thanks in advance! > > Regards, > Bert From katja.lampela at lieska.net Tue Sep 16 11:52:10 2014 From: katja.lampela at lieska.net (Katja Lampela) Date: Tue, 16 Sep 2014 12:52:10 +0300 Subject: [TYPO3-english] Media element and 4.7.19 Message-ID: Hi, I can't get the media (mp4 video) load right in 4.7.19. If I set the "Render Type" to Auto, I get the player ok in laptop/desktop but mobile devices (android or apple) don't show anything. If I set the Render Type to "QuickTime Browser Plugin", the video shows in mobile devices fine, but then on laptop/desktop the video size is wrong. The original size is cropped to the dimensions of flexform, so only part of the video is shown. If I set the Render type to "Native HTML Embed Element", the video is still wrong size and the dimensions given in flexform don't have any inpact to anything. Clicking the HTML5/accessible rendering on or off has no effect. Any idea what to do? -- Kind regards, Katja Lampela www.lieska.net From superscotty19 at yahoo.com Wed Sep 17 08:54:56 2014 From: superscotty19 at yahoo.com (Scotty C) Date: Tue, 16 Sep 2014 23:54:56 -0700 Subject: [TYPO3-english] Load Different Template Based on Page's Content Message-ID: Hi everyone, I'm sure this one isn't too tricky but I've been staring at code far too long that it's all just a blur. I've got a page tree like this: - Root_Page (id=1) --- Page_1 (id=55) --- Page_2 (id=3) ------ Page_3 (id=4) ------ Page_4 (id=5) I also have 2 HTML templates. Now, this is going to sound weird but, I access page_1's content from page_2 using a COA_INT. What I want to do is, in Page_2's TypoScript, load page_1's content into template1 if there is content in page_1. Otherwise, load page_2 (and its subpage)'s content into template2. Basically, Page 1 is an override for Page2 (and it's subpages). I need to make it simple enough that the user just has to put content into Page_1 and it will take over. I found a link at http://www.typo3wizard.com/en/snippets/general-config/template-depending-on-right-content.html but unfortunately it refers to columns on the same page - I have columns on different pages. So, my *extremely rough* typoscript for page_2 looks like this: 1= COA_INT 1 { 10 = CONTENT 10 { table = tt_content select { pidInList = 55 orderBy = sorting ASC } # end select } # end 10 } # end 1 page.19.subparts.OVERRIDE= COA page.19.subparts.OVERRIDE { 10 = COA 10 { if.isTrue.numRows < 1 10 = TEMPLATE 10 { template = FILE template.file = fileadmin/emergency.html } } 20 = COA 20 { if.isFalse.numRows < 1 10 = TEMPLATE 10 { template = FILE template.file = fileadmin/template.html } } } ... and then emergency.html looks like:

      .... and template.html looks like:
      Can someone please help me fill in the holes? Thanks as always, -Scott. From manish.jain at webofficeindia.com Wed Sep 17 08:57:47 2014 From: manish.jain at webofficeindia.com (Manish Jain) Date: Wed, 17 Sep 2014 08:57:47 +0200 Subject: [TYPO3-english] =?utf-8?q?_Create_new_element_not_working_in_Typo?= =?utf-8?q?3_6=2E1=2E10?= Message-ID: Hi all, I spend the whole day so far searching after this problem, but did not find a solution. 1) I've created a simple project site, with 7 pages, and sudden i am getting nothing on page, screencast.com/t/T2Ikrrqh7 and screencast.com/t/QbcLqJubLEU Has anybody an idea or even better a solution to fix this problems? I would really appreciate any help. Thanks, Manish Jain From t3ng at bernd-wilke.net Wed Sep 17 11:24:57 2014 From: t3ng at bernd-wilke.net (bernd wilke) Date: Wed, 17 Sep 2014 11:24:57 +0200 Subject: [TYPO3-english] Create new element not working in Typo3 6.1.10 In-Reply-To: References: Message-ID: Am 17.09.14 08:57, schrieb Manish Jain: > Hi all, > > I spend the whole day so far searching after this problem, but did not > find a solution. > > 1) I've created a simple project site, with 7 pages, and sudden i am > getting nothing on page, > screencast.com/t/T2Ikrrqh7 > and screencast.com/t/QbcLqJubLEU > > Has anybody an idea or even better a solution to fix this problems? I > would really appreciate any help. > looks like an error-page which shows nothing. set your installation into development mode (Install-Tool) and get error messages on screen. Otherwise look into the errorlog of your server. bernd -- http://www.pi-phi.de/cheatsheet.html From paulwwarner at yahoo.com Wed Sep 17 11:26:15 2014 From: paulwwarner at yahoo.com (Paul Warner) Date: Wed, 17 Sep 2014 11:26:15 +0200 Subject: [TYPO3-english] =?utf-8?q?_An_error_occurred_while_trying_to_call?= =?utf-8?q?_Tx=5FYag=5FController=5FGalleryController=5FcreateAction=28=29?= Message-ID: I have a Typo3 6.2.10 site, and I am trying to create my first Gallery with Yag 3.2.7 (pt_extbase 1.5.10 and pt_extlist 1.3.2). I have identified the page as a yag gallery, and when I click 'Add Gallery', and type a name in, and click 'Save', I get this error message: An error occurred while trying to call Tx_Yag_Controller_GalleryController_createAction() and no gallery is created. I looked in the file GalleryController.php and the createAction function looks benign enough. I could not find anything there... I grepped through the entire yag extension folder, and only came up with one file for 'An error occurred', and that was FileUploadController.php. Any ideas? From manish.jain at webofficeindia.com Wed Sep 17 11:29:52 2014 From: manish.jain at webofficeindia.com (Manish Jain) Date: Wed, 17 Sep 2014 11:29:52 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__Create_new_element_not_working_?= =?utf-8?q?in_Typo3_6=2E1=2E10?= References: Message-ID: First of all Thanks for instant reply, and yes i looked for install-tool as well and got this error, but could'nt understand how to resolve it, instead my mail functionality is also working i tested from backend too, here is the issue i got, htt p : / / screencast.com/t/HaxcoEbUZckI From paulwwarner at yahoo.com Wed Sep 17 11:47:07 2014 From: paulwwarner at yahoo.com (Paul Warner) Date: Wed, 17 Sep 2014 11:47:07 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_An_error_occurred_while_trying_t?= =?utf-8?q?o_call_Tx=5FYag=5FController=5FGalleryController=5FcreateAction?= =?utf-8?b?KCk=?= References: Message-ID: I would like to add that I find nothing about this error in the apache error log, or my php error log. From paulwwarner at yahoo.com Wed Sep 17 11:52:09 2014 From: paulwwarner at yahoo.com (Paul Warner) Date: Wed, 17 Sep 2014 11:52:09 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__Re=3A__Re=3A__Re=3A__Multi_Doma?= =?utf-8?q?in_import_loses_menu?= References: Message-ID: Dear Bernd, Thank you for your kind help. I meant to post a reply a while back, when I first sorted everything out, but I got some other urgent assignments, and forgot! I want to say bless you and your descendents for many generations! :-) Your tips enabled me to finish the assignment successfully. A huge help. Thanks again! Paul From tomkrawc at gmail.com Wed Sep 17 11:56:32 2014 From: tomkrawc at gmail.com (Tomasz Krawczyk) Date: Wed, 17 Sep 2014 11:56:32 +0200 Subject: [TYPO3-english] ter question Message-ID: Hi list, I can't see in TER the extension static_info_tables_pl on the typo3.org website. I see on the forge that dependencies are filled. I wonder why. regards Tomek From manish.jain at webofficeindia.com Wed Sep 17 13:16:57 2014 From: manish.jain at webofficeindia.com (Manish Jain) Date: Wed, 17 Sep 2014 13:16:57 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__Create_new_element_not_working_?= =?utf-8?q?in_Typo3_6=2E1=2E10?= References: Message-ID: Thanks for support Bernd , actually that was related to a xml file error, by my custom extension, From xavier at typo3.org Wed Sep 17 13:37:26 2014 From: xavier at typo3.org (Xavier Perseguers) Date: Wed, 17 Sep 2014 13:37:26 +0200 Subject: [TYPO3-english] ter question In-Reply-To: References: Message-ID: Hi Tomasz, > I can't see in TER the extension static_info_tables_pl on the typo3.org > website. I see on the forge that dependencies are filled. I wonder why. You see the banner regarding outdated extensions on TER? When you manually enter the URL of this extension (or search it while enabling outdated extensions): http://typo3.org/extensions/repository/view/static_info_tables_pl There is no dependency to TYPO3. As such it has been marked as outdated and does not show up in search anymore, by default. Kind regards -- Xavier Perseguers TYPO3 CMS Team Member TYPO3 .... inspiring people to share! Get involved: http://typo3.org From tomkrawc at gmail.com Wed Sep 17 15:35:41 2014 From: tomkrawc at gmail.com (Tomasz Krawczyk) Date: Wed, 17 Sep 2014 15:35:41 +0200 Subject: [TYPO3-english] ter question In-Reply-To: References: Message-ID: W dniu 2014-09-17 13:37, Xavier Perseguers pisze: > Hi Tomasz, > >> I can't see in TER the extension static_info_tables_pl on the typo3.org >> website. I see on the forge that dependencies are filled. I wonder why. > > You see the banner regarding outdated extensions on TER? When you > manually enter the URL of this extension (or search it while enabling > outdated extensions): > > http://typo3.org/extensions/repository/view/static_info_tables_pl > > There is no dependency to TYPO3. As such it has been marked as outdated > and does not show up in search anymore, by default. > > Kind regards > Hi Xavier, I've just downloaded from TER this version. There is dependency to TYPO3 'depends' => array( 'static_info_tables' => '2.3.0-2.3.99', 'php' => '5.3.0-5.3.99', 'typo3' => '4.5-4.7.99', ), So, extensions not compatible with TYPO3 older than 6.0 are not shown? regards Tomek From Slavon1991 at mail.ru Wed Sep 17 15:50:44 2014 From: Slavon1991 at mail.ru (Viacheslav Konovalenko) Date: Wed, 17 Sep 2014 15:50:44 +0200 Subject: [TYPO3-english] =?utf-8?q?_Different_menu_at_different_pages?= Message-ID: Hi. I'm a newbie in typo3 and has no enough time to learn it today. I need to do some task, which must be completed today. Is there a possibility in typo3 to do something like this page1 menu: -home -contacts -videos page2 menu: -photos -map All menu is first level. Thanks a lot! From xavier at typo3.org Wed Sep 17 15:51:28 2014 From: xavier at typo3.org (Xavier Perseguers) Date: Wed, 17 Sep 2014 15:51:28 +0200 Subject: [TYPO3-english] ter question In-Reply-To: References: Message-ID: Hi, > I've just downloaded from TER this version. > > There is dependency to TYPO3 > > 'depends' => array( > 'static_info_tables' => '2.3.0-2.3.99', > 'php' => '5.3.0-5.3.99', > 'typo3' => '4.5-4.7.99', > ), > > So, extensions not compatible with TYPO3 older than 6.0 are not shown? I guess then that's caused by a wrong format of the dependency line. It should read: 'typo3' => '4.5.0-4.7.99' it must have been turned down while batch marking as outdated extensions without proper dependency. Nowadays such a dependency would prevent upload to TER. Kind regards -- Xavier Perseguers TYPO3 CMS Team Member TYPO3 .... inspiring people to share! Get involved: http://typo3.org From pperic at mail.com Wed Sep 17 17:05:41 2014 From: pperic at mail.com (Pero Peric) Date: Wed, 17 Sep 2014 17:05:41 +0200 Subject: [TYPO3-english] Active menu item problem Message-ID: Hi, I'm trying to generate menu that would include the parent page + subpages so i made something like this: menu = COA menu { [...] # parent menu page 15 = HMENU 15 { special = list ## page ID of the parent page in the menu tree special.value.data = register:mystartingpoint 1 = TMENU 1 { noBlur = 1 NO.doNotLinkIt = 0 NO.allWrap =
      |
      ACT = 1 ACT.allWrap =
      |
      } } ## menu of subpages 20 = HMENU 20 { special = directory special.value.data = register:mystartingpoint 1 = TMENU [...] } } Now, it all works fine expect the fact that i always get ACT state activated for parent menu page no matter on which menu page i am. In subpages ACT works as expected. Why is that happening and how to solve it? Thx.! Regards. From info at cybercraft.de Wed Sep 17 17:32:48 2014 From: info at cybercraft.de (Jo Hasenau) Date: Wed, 17 Sep 2014 17:32:48 +0200 Subject: [TYPO3-english] Active menu item problem In-Reply-To: References: Message-ID: Am 17.09.2014 17:05, schrieb Pero Peric: > Hi, > > I'm trying to generate menu that would include the parent page + > subpages so i made something like this: > > Now, it all works fine expect the fact that i always get ACT state > activated for parent menu page no matter on which menu page i am. In > subpages ACT works as expected. Why is that happening and how to solve > it? Thx.! I guess you are mistaking ACT for CUR, which are different states. ACT marks any page within the rootline of the active branch of a page. CUR marks the active page only. HTH Joey -- Diversity: Die Kunst zusammen unabh?ngig zu denken The art of thinking independently together. -- Facebook: https://www.facebook.com/johasenau Twitter: http://twitter.com/bunnyfield Xing: http://contact.cybercraft.de TYPO3 cookbook (2nd edition): http://www.typo3experts.com From pperic at mail.com Wed Sep 17 17:51:55 2014 From: pperic at mail.com (Pero Peric) Date: Wed, 17 Sep 2014 17:51:55 +0200 Subject: [TYPO3-english] Active menu item problem In-Reply-To: References: Message-ID: On 17.9.2014. 17:32, Jo Hasenau wrote: > Am 17.09.2014 17:05, schrieb Pero Peric: >> Hi, >> >> I'm trying to generate menu that would include the parent page + >> subpages so i made something like this: >> >> Now, it all works fine expect the fact that i always get ACT state >> activated for parent menu page no matter on which menu page i am. In >> subpages ACT works as expected. Why is that happening and how to solve >> it? Thx.! > > I guess you are mistaking ACT for CUR, which are different states. > > ACT marks any page within the rootline of the active branch of a page. > CUR marks the active page only. > > HTH > > Joey Thx. Joey that was it ;-) regards. From superscotty19 at yahoo.com Wed Sep 17 18:52:14 2014 From: superscotty19 at yahoo.com (Scotty C) Date: Wed, 17 Sep 2014 10:52:14 -0600 Subject: [TYPO3-english] Different menu at different pages In-Reply-To: References: Message-ID: Hi, Yes, that's what I'm already doing. Sorry for the confusion, -Scott. Sent with AquaMail for Android http://www.aqua-mail.com On September 17, 2014 7:55:06 AM Viacheslav Konovalenko wrote: > Hi. I'm a newbie in typo3 and has no enough time to learn it today. I need > to do some task, which must be completed today. Is there a possibility in > typo3 to do something like this > > page1 menu: > -home > -contacts > -videos > > page2 menu: > -photos > -map > > All menu is first level. Thanks a lot! > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.typo3.org > http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english From tomkrawc at gmail.com Wed Sep 17 20:12:10 2014 From: tomkrawc at gmail.com (Tomasz Krawczyk) Date: Wed, 17 Sep 2014 20:12:10 +0200 Subject: [TYPO3-english] ter question In-Reply-To: References: Message-ID: W dniu 2014-09-17 15:51, Xavier Perseguers pisze: > Hi, > > I guess then that's caused by a wrong format of the dependency line. It > should read: > > 'typo3' => '4.5.0-4.7.99' > > it must have been turned down while batch marking as outdated extensions > without proper dependency. Nowadays such a dependency would prevent > upload to TER. > > Kind regards > Updated and in TER again. Thanks! regards Tomek From superscotty19 at yahoo.com Thu Sep 18 07:11:19 2014 From: superscotty19 at yahoo.com (Scotty C) Date: Wed, 17 Sep 2014 22:11:19 -0700 Subject: [TYPO3-english] Automatically Create Content Element upon Page Creation Message-ID: Hi everyone, The question seems to be asked a lot and Neos has it, but in TYPO3 CMS is it possible to have a content element automatically created upon creating a new page? Thanks! -Scott. From xavier at typo3.org Thu Sep 18 09:01:25 2014 From: xavier at typo3.org (Xavier Perseguers) Date: Thu, 18 Sep 2014 09:01:25 +0200 Subject: [TYPO3-english] Automatically Create Content Element upon Page Creation In-Reply-To: References: Message-ID: Hi Scott., > The question seems to be asked a lot and Neos has it, but in TYPO3 CMS is it possible to have a content element automatically created upon creating a new page? In TYPO3 CMS we have a concept of "hooks" since ages. This allows you to do whatever you want at many places in the process of managing records, rendering pages, ... Search for DataHandler: http://typo3.org/api/typo3cms/class_t_y_p_o3_1_1_c_m_s_1_1_core_1_1_data_handling_1_1_data_handler.html#abf603044eecf40feb9642928441695e3 HTH -- Xavier Perseguers TYPO3 CMS Team Member TYPO3 .... inspiring people to share! Get involved: http://typo3.org From hiddink at bendoo.nl Thu Sep 18 09:51:28 2014 From: hiddink at bendoo.nl (Bert Hiddink [BENDOO e-work solutions]) Date: Thu, 18 Sep 2014 09:51:28 +0200 Subject: [TYPO3-english] TYPO3 6.2: problems with setting up Formmail (tx_form), empty mails sent Message-ID: Hello, I am having problems with setting up a standard Formmail with tx_form (see below for code)... The message which I receive is almost empty and contains some error code "" (see below)... When I set "confirmation=1", I get a distorted confirmation page... Any idea what could be wrong? Thanks in advance! Regards, Bert prefix = tx_form confirmation = postProcessor { 1 = mail 1 { recipientEmail = bert.hiddink at gmail.com senderEmail = bert.hiddink at gmail.com } } 10 = FIELDSET 10 { 10 = TEXTLINE 10 { name = name label { value = Name } } 20 = TEXTLINE 20 { name = email label { value = E-Mail } } 30 = TEXTAREA 30 { cols = 40 rows = 5 name = enquiry label { value = Your enquiry } } 40 = CHECKBOX 40 { name = get-in-touch value = yes label { value = Do you want us to get in touch? } } 50 = SUBMIT 50 { name = submit value = Send Feedback } } rules { 1 = required 1 { breakonerror= 0 showMessage = 1 message = * error = This field is required element = name } 2 = required 2 { breakonerror= 0 showMessage = 1 message = * error = This field is required element = email } 3 = email 3 { breakonerror= 0 showMessage = message = (john.doe at domain.com) error = This is not a valid email address element = email } 4 = required 4 { breakonerror= 0 showMessage = 1 message = * error = This field is required element = enquiry } }
      From hiddink at bendoo.nl Thu Sep 18 10:26:50 2014 From: hiddink at bendoo.nl (Bert Hiddink [BENDOO e-work solutions]) Date: Thu, 18 Sep 2014 10:26:50 +0200 Subject: [TYPO3-english] TYPO3 6.2: problems with setting up Formmail (tx_form), empty mails sent In-Reply-To: References: Message-ID: Hello, Seems to me that the "Default TS form" which is there with tx_form is somehow incompatible with the bootstrap_package from the Introduction package... In the root-template, 3 static templates are included (in this order): CSS Styled Content Bootstrap Package Default TS (form) In this order, mails are send properly with the contents of the send form in the mail BUT the Frontend form gets distorted...If I change the order to: CSS Styled Content Default TS (form) Bootstrap Package ...the frontend Form looks as expected (following the CSS from Bootstrap) but the mails are not send correctly (content of mailform is not included in mail)... Any ideas how to resolve this? Thanks in advance! Regards, Bert On 18-09-14 09:51, Bert Hiddink [BENDOO e-work solutions] wrote: > > Hello, > > I am having problems with setting up a standard Formmail with tx_form > (see below for code)... > > The message which I receive is almost empty and contains some error code > "" (see below)... > > When I set "confirmation=1", I get a distorted confirmation page... > > Any idea what could be wrong? > > Thanks in advance! > > Regards, > Bert > > > > > prefix = tx_form > confirmation = > postProcessor { > 1 = mail > 1 { > recipientEmail = bert.hiddink at gmail.com > senderEmail = bert.hiddink at gmail.com > } > } > 10 = FIELDSET > 10 { > 10 = TEXTLINE > 10 { > name = name > label { > value = Name > } > } > 20 = TEXTLINE > 20 { > name = email > label { > value = E-Mail > } > } > 30 = TEXTAREA > 30 { > cols = 40 > rows = 5 > name = enquiry > label { > value = Your enquiry > } > } > 40 = CHECKBOX > 40 { > name = get-in-touch > value = yes > label { > value = Do you want us to get in touch? > } > } > 50 = SUBMIT > 50 { > name = submit > value = Send Feedback > } > } > rules { > 1 = required > 1 { > breakonerror= 0 > showMessage = 1 > message = * > error = This field is required > element = name > } > 2 = required > 2 { > breakonerror= 0 > showMessage = 1 > message = * > error = This field is required > element = email > } > 3 = email > 3 { > breakonerror= 0 > showMessage = > message = (john.doe at domain.com) > error = This is not a valid email address > element = email > } > 4 = required > 4 { > breakonerror= 0 > showMessage = 1 > message = * > error = This field is required > element = enquiry > } > } > > > > > >
      class="col-sm-offset-3 col-sm-9">
      >
      > From hiddink at bendoo.nl Thu Sep 18 10:33:33 2014 From: hiddink at bendoo.nl (Bert Hiddink [BENDOO e-work solutions]) Date: Thu, 18 Sep 2014 10:33:33 +0200 Subject: [TYPO3-english] TYPO3 6.2: problems with setting up Formmail (tx_form), empty mails sent In-Reply-To: References: Message-ID: Hello, The same problem was reported here: http://www.typo3forum.net/forum/typo3-extensions/74501-kontakt-formular-form-schickt-leeres-mail-error-end-div-tag.html Any ideas how to resolve this? Thanks! Bert On 18-09-14 10:26, Bert Hiddink [BENDOO e-work solutions] wrote: > Hello, > > Seems to me that the "Default TS form" which is there with tx_form is > somehow incompatible with the bootstrap_package from the Introduction > package... > > In the root-template, 3 static templates are included (in this order): > CSS Styled Content > Bootstrap Package > Default TS (form) > > In this order, mails are send properly with the contents of the send > form in the mail BUT the Frontend form gets distorted...If I change the > order to: > CSS Styled Content > Default TS (form) > Bootstrap Package > > ...the frontend Form looks as expected (following the CSS from > Bootstrap) but the mails are not send correctly (content of mailform is > not included in mail)... > > Any ideas how to resolve this? > > Thanks in advance! > > Regards, > Bert > > > On 18-09-14 09:51, Bert Hiddink [BENDOO e-work solutions] wrote: >> >> Hello, >> >> I am having problems with setting up a standard Formmail with tx_form >> (see below for code)... >> >> The message which I receive is almost empty and contains some error code >> "" (see below)... >> >> When I set "confirmation=1", I get a distorted confirmation page... >> >> Any idea what could be wrong? >> >> Thanks in advance! >> >> Regards, >> Bert >> >> >> >> >> prefix = tx_form >> confirmation = >> postProcessor { >> 1 = mail >> 1 { >> recipientEmail = bert.hiddink at gmail.com >> senderEmail = bert.hiddink at gmail.com >> } >> } >> 10 = FIELDSET >> 10 { >> 10 = TEXTLINE >> 10 { >> name = name >> label { >> value = Name >> } >> } >> 20 = TEXTLINE >> 20 { >> name = email >> label { >> value = E-Mail >> } >> } >> 30 = TEXTAREA >> 30 { >> cols = 40 >> rows = 5 >> name = enquiry >> label { >> value = Your enquiry >> } >> } >> 40 = CHECKBOX >> 40 { >> name = get-in-touch >> value = yes >> label { >> value = Do you want us to get in touch? >> } >> } >> 50 = SUBMIT >> 50 { >> name = submit >> value = Send Feedback >> } >> } >> rules { >> 1 = required >> 1 { >> breakonerror= 0 >> showMessage = 1 >> message = * >> error = This field is required >> element = name >> } >> 2 = required >> 2 { >> breakonerror= 0 >> showMessage = 1 >> message = * >> error = This field is required >> element = email >> } >> 3 = email >> 3 { >> breakonerror= 0 >> showMessage = >> message = (john.doe at domain.com) >> error = This is not a valid email address >> element = email >> } >> 4 = required >> 4 { >> breakonerror= 0 >> showMessage = 1 >> message = * >> error = This field is required >> element = enquiry >> } >> } >> >> >> >> >> >>
      > class="col-sm-offset-3 col-sm-9">
      >>
      >> > From scatala.enet at gmail.com Thu Sep 18 11:02:12 2014 From: scatala.enet at gmail.com (=?UTF-8?B?U2VyZ2lvIENhdGFsw6E=?=) Date: Thu, 18 Sep 2014 11:02:12 +0200 Subject: [TYPO3-english] Backend user not not allowed to upload files. Message-ID: Hello list, After upgrading my site from 4.5 to 6.2, everything went fine for me, except an issue about backend users permissions: they are not allowed to upload pictures to fileadmin. When they tried to upload an image inside a tt_content element, they receive the next error: "You are not allowed to upload files! Upload of file "xxx" failed! I've checked the File Storage. It is online and it is the default storage. It is local and points to "./fileadmin". And admin user is able to upload files to that folder. I've checked the backend group as well: all related File tables are checked (File, File collection, File Metadata, File Reference and File Storage) to be listed and modified. Under "Fileoperation permissions" section, and "Files" block, all operations are allowed, including "Files: Upload". What am I missing? What am I doing wrong? Any ideas? Thanks in advance, Sergio From christian at futterlieb.ch Thu Sep 18 13:04:52 2014 From: christian at futterlieb.ch (Christian Futterlieb) Date: Thu, 18 Sep 2014 13:04:52 +0200 Subject: [TYPO3-english] Adding a pID to subnav UL In-Reply-To: References: Message-ID: Hi Tom Yes, my fault, sorry. It should be the value of the pid field: lib.subMenu.1.stdWrap.dataWrap =
        |
      Regards, Christian > Thanks for your help, no joy with that I'm afraid. > > I'll keep trying From allobengan at hotmail.com Thu Sep 18 15:11:09 2014 From: allobengan at hotmail.com (allo bengan) Date: Thu, 18 Sep 2014 15:11:09 +0200 Subject: [TYPO3-english] =?utf-8?q?_How_To_play_Free_Movie=3F=3F?= Message-ID: Inside the amazingly expected augmentation, that has been moved just by Dorrie Harvey's hit struck production Behave like a woman, Imagine Like a Male, the majority of the love birds are generally as before for the marriage in Las vegas. Whatever the case plans for the expressive. From allobengan at hotmail.com Thu Sep 18 15:12:41 2014 From: allobengan at hotmail.com (allo bengan) Date: Thu, 18 Sep 2014 15:12:41 +0200 Subject: [TYPO3-english] =?utf-8?q?_How_To_play_Free_Movie=3F=3F?= Message-ID: Inside the amazingly expected augmentation, that has been moved just by Dorrie Harvey's hit struck production Behave like a woman, Imagine Like a Male, the majority of the love birds are generally as before for the marriage in Las vegas. Whatever the case plans for the expressive. From hiddink at bendoo.nl Thu Sep 18 18:27:25 2014 From: hiddink at bendoo.nl (Bert Hiddink [BENDOO e-work solutions]) Date: Thu, 18 Sep 2014 18:27:25 +0200 Subject: [TYPO3-english] TYPO3 6.2: News and catmenu: showing only a subset of cats Message-ID: Hello, When displaying the catmenu from NEWS (tx_news), it seems that when having main- and subcategories, I can not display a SELECTION of the subcategories, that is, I have: AAAAA-maincat ---aaaa-subcat ---bbbb-subcat ---cccc-subcat BBBBB-maincat ---dddd-subcat ---eeee-subcat ---ffff-subcat ---gggg-subcat ...and I want only... BBBBB-maincat ---eeee-subcat ---ffff-subcat ...to be displayed. Therefore, I only check "BBBBB-maincat, eeee-subcat, ffff-subcat" and uncheck the others. However, this display the BBBBB-cat and ALL the subcats, there seems no way to only show a selection of the subcats of BBBBB. Hope you get my point...Do I miss something? Thanks in advance! Regards, Bert From mramaraju.dba at gmail.com Thu Sep 18 21:55:06 2014 From: mramaraju.dba at gmail.com (Ramaraju Musku) Date: Thu, 18 Sep 2014 21:55:06 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__Taking_much_time_to_populate_ne?= =?utf-8?q?wly_added_News/Promotions/Events_on_Frontend?= References: Message-ID: I made Above changes but its not working Please help Thanks, Ramaraju. From t3ng at bernd-wilke.net Fri Sep 19 08:35:59 2014 From: t3ng at bernd-wilke.net (bernd wilke) Date: Fri, 19 Sep 2014 08:35:59 +0200 Subject: [TYPO3-english] TCEMAIN.clearCacheCmd slows down BE response time Message-ID: We use TYPO3 CMS 6.1.10 having some news and having some pages which are referenced in other pages I configured in some pages the clearing of other dependend pages with TCEMAIN.clearCacheCmd = 1,2,3,... Now it seems that working in these original pages (e.g. the news-sysfolder) slows down to response times to more than a minute after saving a record. We have about 14000 pages and the complete FE cache is cleared multiple times a day as we work offline. So the performance of BE is more important than FE. How can I speed up the BE? another effect: for a new area where we will work with news I configured some overview pages (show category filtered records) as uncached to avoid having a long clearcache list (and long response times). But doing so the FE sometimes only shows: "there are no records in this area". Clearing FE-cache results in the showing of all records again. bernd -- http://www.pi-phi.de/cheatsheet.html From post at dietantejensen.de Fri Sep 19 10:11:45 2014 From: post at dietantejensen.de (Nils Hodyas) Date: Fri, 19 Sep 2014 10:11:45 +0200 Subject: [TYPO3-english] TYPO3 6.2: News and catmenu: showing only a subset of cats In-Reply-To: References: Message-ID: Hi Bert, I haven't checked it, but I think that checking BBBB inherently includes all news of this cat, regardless the subcat. So, only checking EEEE and FFFFF should get you the news items you want. To get the menu you want, you would have to build it by hand. Hth Nils Am 18.09.2014 um 18:27 schrieb Bert Hiddink [BENDOO e-work solutions]: > Hello, > > When displaying the catmenu from NEWS (tx_news), it seems that when > having main- and subcategories, I can not display a SELECTION of the > subcategories, that is, I have: > > AAAAA-maincat > ---aaaa-subcat > ---bbbb-subcat > ---cccc-subcat > > BBBBB-maincat > ---dddd-subcat > ---eeee-subcat > ---ffff-subcat > ---gggg-subcat > > ...and I want only... > BBBBB-maincat > ---eeee-subcat > ---ffff-subcat > ...to be displayed. > > Therefore, I only check "BBBBB-maincat, eeee-subcat, ffff-subcat" and > uncheck the others. > > However, this display the BBBBB-cat and ALL the subcats, there seems > no way to only show a selection of the subcats of BBBBB. > > Hope you get my point...Do I miss something? > > Thanks in advance! > > Regards, > Bert > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.typo3.org > http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english -- Nils Hodyas - Webdesign von die Tante Jensen ? Gro?herzog-Friedrich-Stra?e 117 ? 66121 Saarbr?cken ? (0681) 925 63 43 ? 0160 318 183 7 ? http://dietantejensen.de ? DE 2757 96974 ? Registergericht Saarbr?cken From paulwwarner at yahoo.com Fri Sep 19 14:39:40 2014 From: paulwwarner at yahoo.com (Paul Warner) Date: Fri, 19 Sep 2014 14:39:40 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_An_error_occurred_while_trying_t?= =?utf-8?q?o_call_Tx=5FYag=5FController=5FGalleryController=5FcreateAction?= =?utf-8?b?KCk=?= References: Message-ID: Ok, I found the intended way to get something going with yag: open the page in the BE in list view, then click the add an item button. yag gallery, album, etc. are on the list. Add gallery, and then configure. Then an album can be added, images uploaded. All goes well, no error messages. Be careful, you have to set the yag template for the page in order to display anything. Select your yag page with Template selected on the left, then choose to create an extension template for your page. Then click the Includes tab, and from Available Items on the right, scroll down and select yag, so it goes over to the left list box, Selected Items. Save. Then something will appear in your page in the FE that is related to yag. Now, however, I cannot get the newly created gallery and albums to display, because under Page, clicking on the pencil icon on the left, then looking at the Source tab, there is no chance to select a gallery! The Page list is empty and the Gallery list says 'No Selection'. What do I do with that? I can't find anything helpful when I search through the yag documentation or when I do a google search. If anyone can help me here, please! I have no more time to lose... From invisible.kinder at gmail.com Fri Sep 19 18:29:19 2014 From: invisible.kinder at gmail.com (Viktor Livakivskyi) Date: Fri, 19 Sep 2014 19:29:19 +0300 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__TCEMAIN=2EclearCacheCmd_slows_d?= =?utf-8?q?own_BE_response_time?= References: Message-ID: Hi, Bernd > We use TYPO3 CMS 6.1.10 > > having some news and having some pages which are referenced in other > pages I configured in some pages the clearing of other dependend pages with > TCEMAIN.clearCacheCmd = 1,2,3,... > Now it seems that working in these original pages (e.g. the > news-sysfolder) slows down to response times to more than a minute after > saving a record. We have exactly same problem. In our case I have two possible assumptions: 1) We have entities with lot of 1:n and m:n relations in our "Storage folder" with clearcCacheCmd. And I think the problem is in fact, that whenever a change is made to the main antity, all these related entites also trigger clearChaceCmd. So, let's say, I have an entity with 50 child records and with 100 related records, and each of these relaetd recorda also have 2 childs. So, at the end we have 1(main entity) + 50 (children) + 100 (related) * 2 (children of each relation) = 251 call to clear caches. 2) Our website is translated to 40 languages and also we have 2 usergroups on a website, so at the end we have 40*3 = 120 entries in caches for each page. For me it seems, that the problem is in combination of the items above. But I may be wrong and the problme persists somewhere else. Can someone (at best, someone from Core devs) confirm or refute my assumption? TYPO3 6.1.10 Redis is used as Cachnig Backend. From jan.kornblum at gmx.de Fri Sep 19 20:05:59 2014 From: jan.kornblum at gmx.de (Jan Kornblum) Date: Fri, 19 Sep 2014 20:05:59 +0200 Subject: [TYPO3-english] directmail + 6.2: tt_address TCA is not being extended Message-ID: Hi group, latest tt_address and latest directmail is installed on TYPO3 6.2.4. tt_address db-table is correctly extended with "module_sys_dmail_category" and "module_sys_dmail_html" fields, but there is no TCA definition loaded for both added fields. What might be the reason? Kind regards, Jan From jan.kornblum at gmx.de Sun Sep 21 14:28:30 2014 From: jan.kornblum at gmx.de (Jan Kornblum) Date: Sun, 21 Sep 2014 14:28:30 +0200 Subject: [TYPO3-english] directmail + 6.2: tt_address TCA is not being extended References: Message-ID: > latest tt_address and latest directmail is installed on TYPO3 6.2.4. > tt_address db-table is correctly extended with "module_sys_dmail_category" > and "module_sys_dmail_html" fields, but there is no TCA definition loaded for > both added fields. What might be the reason? Forge people wrote me that this issue is already resolved in the latest git version. Thanks. Regards, Jan From sebastien.convers at educagri.fr Mon Sep 22 10:02:42 2014 From: sebastien.convers at educagri.fr (Sebastien) Date: Mon, 22 Sep 2014 10:02:42 +0200 Subject: [TYPO3-english] =?utf-8?q?_=22magic=22_image_insertion?= Message-ID: Hello everybody, I have a small issue with TYPO 6.2 : When i insert a "magic" image in the rte (rtehtmlarea), the image is always resized to the maximum size (300px is the default value), even if the image is smaller than this max size. ie if i insert a 80*100px image, it will be directly resize to 300*375px. If i want the image to have her original size i have to enter it manually, it's really not user friendly. As far as i remember, in TYPO3 4.5 the image was resized only when it was taller than max size. I try to change the value of "buttons.image.options.magic.maxWidth" but whatever the maxWidth i put, the image is always resized to maxWitdh. Do you guys have the same issue ? Or i have a configuration problem on my TYPO3 or on my server ? Do i miss something ? Sorry for my bad english and thanks for your help :) From hiddink at bendoo.nl Mon Sep 22 14:03:06 2014 From: hiddink at bendoo.nl (Bert Hiddink [BENDOO e-work solutions]) Date: Mon, 22 Sep 2014 14:03:06 +0200 Subject: [TYPO3-english] TYPO3 6.2: tx_from-> can I set the FORM to send a plain-text email Message-ID: Hello, I am using tx_form to for a contact form (TYPO3 6.2, bootstrap): everything fine except the HTML-mails which are send out to the recipient, the markup is incorrect and disforms the email...is there a setting to force tx_form to send out only plain-text mails? Thanks in advance! Regards, Bert From loek at netcoop.nl Mon Sep 22 15:04:18 2014 From: loek at netcoop.nl (Loek Hilgersom) Date: Mon, 22 Sep 2014 15:04:18 +0200 Subject: [TYPO3-english] "magic" image insertion In-Reply-To: References: Message-ID: Hi Sebastien, There is a setting under 'All configuration' in the install tool: $TYPO3_CONF_VARS['GFX']['im_noScaleUp']. If you set it to 1, TYPO3 will only scale down images, but not scale up if you do not explicitly ask it to do so. And don't worry about your english, most people on this list are no native english speakers and your question is clear enough. Loek On 22-09-14 10:02, Sebastien wrote: > Hello everybody, > > I have a small issue with TYPO 6.2 : > When i insert a "magic" image in the rte (rtehtmlarea), the image is always > resized to the maximum size (300px is the default value), even if the image is > smaller than this max size. > ie if i insert a 80*100px image, it will be directly resize to 300*375px. If i > want the image to have her original size i have to enter it manually, it's > really not user friendly. > > As far as i remember, in TYPO3 4.5 the image was resized only when it was taller > than max size. > > I try to change the value of "buttons.image.options.magic.maxWidth" but whatever > the maxWidth i put, the image is always resized to maxWitdh. > > Do you guys have the same issue ? Or i have a configuration problem on my TYPO3 > or on my server ? Do i miss something ? > > Sorry for my bad english and thanks for your help :) > From sebastien.convers at educagri.fr Mon Sep 22 16:39:15 2014 From: sebastien.convers at educagri.fr (Sebastien) Date: Mon, 22 Sep 2014 16:39:15 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__=22magic=22_image_insertion?= References: Message-ID: $TYPO3_CONF_VARS['GFX']['im_noScaleUp'] = 1 Awww thanks a lot that's exactly what i was looking for ! I went through the install tool by looking with "Ctrl + F" for "magic" and missed this part :) From info at bednarik.org Mon Sep 22 21:33:57 2014 From: info at bednarik.org (Jan Bednarik) Date: Mon, 22 Sep 2014 21:33:57 +0200 Subject: [TYPO3-english] Ext:news (tx_news) - youtube/vimeo video Message-ID: Hi, is it possible to embed youtube/vimeo video into tx_news item? Thanks Jan From bernhard.lascy at web.de Tue Sep 23 07:34:33 2014 From: bernhard.lascy at web.de (Bernhard Lascy) Date: Tue, 23 Sep 2014 07:34:33 +0200 Subject: [TYPO3-english] =?utf-8?q?_=22link_to_new_url=22_does_not_work_an?= =?utf-8?b?eW1vcmUgICg0LjcuNyk=?= Message-ID: Hello, I use the version 4.7.7 I have serveral "link to new url"-pages which worked in former versions. Now the browser shows an empty page and the url is the url or the typo3-page which should process the redirect and not the url which should be set. Do you have any idea whats going on? thanks for help Bernhard From jan.kornblum at gmx.de Tue Sep 23 11:45:27 2014 From: jan.kornblum at gmx.de (Jan Kornblum) Date: Tue, 23 Sep 2014 11:45:27 +0200 Subject: [TYPO3-english] New content element wizard bug? Message-ID: Hi group, all items except "text" and "text/image" should be disabled. "text/image" should only contain items 25 and 26 as imageorient. As soon as imageorient "17" is being removed, the "text/image" items disappears from new content element wizard. Tested in different 6.2.x installations. A bug? Kind regards, Jan --- TCAdefaults.tt_content{ imageorient = 26 } TCEFORM.tt_content{ imageorient{ #removeItems = 0,1,2,8,9,10,17,18,25,26 removeItems = 0,1,2,8,9,10,17,18 disableNoMatchingValueElement = 1 } } TCEFORM.tt_content.CType { removeItems := addToList( header,image,bullets,table,uploads,mailform,search,login,multimedia,media,splash,shortcut,list,script,div,html,menu) } From bernhard.lascy at web.de Tue Sep 23 12:22:09 2014 From: bernhard.lascy at web.de (Bernhard Lascy) Date: Tue, 23 Sep 2014 12:22:09 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_=22link_to_new_url=22_does_not_w?= =?utf-8?q?ork_anymore__=284=2E7=2E7=29?= References: Message-ID: This is one of the pages www.saubere-haende.org/typo3/index.php?id=19 here is a Menu entry called "Alpenparlament.TV" www.saubere-haende.org/typo3/index.php?id=1331 which should be redirected to www.alpenparlament.tv The result now is an empty page and the URL points to www.saubere-haende.org/typo3/index.php?id=1331 Sorry - till now I can not post links I removed the htt.... From arunchandran2010 at gmail.com Tue Sep 23 12:29:40 2014 From: arunchandran2010 at gmail.com (Arun Chandran) Date: Tue, 23 Sep 2014 15:59:40 +0530 Subject: [TYPO3-english] How to add class for
        tag in RTE ? Message-ID: Hi List, I've an unordered list in my RTE like this;
        • content 1
        • content 2
        • content 3
        I want to add a special class for this
          to apply a specific style. Is there any way to add a class to
            tag in Typo3 RTE using page TS Config or something like that? I am using Typo3 ver 6.2.4. So I need a final output like this;
            • content 1
            • content 2
            • content 3
            Please help, Thanks and Regards, Arun Chandran From hiddink at bendoo.nl Tue Sep 23 13:14:36 2014 From: hiddink at bendoo.nl (Bert Hiddink [BENDOO e-work solutions]) Date: Tue, 23 Sep 2014 13:14:36 +0200 Subject: [TYPO3-english] TYPO3 6.2 and FORM: Confirmation mail to sender in FORM??? Message-ID: Hello, Is it still not possible to send a confirmation mail to sender when using TX_FORM? https://forge.typo3.org/issues/32950 Any ideas/comments? Thanks! Regards, Bert From guarnieri.philippe at orange.fr Tue Sep 23 14:28:50 2014 From: guarnieri.philippe at orange.fr (guarnieri philippe) Date: Tue, 23 Sep 2014 14:28:50 +0200 Subject: [TYPO3-english] =?utf-8?q?_installation_typo62?= Message-ID: hi, i am a beginner with typo3; i try to install to know more but it seems i must not have the good files . i have this msg "Fatal error: Class 'TYPO3\Flow\Package\PackageManager' not found in /home/philippe/www/typo3/typo3/sysext/core/Classes/Package/PackageManager.php on line 23" The site will be in a shred host. an idea ? Thanks From oliver.hader at typo3.org Tue Sep 23 15:35:23 2014 From: oliver.hader at typo3.org (Oliver Hader) Date: Tue, 23 Sep 2014 15:35:23 +0200 Subject: [TYPO3-english] [TYPO3-core] Announcing TYPO3 CMS 4.5.36 LTS, 6.1.11 and 6.2.5 LTS Message-ID: Dear TYPO3 World, The TYPO3 Community has just released TYPO3 CMS versions 4.5.36 LTS, 6.1.11 and 6.2.5 LTS, which are now ready for you to download. These versions are maintenance releases and contain bug fixes. The packages can be downloaded here: http://typo3.org/download/ For details about the release, please see: https://typo3.org/news/article/typo3-cms-4536-6111-and-625-released/ MD5 checksums: e1e5e437514e02e41350f4f7e0010b70 blankpackage-4.5.36.tar.gz 1ccb53f0fde76ded00bfce5d4250d95b blankpackage-4.5.36.zip 49c58d1d5c8ae7061b1e96f2a6bfcfe4 dummy-4.5.36.tar.gz 0cee80e6ad9cdc743d06bd5a4faf6643 dummy-4.5.36.zip c8eae06b49948403bb427116e41241dc introductionpackage-4.5.36.tar.gz f6155f41f083cb063e17cc14735abd1c introductionpackage-4.5.36.zip af398cbdc31d25b8a01b6d912408f9c9 typo3_src+dummy-4.5.36.zip b30945a2a883b724315d7253cd4816f7 typo3_src-4.5.36.tar.gz 88550b431a392fd4fd4a813e23c9a4a8 typo3_src-4.5.36.zip 4e321d16c78983457423210ac90331ac blankpackage-6.1.11.tar.gz 23eff6578586911ec9736979dc97b38c blankpackage-6.1.11.zip ee3f89e2385f4c22ba85c0940d6ec51a dummy-6.1.11.tar.gz 55b3269f8d6607a80676920935e15051 dummy-6.1.11.zip 7546c27ddb67d87a29b18f1e6ba81253 typo3_src+dummy-6.1.11.zip 151111201b3c0c7afb687a21c2651b06 typo3_src-6.1.11.tar.gz 62ca1d147337da3c2eb4ed894720c5dd typo3_src-6.1.11.zip b011fe9a965ca97473dd30d1f6a0fb2c typo3_src-6.2.5.tar.gz 4011750ad515f521cf486bc00b6cf5e9 typo3_src-6.2.5.zip Best regards Oliver -- Oliver Hader TYPO3 CMS Team Leader TYPO3 .... inspiring people to share! Get involved: http://typo3.org From post at dietantejensen.de Tue Sep 23 17:42:39 2014 From: post at dietantejensen.de (Nils Hodyas) Date: Tue, 23 Sep 2014 17:42:39 +0200 Subject: [TYPO3-english] Ext:news (tx_news) - youtube/vimeo video In-Reply-To: References: Message-ID: Hi Jan, should be the tab "relations" -> Video &Audio. Than you can enter the URL. You're welcome! Nils Am 22.09.2014 um 21:33 schrieb Jan Bednarik: > Hi, > > is it possible to embed youtube/vimeo video into tx_news item? > > Thanks > > Jan > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.typo3.org > http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english -- Nils Hodyas - Webdesign von die Tante Jensen ? Gro?herzog-Friedrich-Stra?e 117 ? 66121 Saarbr?cken ? (0681) 925 63 43 ? 0160 318 183 7 ? http://dietantejensen.de ? DE 2757 96974 ? Registergericht Saarbr?cken From matt at lubs.leeds.ac.uk Tue Sep 23 18:00:20 2014 From: matt at lubs.leeds.ac.uk (Matt Clough) Date: Tue, 23 Sep 2014 18:00:20 +0200 Subject: [TYPO3-english] =?utf-8?q?_User_Access=2C_Permissions_and_Workspa?= =?utf-8?q?ces?= Message-ID: Hi Everyone, I am trying to come up with a system for allowing my BE users the correct roles and access permissions and have come up against a bit of a problem. I have created various usergroups with the following types: Role groups - define what a user can do (edit content, pages) Access groups - where in the page tree they can edit DB mount groups - which points in the page tree they can see File mount groups - which folders they have access to. Users can also be members of multiple workspaces. My problem is the following. Example User A 1. Need to only be able to create/edit staff records (in the staff records folder) in the LIVE workspace 2. Need to be able create news and events (in the news and event folder) in the news and event workspace 3. Need to edit content in section 3 of the page in another workspace (the reason for multiple workspaces is that different people will be responsible for publishing the changes) Example page tree Home ---Section 1 ---Section 2 ---Section 3 ---Staff Records Storage folder ---News and event Storage Folder What I intended to do Give User A the Role and Access groups to accomplish all the above task but only give the user mount points (though DB and File mount groups) for the staff records storage folder. I wanted to then use the workspace DB and file mounts to allow them to accomplish the appropriate task in the correct workspace. However this is not possible due to the restriction that workspace mount points must exist within the mount points assigned to the user. My question is - is their anyway around this and if not would anybody be able to recommend a different solution? I hope all that makes sense!! Thanks Matt From pperic at mail.com Tue Sep 23 18:05:55 2014 From: pperic at mail.com (Pero Peric) Date: Tue, 23 Sep 2014 18:05:55 +0200 Subject: [TYPO3-english] Cache forever :-) Message-ID: Hi, I have one important page that it takes very long time to generate (i use DCE ext. to generate many elements and it takes about 20-30 sec. to generate a page). This page will not be updated often so i wonder if there is a way to preserve a cache for that page even if clear all page cache will be used? Thx. Regards. From jigal.van.hemert at typo3.org Tue Sep 23 18:56:29 2014 From: jigal.van.hemert at typo3.org (Jigal van Hemert) Date: Tue, 23 Sep 2014 18:56:29 +0200 Subject: [TYPO3-english] User Access, Permissions and Workspaces In-Reply-To: References: Message-ID: Hi, On 23-9-2014 18:00, Matt Clough wrote: > 1. Need to only be able to create/edit staff records (in the staff > records folder) in the LIVE workspace > 2. Need to be able create news and events (in the news and event folder) > in the news and event workspace > 3. Need to edit content in section 3 of the page in another workspace The rights system in TYPO3 CMS adds rights from the various groups a user belongs to. If you give a person access to the staff folder and the news folder plus access to the live workspace and the news workspace, then that person has access to both folders in both workspaces. Maybe there's an extension that makes it possible to combine restrictions, but I haven't heard of such an extension. -- Jigal van Hemert TYPO3 CMS Active Contributor TYPO3 .... inspiring people to share! Get involved: typo3.org From info at bednarik.org Tue Sep 23 19:47:12 2014 From: info at bednarik.org (Jan Bednarik) Date: Tue, 23 Sep 2014 19:47:12 +0200 Subject: [TYPO3-english] Ext:news (tx_news) - youtube/vimeo video In-Reply-To: References: Message-ID: Under tab Relations I can see only Media file (where I can upload images or MP4) Related files (again, just upload or selection from fileadmin) Related links - is this it? Related News (from) I don't see any Video&Audio :( Jan Dne 23. 9. 2014 17:42, Nils Hodyas napsal(a): > Hi Jan, > > should be the tab "relations" -> Video &Audio. Than you can enter the URL. > > You're welcome! > > Nils > > Am 22.09.2014 um 21:33 schrieb Jan Bednarik: >> Hi, >> >> is it possible to embed youtube/vimeo video into tx_news item? >> >> Thanks >> >> Jan >> _______________________________________________ >> TYPO3-english mailing list >> TYPO3-english at lists.typo3.org >> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english > From xavier at typo3.org Wed Sep 24 07:57:30 2014 From: xavier at typo3.org (Xavier Perseguers) Date: Wed, 24 Sep 2014 07:57:30 +0200 Subject: [TYPO3-english] User Access, Permissions and Workspaces In-Reply-To: References: Message-ID: Hi, > On 23-9-2014 18:00, Matt Clough wrote: >> 1. Need to only be able to create/edit staff records (in the staff >> records folder) in the LIVE workspace >> 2. Need to be able create news and events (in the news and event folder) >> in the news and event workspace >> 3. Need to edit content in section 3 of the page in another workspace > > The rights system in TYPO3 CMS adds rights from the various groups a > user belongs to. If you give a person access to the staff folder and the > news folder plus access to the live workspace and the news workspace, > then that person has access to both folders in both workspaces. > > Maybe there's an extension that makes it possible to combine > restrictions, but I haven't heard of such an extension. I haven't heard either but I would be interested into it. This could be seen as a concept we discussed a few times already: roles. Kind regards -- Xavier Perseguers TYPO3 CMS Team Member TYPO3 .... inspiring people to share! Get involved: http://typo3.org From manish.jain at webofficeindia.com Wed Sep 24 09:40:24 2014 From: manish.jain at webofficeindia.com (Manish Jain) Date: Wed, 24 Sep 2014 09:40:24 +0200 Subject: [TYPO3-english] =?utf-8?q?_CronJob_is_not_working_in_typo3?= Message-ID: hello all, I am scheduling my newsletter with the scheduler in direct mail, but i have seen that the cronjob is not sending mail, and i have to send it manually, i have seen typo3/cli_dispatch.phpsh file too, but nothing bug found, if you know about this so please reply me, Thanks in anticipation From post at dietantejensen.de Wed Sep 24 10:22:26 2014 From: post at dietantejensen.de (Nils Hodyas) Date: Wed, 24 Sep 2014 10:22:26 +0200 Subject: [TYPO3-english] Ext:news (tx_news) - youtube/vimeo video In-Reply-To: References: Message-ID: Unfold Media file under the first header ("media type") is a drop down menu, should be set to "image" (or "picture") (I have a german BE) unfold that and choose "Video & Audio" Wait for the screen to change the Element will close reopen it an find the input field "Video URL" my system: 6.1.11 / 2.2.1 Hope this works! Nils Am 23.09.2014 um 19:47 schrieb Jan Bednarik: > Under tab Relations I can see only > > Media file (where I can upload images or MP4) > Related files (again, just upload or selection from fileadmin) > Related links - is this it? > Related News (from) > > I don't see any Video&Audio :( > > Jan > > Dne 23. 9. 2014 17:42, Nils Hodyas napsal(a): >> Hi Jan, >> >> should be the tab "relations" -> Video &Audio. Than you can enter the >> URL. >> >> You're welcome! >> >> Nils >> >> Am 22.09.2014 um 21:33 schrieb Jan Bednarik: >>> Hi, >>> >>> is it possible to embed youtube/vimeo video into tx_news item? >>> >>> Thanks >>> >>> Jan >>> _______________________________________________ >>> TYPO3-english mailing list >>> TYPO3-english at lists.typo3.org >>> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english >> > > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.typo3.org > http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english -- Nils Hodyas - Webdesign von die Tante Jensen ? Gro?herzog-Friedrich-Stra?e 117 ? 66121 Saarbr?cken ? (0681) 925 63 43 ? 0160 318 183 7 ? http://dietantejensen.de ? DE 2757 96974 ? Registergericht Saarbr?cken From loek at netcoop.nl Wed Sep 24 10:21:07 2014 From: loek at netcoop.nl (Loek Hilgersom) Date: Wed, 24 Sep 2014 10:21:07 +0200 Subject: [TYPO3-english] CronJob is not working in typo3 In-Reply-To: References: Message-ID: Hi Manish, From your description it is not clear where the problem is, the cronjob, scheduler or direct mail. You probably know this, but just to be sure: the cronjob triggers the scheduler, and the scheduler triggers the individual scheduler task, such as the mailer from direct mail. In the scheduler module you should be able to see if your cronjob is working correctly. If that is the case, check if the direct mail task is set up correctly, you can also try if it works if you run it manually from the scheduler. Hth. Loek On 24-09-14 09:40, Manish Jain wrote: > hello all, > I am scheduling my newsletter with the scheduler in direct mail, but i have seen > that the cronjob is not sending mail, and i have to send it manually, i have > seen typo3/cli_dispatch.phpsh file too, but nothing bug found, if you know about > this so please reply me, > Thanks in anticipation From manish.jain at webofficeindia.com Wed Sep 24 11:47:17 2014 From: manish.jain at webofficeindia.com (Manish Jain) Date: Wed, 24 Sep 2014 11:47:17 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__CronJob_is_not_working_in_typo3?= References: Message-ID: Hello Loek, Nice to heard from you, and i dont know why the cron jobs (e.g. for newsletter) are not executed automatically for typo installation. actually i am just testing cronjob by shedule the mailer in direct mail , but at the time i am setting time (schedule the task)for send mail , the mail is not going on recipient emails id, although test mail is working fine, but i need to send newsletter aprox 800+ emails, so can you help me to figure it out, even a sample newsletter should go by the scheduler so i can understand that the cronjob is working but it is not happening in my everytypo3 site, please let me know if you have any solution, hoping for positive reply, Thanks From typo3 at raschaller.com Wed Sep 24 11:47:38 2014 From: typo3 at raschaller.com (Jörg Schaller) Date: Wed, 24 Sep 2014 11:47:38 +0200 Subject: [TYPO3-english] CronJob is not working in typo3 References: Message-ID: On Wed, 24 Sep 2014 09:40:24 +0200, Manish Jain wrote: >hello all, >I am scheduling my newsletter with the scheduler in direct mail, but i have seen that the cronjob is not sending mail, and i have to send it manually, i have seen typo3/cli_dispatch.phpsh file too, but nothing bug found, >if you know about this so please reply me, >Thanks in anticipation I would first check if the Typo3 script which should trigger the cronjob has the right file permissions. Also, some shared hosters will not execute scripts if they are too permissive (e.g. 777). Mit freundlichen Gr??en/Best regards J?rg Schaller Rechtsanwalt Kanzlei Stiletto Wilhelm und Schaller Kunibertsklostergasse 1 ? 50668 K?ln Tel +49 (221) 913 959 25 Fax +49 (221) 913 959 29 mailto:typo3 at raschaller.com http://www.raschaller.com *Schwerpunkte* IT-Recht Medienrecht Urheberrecht From manish.jain at webofficeindia.com Wed Sep 24 12:00:53 2014 From: manish.jain at webofficeindia.com (Manish Jain) Date: Wed, 24 Sep 2014 12:00:53 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__CronJob_is_not_working_in_typo3?= References: Message-ID: yes everything is ok, with the permission, even i run command "/Absolute/path/typo3-instance/typo3/cli_dispatch.phpsh scheduler" and it is working , but dont know why the newsletter is not getting send on scheduled time, i dont know if this needs to execute this commmand in any interval of time or any other changes required,,... Manish Jain Typo3 Developer Weboffice From matt at lubs.leeds.ac.uk Wed Sep 24 14:05:00 2014 From: matt at lubs.leeds.ac.uk (Matt Clough) Date: Wed, 24 Sep 2014 14:05:00 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__User_Access=2C_Permissions_and_?= =?utf-8?q?Workspaces?= References: Message-ID: Hi Xavier, I think i have managed to solve my problem!! Using your response as a guide I had a look in the ter to see if there was any 'roles' type extension and I found one - begroups_roles This adds a selector box at the top of the screen where a user can switch between defined roles (usergroups). I made a tweak to disable the 'All' option and fixed an issue in the code of RoleSwitcher.php on line 46 Changed to - public function __construct(\TYPO3\CMS\Backend\Controller\BackendController &$backendReference = NULL) { Using my original example: I created two Workspaces: News workspace Section 3 workspace I created 3 additional usergroups News workspace users Section 3 workspace users LIVE workspace (this is the only user/group that can edit the live workspace) These were then assigned to the respective workspaces. I created 3 TASK usergroups: Edit staff records Edit news Edit section 3 content Each of these groups are then assign the usergroups that provide the correct DB and File mount points, the roles and access groups to allow the user to accomplish each task AND the required workspace group. User A is then assigned these TASK groups. I have only tested this with a few users, but the results look promising. When the user changes TASK their permissions, access, mounts and Workspaces changes accordingly. I hope other people find this useful!! So I'd just like to thank Nicole Cordes for creating a great solution to a problem that has had me tearing my hair out for the past few days!! All the best Matt From xavier at typo3.org Wed Sep 24 14:15:43 2014 From: xavier at typo3.org (Xavier Perseguers) Date: Wed, 24 Sep 2014 14:15:43 +0200 Subject: [TYPO3-english] User Access, Permissions and Workspaces In-Reply-To: References: Message-ID: Hi Matt, > I think i have managed to solve my problem!! > > Using your response as a guide I had a look in the ter to see if there > was any 'roles' type extension and I found one - begroups_roles Cool! I missed it :) Cheers Xavier -- Xavier Perseguers TYPO3 CMS Team Member TYPO3 .... inspiring people to share! Get involved: http://typo3.org From loek at netcoop.nl Wed Sep 24 16:16:16 2014 From: loek at netcoop.nl (Loek Hilgersom) Date: Wed, 24 Sep 2014 16:16:16 +0200 Subject: [TYPO3-english] Cleaner Typoscript dataWrap solution? Message-ID: Hi all, I'm staring at a Typoscript issue for which I have some solution, but it just looks too complicated for what it does. What I want is render a DB field, plus having the same content in the title-tag. The simplest approach would be this: 10 = TEXT 10 { field = title dataWrap =

            |

            typolink < temp.typolink htmlSpecialChars = 1 } But that will create an XSS issue in the title-tag, and on top of that, the whole thing will break miserably if there is a "|" in the title field (try it, it's fun!) The solution below works, just as long as nobody enters ##12345&& in a title: 10 = TEXT 10 { field = title wrap { cObject = TEXT cObject { field = title htmlSpecialChars = 1 wrap =

            ##12345&&

            } splitChar = ##12345&& } typolink < temp.typolink htmlSpecialChars = 1 } Anyone with a bright idea? Loek From mathias at lilio.com Wed Sep 24 16:24:29 2014 From: mathias at lilio.com (Mathias Bolt Lesniak, LiliO) Date: Wed, 24 Sep 2014 16:24:29 +0200 Subject: [TYPO3-english] Cache forever :-) In-Reply-To: References: Message-ID: Hi! This depends a bit on what the contents of the page are, but you could dump the HTML and write a .htaccess redirect to your HTML file for that particular page. In some respects it would be similar to what the extension nc_staticfilecache does. This solution would not work if the page contains generated images, as they would be removed and renamed. Yours, Mathias Bolt Lesniak LiliO - www.lilio.no mathias at lilio.com On 23. sep. 2014, at 18:05, Pero Peric wrote: > Hi, > > I have one important page that it takes very long time to generate (i use DCE ext. to generate many elements and it takes about 20-30 sec. to generate a page). This page will not be updated often so i wonder if there is a way to preserve a cache for that page even if clear all page cache will be used? Thx. > > Regards. > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.typo3.org > http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english From guarnieri.philippe at orange.fr Wed Sep 24 19:34:58 2014 From: guarnieri.philippe at orange.fr (guarnieri philippe) Date: Wed, 24 Sep 2014 19:34:58 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_installation_typo62?= References: Message-ID: hi, no one can help; is my question so extraordinary ? From shr3k at typo3-hosting.com Wed Sep 24 20:10:09 2014 From: shr3k at typo3-hosting.com (Martin Kokes) Date: Wed, 24 Sep 2014 20:10:09 +0200 Subject: [TYPO3-english] TYPO3 support in Czechia? In-Reply-To: References: Message-ID: Hi Martin, There are some companies mostly in Brno and few freelancers including me as long-term chief translator. Martin "Martin Bless" wrote in news:mailman.1.1406017291.27548.typo3-english at lists.typo3.org... The question is: Is there TYPO3 support in Czechia? Any TYPO3 agencies out there? Martin -- Certified TYPO3 Integrator | TYPO3 Documentation Team Member http://mbless.de From info at bednarik.org Thu Sep 25 00:04:54 2014 From: info at bednarik.org (Jan Bednarik) Date: Thu, 25 Sep 2014 00:04:54 +0200 Subject: [TYPO3-english] Ext:news (tx_news) - youtube/vimeo video In-Reply-To: References: Message-ID: Hi, thanks for hints. Unfortunately, it's different in 6.2. I had to go to extension configuration and change default value of "Use FAL relations instead of news media elements [records.useFal]". Now I have section "Video & Audio", which should be what I'm looking for. Thanks Jan Dne 24. 9. 2014 10:22, Nils Hodyas napsal(a): > Unfold Media file > > under the first header ("media type") is a drop down menu, should be set > to "image" (or "picture") (I have a german BE) > unfold that and choose "Video & Audio" > > Wait for the screen to change > the Element will close > > reopen it an find the input field "Video URL" > > my system: 6.1.11 / 2.2.1 > > Hope this works! > Nils > > > > > Am 23.09.2014 um 19:47 schrieb Jan Bednarik: >> Under tab Relations I can see only >> >> Media file (where I can upload images or MP4) >> Related files (again, just upload or selection from fileadmin) >> Related links - is this it? >> Related News (from) >> >> I don't see any Video&Audio :( >> >> Jan >> >> Dne 23. 9. 2014 17:42, Nils Hodyas napsal(a): >>> Hi Jan, >>> >>> should be the tab "relations" -> Video &Audio. Than you can enter the >>> URL. >>> >>> You're welcome! >>> >>> Nils >>> >>> Am 22.09.2014 um 21:33 schrieb Jan Bednarik: >>>> Hi, >>>> >>>> is it possible to embed youtube/vimeo video into tx_news item? >>>> >>>> Thanks >>>> >>>> Jan >>>> _______________________________________________ >>>> TYPO3-english mailing list >>>> TYPO3-english at lists.typo3.org >>>> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english >>> >> >> _______________________________________________ >> TYPO3-english mailing list >> TYPO3-english at lists.typo3.org >> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english > From mahersoua at gmail.com Thu Sep 25 03:50:30 2014 From: mahersoua at gmail.com (Maher Soua) Date: Thu, 25 Sep 2014 03:50:30 +0200 Subject: [TYPO3-english] =?utf-8?q?_Add_Images_to_Content=2C_Display_=22Er?= =?utf-8?q?ror_=3A_403=22_Forbidden?= Message-ID: Hi, I am newby in typo3 , I installed last version 6.2.4 , it works well, but when I am trying to add images to text area by cliking "add image" button , and choose image that I uploaded through FTP to user_uploads file, it display a pop up with this URL says; Error : 403 Forbidden. I don't know what is forbidden as the images is accepted in my server. Please need help and where I can find good tutorial for typo3 6.2, thanks in advance. From dipankar at fiveetechnologies.com Thu Sep 25 08:52:59 2014 From: dipankar at fiveetechnologies.com (Dipankar Das) Date: Thu, 25 Sep 2014 12:22:59 +0530 Subject: [TYPO3-english] Typo3 6.2.4 .. bootstrap package logo image and other random images show up Message-ID: Hi, I have a bit weird issue. whenever I put an image in text-img element the "Typo3 CMS bootstrap package" logo image shows up ! when I use 2 images in same content I get one random image in the frontend. Any solution or thoughts where to look for the problem? -- regards Dipankar Das -- FiveE Technologies. http://FiveEtechnologies.com/ From xavier at typo3.org Thu Sep 25 08:53:49 2014 From: xavier at typo3.org (Xavier Perseguers) Date: Thu, 25 Sep 2014 08:53:49 +0200 Subject: [TYPO3-english] Add Images to Content, Display "Error : 403" Forbidden In-Reply-To: References: Message-ID: Hi Soua, > Hi, I am newby in typo3 , I installed last version 6.2.4 , it works > well, but when I am trying to add images to text area by cliking "add > image" button , and choose image that I uploaded through FTP to > user_uploads file, it display a pop up with this URL says; > Error : 403 > Forbidden. > > I don't know what is forbidden as the images is accepted in my server. > Please need help and where I can find good tutorial for typo3 6.2, > thanks in advance. You should have a look at your server logs (most probably Apache), you should see the requested file along with the 403 error which should help understanding what's going on. Kind regards -- Xavier Perseguers TYPO3 CMS Team Member TYPO3 .... inspiring people to share! Get involved: http://typo3.org From xavier at typo3.org Thu Sep 25 08:58:19 2014 From: xavier at typo3.org (Xavier Perseguers) Date: Thu, 25 Sep 2014 08:58:19 +0200 Subject: [TYPO3-english] installation typo62 In-Reply-To: References: Message-ID: Hi Philippe, > i am a beginner with typo3; i try to install to know more but it seems i > must not have the good files . > i have this msg "Fatal error: Class 'TYPO3\Flow\Package\PackageManager' > not found in > /home/philippe/www/typo3/typo3/sysext/core/Classes/Package/PackageManager.php > on line 23" This is odd. Did you do something between unpacking files on your server and trying to install/use your freshly created website? Are you possibly using an opcode cache such as APC with aggressive caching on and you forgot to restart PHP-fpm / Apache after that? Kind regards -- Xavier Perseguers TYPO3 CMS Team Member TYPO3 .... inspiring people to share! Get involved: http://typo3.org From loek at netcoop.nl Thu Sep 25 09:30:42 2014 From: loek at netcoop.nl (Loek Hilgersom) Date: Thu, 25 Sep 2014 09:30:42 +0200 Subject: [TYPO3-english] Cleaner Typoscript dataWrap solution? In-Reply-To: References: Message-ID: Found a slightly cleaner way to do this: 10 = TEXT 10 { field = title stdWrap { wrap =

            |

            typolink < temp.contentList.single_typolink htmlSpecialChars = 1 } addParams.title = 1 addParams.title { field = title htmlSpecialChars = 1 } } The addParams.title = 1 is weird, but - looking at the source - you have to put something there to make the addParams property values read the stdWrap. addParams by default adds a property to the first tag it finds, h3 in this case. Loek On 24-09-14 16:16, Loek Hilgersom wrote: > The solution below works, just as long as nobody enters ##12345&& in a title: > > 10 = TEXT > 10 { > field = title > wrap { > cObject = TEXT > cObject { > field = title > htmlSpecialChars = 1 > wrap =

            ##12345&&

            > } > splitChar = ##12345&& > } > typolink < temp.typolink > htmlSpecialChars = 1 > } > > Anyone with a bright idea? > > Loek From guarnieri.philippe at orange.fr Thu Sep 25 09:34:30 2014 From: guarnieri.philippe at orange.fr (guarnieri philippe) Date: Thu, 25 Sep 2014 09:34:30 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__installation_typo62?= References: Message-ID: Hi Xavier, not at all, i was not able to begin to to install the CMS and my first reaction was to think i had not the set of files the good package and it was the reason i have this msg. First time i try to install a typo3 cms, i'm not a beginner with the CMS but very beginner with TYPO3 dans the links were very cousing between the links for sources, for package etc ...i red the documentation but they were very short on this early aspect of the installation. Kind regards From dipankar at fiveetechnologies.com Thu Sep 25 09:46:45 2014 From: dipankar at fiveetechnologies.com (Dipankar Das) Date: Thu, 25 Sep 2014 13:16:45 +0530 Subject: [TYPO3-english] Typo3 6.2.4 .. bootstrap package logo image and other random images show up In-Reply-To: References: Message-ID: On 09/25/2014 12:22 PM, Dipankar Das wrote: > Hi, > > I have a bit weird issue. whenever I put an image in text-img element > the "Typo3 CMS bootstrap package" logo image shows up ! > > when I use 2 images in same content I get one random image in the frontend. > > Any solution or thoughts where to look for the problem? > This happens even after uninstalling bootstrap_package extension. I also get this apache error whenever I do some thing inside backend: File does not exist: typo3/sysext/cms/typo3conf, referer: typo3/sysext/cms/layout/db_layout.php?id=1& No error in Typo3 log. debug is enabled though. Please help. -- regards Dipankar Das From xavier at typo3.org Thu Sep 25 09:56:03 2014 From: xavier at typo3.org (Xavier Perseguers) Date: Thu, 25 Sep 2014 09:56:03 +0200 Subject: [TYPO3-english] installation typo62 In-Reply-To: References: Message-ID: Hi Philippe, > not at all, i was not able to begin to to install the CMS and my first > reaction was to think i had not the set of files the good package and it > was the reason i have this msg. > First time i try to install a typo3 cms, i'm not a beginner with the CMS > but very beginner with TYPO3 dans the links were very cousing between > the links for sources, for package etc ...i red the documentation but > they were very short on this early aspect of the installation. There is really next to nothing to do nowadays. 1) Grab latest stable version, e.g. from http://typo3.org/download/ or from http://get.typo3.org/ (.tar.gz) 2) Go to your webroot, unpack as typo3_src (or create a symlink to the actual version named "typo3_src", create a symlink for typo3_src/index.php 3) Go to your website and follow the instructions Maybe you miss some file because of an incomplete archive? You may double-check the checksum. -- Xavier Perseguers TYPO3 CMS Team Member TYPO3 .... inspiring people to share! Get involved: http://typo3.org From dipankar at fiveetechnologies.com Thu Sep 25 11:01:41 2014 From: dipankar at fiveetechnologies.com (Dipankar Das) Date: Thu, 25 Sep 2014 14:31:41 +0530 Subject: [TYPO3-english] Typo3 6.2.4 .. bootstrap package logo image and other random images show up In-Reply-To: References: Message-ID: On 09/25/2014 01:16 PM, Dipankar Das wrote: > On 09/25/2014 12:22 PM, Dipankar Das wrote: >> Hi, >> >> I have a bit weird issue. whenever I put an image in text-img element >> the "Typo3 CMS bootstrap package" logo image shows up ! >> >> when I use 2 images in same content I get one random image in the >> frontend. >> >> Any solution or thoughts where to look for the problem? >> > > This happens even after uninstalling bootstrap_package extension. > > > I also get this apache error whenever I do some thing inside backend: > > File does not exist: typo3/sysext/cms/typo3conf, referer: > typo3/sysext/cms/layout/db_layout.php?id=1& > > No error in Typo3 log. debug is enabled though. > > Please help. > Same problem in another installation which different php veriosn and os. No errors of any type here. not in apache log even. I find it hard to believe it to be a bug. I deleted the bootstrap package extension files still the image refers to it's logo! -- regards Dipankar Das -- FiveE Technologies. http://FiveEtechnologies.com From post at dietantejensen.de Thu Sep 25 11:17:37 2014 From: post at dietantejensen.de (Nils Hodyas) Date: Thu, 25 Sep 2014 11:17:37 +0200 Subject: [TYPO3-english] Ext:news (tx_news) - youtube/vimeo video In-Reply-To: References: Message-ID: Hi, that will come in handy one day! glad it works now. Nils Am 25.09.2014 um 00:04 schrieb Jan Bednarik: > Hi, > > thanks for hints. Unfortunately, it's different in 6.2. I had to go to > extension configuration and change default value of "Use FAL relations > instead of news media elements [records.useFal]". Now I have section > "Video & Audio", which should be what I'm looking for. > > Thanks > > Jan > > Dne 24. 9. 2014 10:22, Nils Hodyas napsal(a): >> Unfold Media file >> >> under the first header ("media type") is a drop down menu, should be set >> to "image" (or "picture") (I have a german BE) >> unfold that and choose "Video & Audio" >> >> Wait for the screen to change >> the Element will close >> >> reopen it an find the input field "Video URL" >> >> my system: 6.1.11 / 2.2.1 >> >> Hope this works! >> Nils >> >> >> >> >> Am 23.09.2014 um 19:47 schrieb Jan Bednarik: >>> Under tab Relations I can see only >>> >>> Media file (where I can upload images or MP4) >>> Related files (again, just upload or selection from fileadmin) >>> Related links - is this it? >>> Related News (from) >>> >>> I don't see any Video&Audio :( >>> >>> Jan >>> >>> Dne 23. 9. 2014 17:42, Nils Hodyas napsal(a): >>>> Hi Jan, >>>> >>>> should be the tab "relations" -> Video &Audio. Than you can enter the >>>> URL. >>>> >>>> You're welcome! >>>> >>>> Nils >>>> >>>> Am 22.09.2014 um 21:33 schrieb Jan Bednarik: >>>>> Hi, >>>>> >>>>> is it possible to embed youtube/vimeo video into tx_news item? >>>>> >>>>> Thanks >>>>> >>>>> Jan >>>>> _______________________________________________ >>>>> TYPO3-english mailing list >>>>> TYPO3-english at lists.typo3.org >>>>> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english >>>> >>> >>> _______________________________________________ >>> TYPO3-english mailing list >>> TYPO3-english at lists.typo3.org >>> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english >> > > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.typo3.org > http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english -- Nils Hodyas - Webdesign von die Tante Jensen ? Gro?herzog-Friedrich-Stra?e 117 ? 66121 Saarbr?cken ? (0681) 925 63 43 ? 0160 318 183 7 ? http://dietantejensen.de ? DE 2757 96974 ? Registergericht Saarbr?cken From dipankar at fiveetechnologies.com Thu Sep 25 11:59:10 2014 From: dipankar at fiveetechnologies.com (Dipankar Das) Date: Thu, 25 Sep 2014 15:29:10 +0530 Subject: [TYPO3-english] Typo3 6.2.4 .. bootstrap package logo image and other random images show up In-Reply-To: References: Message-ID: On 09/25/2014 02:31 PM, Dipankar Das wrote: > On 09/25/2014 01:16 PM, Dipankar Das wrote: >> On 09/25/2014 12:22 PM, Dipankar Das wrote: >>> Hi, >>> >>> I have a bit weird issue. whenever I put an image in text-img element >>> the "Typo3 CMS bootstrap package" logo image shows up ! >>> >>> when I use 2 images in same content I get one random image in the >>> frontend. >>> >>> Any solution or thoughts where to look for the problem? >>> >> >> This happens even after uninstalling bootstrap_package extension. >> >> >> I also get this apache error whenever I do some thing inside backend: >> >> File does not exist: typo3/sysext/cms/typo3conf, referer: >> typo3/sysext/cms/layout/db_layout.php?id=1& >> >> No error in Typo3 log. debug is enabled though. >> >> Please help. >> > > > Same problem in another installation which different php veriosn and os. > No errors of any type here. not in apache log even. > > I find it hard to believe it to be a bug. > > I deleted the bootstrap package extension files still the image refers > to it's logo! > Solved ! -------- instead of using any of the latest css_styled_content v6.1, v6.0 ... use the default non versioned one. This fixed the issue with the images Same problem happened in Typo3 6.2.5 as well. Well everyone it was nice talking to myself ;-) ..will try to report this as a bug. -- regards Dipankar Das -- FiveE Technologies. http://FiveEtechnologies.com From dan at danizen.net Thu Sep 25 22:33:19 2014 From: dan at danizen.net (Daniel Davis) Date: Thu, 25 Sep 2014 16:33:19 -0400 Subject: [TYPO3-english] =?utf-8?q?_Default_Repository_for_Extension_Manag?= =?utf-8?q?er?= Message-ID: I've installed Typo3 in a somewhat secure environment. I can ask for firewall rules so that the server can contact typo3.org, and repositories.typo3.org, etc., but I am nervous about asking for all mirrors. Is there any way I can download mirrors.xml.gz and put it in the right place and then statically configure which mirror(s) to use for downloading extensions, and checking for updates? Thanks, -- Daniel Davis, Systems/Applications Architect (Contractor), Office of Computer and Communications Systems, National Library of Medicine, NIH From hiddink at bendoo.nl Fri Sep 26 08:43:55 2014 From: hiddink at bendoo.nl (Bert Hiddink [BENDOO e-work solutions]) Date: Fri, 26 Sep 2014 08:43:55 +0200 Subject: [TYPO3-english] TYPO3 6.2 and FORM: Confirmation mail to sender in FORM??? In-Reply-To: References: Message-ID: Hello, Appears that you will have to write an additional postprocessor for that (as for any other extra feature)...I'll take that route and let you know. Regards, -brt On 23-09-14 13:14, Bert Hiddink [BENDOO e-work solutions] wrote: > Hello, > > Is it still not possible to send a confirmation mail to sender when > using TX_FORM? > > https://forge.typo3.org/issues/32950 > > Any ideas/comments? > > Thanks! > > Regards, > Bert From mramaraju.dba at gmail.com Fri Sep 26 14:46:55 2014 From: mramaraju.dba at gmail.com (Ramaraju Musku) Date: Fri, 26 Sep 2014 14:46:55 +0200 Subject: [TYPO3-english] =?utf-8?q?_Power_Mail_Free_Captcha_Validation_Pro?= =?utf-8?q?blem?= Message-ID: Hi, I am new to typo3 I have newly placed captcha in a form but the captcha validation is showing after submiting the form in another page I want that error message need to show on the same form above the submit button please any one can help on this Thanks in advance. begin 644 captcha.png MB5!.1PT*&@H````-24A$4@```6\```#G"`(```!>RD!"`````W-"250("`C; MX4_@````&71%6'13;V9T=V%R90!G;F]M92US8W)E96YS:&]T[P._/@``(`!) M1$%4>)SMW7]<%'7^./#7["PS+.PJMBNZ*PB*+6J at W"UBD`5:05>@G:@76B?6 M?;+Z:&=%UVGVT:[2ZT[ZH=Q5?B[%.Y4KQ6\9W25Y"652YGX.A1/9("%^K,)N M`KNPS.R/^?ZQ_-A=EOV!PR][/1\].)E]OV=>[[F9U[[G/3-O"([C`"&$KIM@ MM`-`"-T@,)L at A/B!V00AQ`_,)@@A?F`V00CQ`[,)0H@?F$T00OS`;((0X@=F M$X00/S";((3X@=D$(<0/S"8((7X(AU;-TG6U3J.IK6O1M[4966O?F'(=0<) M*1*'A$R11RGG*L-#!JMJN/A>P>F>0*2+LC+G2GK7>+6N5E/;T-RB-YI8*P"0 MU,30R+EQ";'A06X#\/?+WM*ETS9KF[4M>KVNS6!TB)L2B4-"%9%1<^;,DM&^ MK(II:ZBMKJW37M6W]00+`"1)42*1)$0FE8;*PR,C%?V[#[LF:.PC?)U[C6DX MNP?BB$6I=\[U,#QJ M::LN*RFK:O&P;0``D"YZ,'-ND/_1(C1:?#T"&6U%H\NI1$6DIJ>$.WP3"X5" M.BA($@(R#RNRZ"J*/BQK\79:6MMK2]\WF):GQWF^;]%2]L'ATG:CQ]59M65? MU$7=&TD#`%C:-&5EE7YSFR&*K_]4%IO2]; M)\4AU)"B16BT^#AN8M'7NB8`452+O:>27BUGB\_J+)[+F+RD M$@``L#:6UW7YN-&!@L*5$_TI;]66E52[V1S34.IC*@$`\93!KQ(1&I-\/&*- M+5==^MFD-%+J]^%NT)RN=+W\%X5&*:/D(12P;2VU&HWSY8JQ\G1MW/W1;H8] M_*2OU3/107YG/SM)>/3$LK,.8T:4:*(D1"(.HFF2!"MCN-JH=E*'I/\KFQ< MA"(ECKDR)')N1$-S4&BX/#QT2JAL8,O;RM][WS'=0'MM<8Q;LJCU;ZY*0 M1SB5;$Q4VL M*G,Z+S7-7;&>>R?BF&6925/Z5T3+YL3)SVJ=!GK8-L8"(`2 at 99'1,@!+D,;E M_!0IHN9&#Y*V0F+3,F(]11"F$)UM=\R"!JW!$MW_''!70Y5+(@5Y8H+G5&)O MRA"B16A4^#9N8C6YCEZ0%.WOHR26MKHVYR4B1>B`E"0*G4(Y+VEK;/,R=A*D M"'$]+44A+FNQ,L/SN(;%8K%8+""4N.P.MLNQ)V)IJW,=QI4J%==_`8?0&.); MW\3-J4CZ_5R:JE=(.O`E'F&05`3@>"9:VPRLOP_M"H5!KO%9><@F%D-S M;6UM74.+OLWA*1GWG+8W\-DS4:AKOD-HG//I)+6XZ1OX?9UN8=I<'YB@@]R< M4)3(==5,&PLPVM_C70U?EWQQOM&?1\BL?7O)3=NID+'[.B1"0^+3$2T4#KR^ M]__"P=>6&H_D=A::.WY\T\L`[H&0FI,?S2`4)# MX=NX"25R32=6=IC&(<8 at P\5_75C'P;=O?"I(1`(XI8\NHPG`K^J/B at 8\2M-O M8-LM`WIJ"(USOO5-A!*%Z\T78T,;X]>6A/2`84>FR\TW/CO at _M'`BB.IZZKK M8(E(N2AAUI2>5`(`0B$MD;C>TW'BINUL6Y>7.U4(C3,^/EDO'G#?%EJJ]?Z= M#J*0`7=1]0//*$N7WN5!.3)$,B+9Q`IN>PL#LYN[6U%>B$)D+FTPM;B?;\I7 M at T2+T.CQ,9L(ICE&&!+I, at V;J7G@:[^F M`<_PAX0-.CG!=7$=`K9VN;MWY>96N+7+[Q-9*(V0NBS25]49!BUO808\X.-; MM`B-'E_/4UH>%TDU.CT;;M6>_N<9^DY59,^C8XQ!I]>W--35-38T]O0OM*%Q MD?U/Q4L441-![_2<:WEYL_)VA\=AF>;R;XIBV!DVYNESC>>H76C%'#EJMXR)]6/ST2A4)"1(:T\[/=%IU5<6OU_IH9*^ MXF);;/_$L"%1L:%G3SL.:9JJBM[7*WO?^M/6:31:E]Y*:%S4L#P_+I1(@YS/ M3V at _?VS?^9Y_B^KGCC5%3?M6A0RY1+HH1NQ0QM6C.EY66EI:6G1^02D`H;6YQG M0S)I*EL<]IS/T2(T:OSZ>SJ2N3]+G^]?0K$R!L>31"A+2$WP>0W2A-2$8>O+ M"V5S8P=F"7IT&APY,S%H7Y.J+,UE4YI!/?HT5HM/CY MU[GH*0O35Z7&R+V_/TQ-#)N3^+.L!]-F.?L40Y:$*AI!'S4U<]>']*@K<37A at R]]Y5Z0EAWG8? M*9;/24Y/5CBVWN=H$1HE_I^M0DED4D:D2E>GJ:JN;6YI:S?U=#Y(2B222*>$ M*N3A\LBP*8/?116&1*?\(DK5H*G0U&JOZAW^O!=)B4.DWF:9YH\P9&Y&5FBU M6EU5I]7W14%2(I%$$>HTF*P"0HHFABO`HY=RH\-XW MF"6**#'HO;S*$Z2(N_>A.;V[3]]NZMNL.$0Z)30\+#(R,GS`.]'^18O0:/!Y MEFF$$/((_PXQ0H@?F$T00OS`;((0X@=F$X00/S";((3X@=D$(<0/S"8((7Y@ M-D$(\0.S"4*('YA-$$+\P&R"$.('9A.$$#\PFR"$^('9!"'$#\PF""%^8#9! M"/$#LPE"B!^831!"_,!L at A#B!V83A!`_,)L at A/B!V00AQ`_,)@@A?F`V00CQ M`[,)0H@?F$T00OS`;((0X@=F$X00/S";((3X(?2KM,EDJJFI,1J-#,,,4T## MC:9IL5@\:]8LD4 at T\-/N[FY[`[N[N]U6#PP,M%CJMK!FJ]N*5``9%"B,D$^@`LCA#Q.-103' M<3X6-9E,Y\Z=$XE$-$T+A?ZEH;'#8K%T=W=W=W?'Q\>[))3N[NYSY\X%!@9Z M:*"].L,P\?'Q/B:4-9L_&R^IQ&[2!/K0SB6.2UBSM;)&%R*F at T5"(>F^/VNQ MV at Q=YHY.-F:6#!/*CY,?2:&FIB8H*$@BD0Q?-".`)$F:I at 4"04U-36QLK.-' M-34U(I'(

            W^[KC M?.[]C5E=W9:I-[FY,!PH6"2\\L,XRYZ(+WYD$X9A1"(1QW&V3_Z?K>\,(8!C M6M77'3?NDPFP9NM@%S at NA*1 at L($5=,/S;_A#(!``@!6(OBZ)C3$1TV?2<^=3 MBG`@"(N^E3UWQG:E"4BA2ZUQ at 23YO^#GP.;XZTO_';\@5N&A_#<5S2_\Z9S; MCZP6UF9E!21%"CU=="`T*OS+)O:3K6_ at EF.Z`^*3;EJ^NFW?'H(@IN1L;SWX MOZ;F!B"%CMW[X3A%A\FP9!/.*9L,EDJ,7:PXB+(7<*G24^#:]U%3J1EA-UUN MU%UNL05-5)@9HT%?)Y%&!M!BWL-&R%]^]TWL77U[LK!QMIM6_M)6_UW7O[_I MNO!OT4\2Q(G)^@-_$MBL-K-90-/V,137D8C.R at _^M/=XQ346S&8(C5GQQ%/W MSPD>ZF6+N?*5A_-O?SLWV=\UN&T at 29(.93JKCOSAS7^V<`&<>%[V\T_<>I/# M&GS?:5[+?OIE3=[A?QN[K,&!'/+O?%QL^R_EGQ9N>VMLW?? M.F/KA@=?SCOU^06?!W'X8:CZ^XN[BJX`!>)YZ[=MNOVFD=T\&IO\RR;V$9"^ M;,)Q(`P4<1$S.:&08UG3=]]2TV=P9HN-),FHV;;Z&@Z`$)!.XR;FQO>VO/SY MO-^^=E at E)0CFRIF]S^UX0_[.MB3)T$9`K`00!"D0"(1NR^C/?WYYZAVJT(%U M79I64E(2'Q_?U=755X:I*7CS7].?WOOR'+KEXTV_^4MYW&]5P9Z3D5M>4\^; M?U-WFTD@!!U&TV!5UJ;/B8^;]7+>9Z7GVQ^\)VIMYKQU6G/CE6L`8#-W7=-> M!`#1A"ETT$U6LZFSO=EJ-A$$20??))),,3-&XP]U@>+)3.4O MNVWUM9S5ZCANPFH.?=AY]RN/)$PF`0!$BD6_?C!\I=/^GPKS_)R;1:0`Y`M2Q4<^;[(F MS!G"<(7;RQ9'G28+(>`^V//S"6)ZL"H221``L)VMUZ[4O//WQH9F7:/.'"8+ M`(#DA3-S'KL;@#M4^,5[)>WS9P at W/;(V(FQREXG][(OSN8>J[UHP;>O&AS[^ M]/\6+XI)>^3`;Q]6+;E]?I"(.E=>^]*?3G5RGN[F#DPE`/##A7+SO,U1%`#( MX]/$[Y=\SRZX!0=RD'_CHR1)VJ\%[`A:U%'ZZ>4G5I.!@.':)Q\* M0^635SX4-"MZ\B_6DB%2F\5".FB_W,B&+XP4.2P2]?QB^K\]NR\M_EW^WKU[ M\]::#^;^H]7=DK?WM67NR=^;]YM%+577B$"2)`D@!-V5[^RI7OS[O7EY>_/^ MFWX_]Q^M/2L7"`B"=*NO47VII*^!)$F2I+6]L5,\:X(]N(D*B;&EW>JNNE>< M,SRAST63IQ#?^^,NIR.FA3V4O'+BMOB#=IA(`YMKWQN!9/0^?B*>(C5=^8'W?'>C&Y5_? MA"`(@B`XFZWGG at YGLU@L%FV3N:)\"H`LZQ'CQ8KN2Y7:UU^")W*T?]IEZS81 M)-E3B^,(@J`)`((P$T0 at 06B//[7A?VM8EF7G/G7XM;1K%QJH^6L5`@'!26Y9 M-/7*J8:F-I.'5%>&#C)OT/?EJL]EZ+X4(`0%`$`*! M at .,X`0%@'P#R?]S$P\#)':OWD0&!A$`(`(O7'K::NP_M^GFX8M+`*I^6U7)6 M)GGAS+DWAZ;<%IMR6^PM'Y1]V]`)`$?^65'R[VLWA].K,N*!XQ[?>GA5VNSP ML*GS9D\#@`D2RGZ/^M`'_SY^^DK>;Y-T^@X`3C%%HM,;4VZ+?>G=2WZT!:'! M^7U/A^,X&\>!S08`5JMEPHI?!DV/[/J_K^J>>V+JKS9&Y?YOS?I?6*XT-_\Y MU\9T at T#`<9R]EOVTG*B\F3KP99/UUCD!W+3[WSRVC#/7OOY0+D&2)`U`"$B" M($B!@"!8 at G:SA.A?0A(410A(@@""$!!`3;USVY^?BJ+[1T9BWKV78+[=\]\% MM__IA?D]R^VI02!P3`AP'H6PVZW2Y)%PQR6V5G\P2M5SY?NON!C)`%*4(W/ETROQ; M(K[]_B(```=]_0F.X_:_NBIT\J22K[X_7]4P^V9YW],N'4:&LS]/"$`0`4`( MSE@ENFNNN>T).FBSMKC"P`!6!L,(JGWH27.0C\O=+I.]FL79W6 MKD[)G>F*![+U?WFSX^0_.LI*:S>NM;9?$\1ZSG*.7LM^T_ZENPU M\E._>^WT5;.`(`B!^>K93RYVTC00A/0G$6QY^56!@"",55]>FYXP?:KKDJBI MM\B--36=`@'QP]F/SE^SAP0`DQ;>S)[]I-8L(`BVMO#UHS6L?8OV3XG>K3O^ M=&Q72DK*N7/GH/?VD_VG8N%"ZNSQVDX!P7Y_ZD3GW'MF!3I\ZOM.XSB;XW^. M'WU1\$C)7]?8K*S-RI;^[:&#N2O=5N$XV\]_IOK]UJQYTRW7M)6FMGH`:+W6 MS?6,A7,<9[-W0#C.-C=Z>MDW5:_L?B]8)`0`SF9U+%;79`@*HC\_<^[=0_\( M#B1NGB$?N"W'(!?<,O6[Y at Z7%DV-3P at X]V&M$8"M+RTVSDZ=A=D$P=!&83D; M9[-:`2!PJCS@)IE%2%O-9B(@P&*S=5VNZ?[V$@@#[+T2^Q>C\ZD[[1>[=M-[ M=FU:_GN6HE at 0S[I]S>X==T\6`"3FY'RS?>M#GU`4"Q'KM]\[;2+MNF0R/+;F M^/9?/71TZM1;;IEUTP]$H$```,0$U9-;;M_^^U\]0@'+3E^V_7Z1?9NBZ%_O M?]&GIME[*`L7+NQ?-./A[2NW;__5+UB at IMZY98=*-+2'\+Q>%MEL%J]5=A\L M?_VW-^W9\8C]UX;FMMT'R^.44@`0D!3'<0(RT%Y17=&4D9:0D99PJ;8%`$)" M)G08V;YB[Q[[SXSP2?;U=)G,?WGOG-?PW/10IJ_;LOS%'8^M,@,U)67SMOGT MX+71CX@?0P`E)26WWGHK01!5J2K.8 at 4`?F?4MPA"IN::J MX_0I@?/+M;-/G./MH7CC?S[]BKKU;J68:WX_>^.WSQ[:&A,XM+65E96EI*2X M-#`Q,=''-7SUU53_,L"QU]+_YKE4F#1ZGT`"9\<$3)YB-1HZO_B7N;6%"!0Y)BBNMY;`8;!@_+]#3`H(&\<)?$BC%JL-ITKZ MT?(CFTR:-*FQL7'FS)D_>>KYGSZ]E9]QD%'Z>?7JU8&S(DV:-*FIJ2DR,M+K M&JY+'K%'C?WX323#5;F0G2;PG4$.7.2APO,[+AZZ3'[V&6;-F-38V-C0T MV&<&X>WB961_=G=WU]75-30TS)HURVT#&QL;N[N[!UL#PS"7+U]N:FH:6'TP M-TVDW=Z%';/_39K at FC4BY!,Z.MEV(VNQ#OJ6@,5JNV9 at .CK9"+FOX[7H!N/? M8YWV6:8-!@/+CM=GJ2F*DD at DGF>9-A@, at TVC3=.TO;KOLTR?^7?#SG>^'"_S M.&K^/4^6LA%/'R]W;$)+E*J8&#T`L(8Z3;T1@)(KE5(*`*1*'_Z2)$+HQ\+KGXR-7)V;OQJ@ MKY9S)3XGM7^4R^VM`;?W7A]O7VZO$IF1MS2YI[ MZ]LWEY%[HG!'S_KCT[)WG*BK*\G=:%]74L;Z/6<,?1OQ*1(_]IC>?7N]!.Q< MWFW#F8KM*?'Q\6D[JMU'B)![O/PY>TW>\Z^)E8G)R6QEJ;KR6$Y.Y/'#JQ4` M3/6>['4'ZH%2)B^/H37%Q<>>S];31W-39/9Z^F-//@D at 5<8DQBHH;X7[Z$M* MJB$V,3U9RM:7%JN+=ZZG(D]L5]%#7J?NQ/-/'E"#."9UN9(R:C5J31U%`=CC M7W.@'D"N2HX5Z]6E904Y*^JV'=^3T5=?6_#\3GERUH;-E#K_0&GEL>=7'`-Q MS/+LS9EUA:\5J0_D;%>=R$V2>-T5/?S98P'NV^LE8,?RAL$:CM"0<+[JOK`M M6:52)6^^T-V_[,NG$U4JE2K]E7,=',=Q7-/1+)5*I"GN-*777I>ZAK[/[TBNI*I4J?;?KIERK=YRS M[X%M%[H=VK[V>*O]TU,;[)M_Q;Z#>O?7M at O=/K?.KSWFO;WN`^XK/VC#N8[6 MIJ:FU at Y/NQZA`7BYTI&F9,9([/]21HH!P*`W`C#UQ14`($]125F#P6`PB)6Q M8H#ZDNJ^WK\\/3O)7M&'P at X875W%F9*/"@L_JF,!@-&S_9_YO4Y:D11#`6@/ MK,C8N./PF;K>#WNJ1V2F1MK[/9*8S!0Q@%%=HG78G"K6_KU/R2,E`$"ITI0T M```MC90"`&M@?8[$KSTV:'N]!=Q7?K"&`TAD"H5"YKP=A+SAY4I'+.^_NV/O M*1L`@#7H60#0'EBW^(!C:=;8=]A2TMZ.MUH2)_2TY>F1X`Q%(Y;6#! MA?_KE*1LW[\Y]\7<(DW9L=?*CKT6D?[*.]O39#W5)8J^HK0D4@)@-&@-_0,* M_9NSMYWJOU;H^0?CFY-7IJ<2-^_?D1DM@;K\C!5Y6G#/QW4"@"0Z<_OAS&>J M3^3OS3M06E_TXHLI27L2[=4-S7UG/&.H,P"`1"ZA`?P9H?0Q$K_VV*!;\2=@ MMPU/P4X)&I)AS"9T1&HLE*JUE7K%,VF1O2<'PX"[(]M380>LMD(/`+&9J=$2 M`&`,=0/Z)GZOT[Z(!I!$IVW_@?LON$@,>AT#``MPXL=Y(]AS"8 at 2]F\0;DB3_/: MBA6ER2HY;=#65:J;8]XYD:ORJ[##*2>1J^10J57OW5-HB&74A7E%^J$%X'@: MUQ6L7EU`JU0QD5*H.U-D!)`GJ:0`=,HSCRI7Y&GRUJPH259*M.HRC1&HQ&<> MC75-1]>S*VC?BOFR%8F?`0_2<*8B=\6Z(J-T^:'C6Z+Q42+DL^',)D!'9N\_ M*LW+S?^HK+0(`"AY3')FAMS]-^W at A1U%/[IK<]V6W-)C.U\LDJO2-^]2Y><< MC^+9.L3)%)2U2%Q\K`P!*KEJ^8=N&:-I>_9U#DMR=^<65I:4`XHC$K$($4+\P&R"$.(' M9A.$$#\PFR"$^('9!"'$#\PF""%^C'`V89K/Y&]9G]$[HT;&ZF=R/W+[7A__ M6S[S3%)\?'SFX6;O9;VNBY=6,&K^(D)H#!C);&)0YZY;^F1>L5IK%,LC(N1B M5JLI+<@K:KZNQZ68ZAUI\2G;*T;JF:OA:05"X]^P/@OK1'=BR\8"#8`T>=L[ M.S+L;Z$8I')F```3O$E$0508ZDI*FF.NZ^EMIJZPU-/3]:ZN\TGQ86H%0C>` M$>N;U!7DE;$`TN6[>D]"`)!$IF0DR0"\SL^8LKVD)+]GSL&4U5L**PP``'7Y MJY-N6W-,#V`L6G=;?.]DAF"H_FA'[X5(4D;V]H_ZKR4&G71RT`#\:86GB10! M@&D^D=OS8I'IL+5\?'Q\=O+.F)K&Y/1GQ\?'S*%G7/;(_V M*1 at S\C5#FN0Q8\^9DCW/V'=.?%KVCA,.L>O4^3V?)&5NS"_Y:&-2?'Q2[W81 M`H"A99-=NW:EI*2DI*3DYN;Z6J=97:8%`'GZZD'>0-.7E%1#9&+Z\N6I*HE> M4[QS?:[#L6HLRLGY"%(>W?STNVUC8#"!-V;QK<[(8`*C$IW?MWOW. M9I4$F.K\]6M>/*;6 at C(Q.5D5R6HT#FE!D_?\:V<@-CE9)67UE<=RN>ZYPO46E8:DYP9YK/V&=!,JI[ M$D]=B=H(($])C+"WZ-B33^:5L9']DSP.&AL``&@//)E39(S)WOQT5J)87WGL M^9Q"^\YA*G+7K<\KU1C%RL1DE423E_-BF8=WM]&/E=]7.KMV[?K[W_]N_W=! M00''<3DY.5YK,89J/0"`(E;JOH`L,_],9F_A#"IM79&QK*2.447W%HC9]DYN MA at P`TF-AZ;ICE7OSJ].W1,>J&(4$P$A)8Q.38FD`T)UX+4\#(,_:?_29GE.> MZ?L!`/+E[QS>HI(`-!>N7KI3HRE2ZU8K9!X"<$@;7EJA*WGM0#U`Q(:CA[,C M:0"#>GO&^J*RW+R*U.VQM*YD3Y$>0+[VT-&-T32`[L3&I<_WG91]=0_OSXZD M`58K,U;DE>XIJDO)CNS?@CPQ29I7KZ\HJ8/8:)VZN![$,3%065E6IH7HR&9U MB19`FI@>"3W7?M+TW4>W)TD`0'=BO8?8>M>OVG;HG0P9`"1+*NYYL5)35*9; MG2G3%><6:`'D6?L//Q,K`6"JL*1AL5AGTX^5WWZ2HJ,C#K]?%X_R,*3T3 M)@*M3%-1`'JUVMUP2>]LAEE9_>>(8S?"_:23/@3 at 0_@>)U)D-"4:`(C(RNS) M3[*D+!7E4M?KI).1J8EB`&U993,8*HLJ at 5)E/YHB!FVQ6@>ZBN)Z`'%B_R68 MWY,\)O;N9(E"(08`0[,1P*`IKNS9I3TS0$9G9OH[PPOZ,1BA45A:$BT%T$-S MG=YY8L8>WN=GE#A,F"B6`.B-CM,3]ADXFZ$S]Y-.^A"`]U9XGDA1RKI^2DGE M$NCI1?@ZZ22MS$@2%Q5KBBN:Y<45`+$9JE at JEBHJ*U8WRXLU`)0J0]G?0'\G M>728A;)_=S-Z/0"`++(_#K%4`H"=$^3"[VR2GI[>=Z5C_]6G:HH8E1PT6FWA M1W59&R-=!AU\F)_16&U@>GH9K%ZKA[Z\0#N/9`ZOVKE-)$B'9&B!`#-1V4]P[Z, MYH2Z;RL]86LK]8H859^8F.@!4SY+E.FQ`&S9 at 5(C1*2J9``R56I$SP*(38]U MFT,]Q^:91)D:`P#UAPM[_UI7W9GB>F^UT(_04*YTS0*DV9-O''Z2J M)"G4Z\MV;L_-5$7&IF:F;,B*6%=07[`N0YVHDK):384A>?_1+9&>8O-]@DA/ MKM[ZHLJ=Z]97IR=*M,4%Q0X;\7&J1P"0J=*5H-8`@#PE2>&P M"P`@)ETU2(?,WTD>G;:8NGEM_IH#]0?6K=-F)DKUZH^*-5XKH1^AD7P65I:V MX^BA5[*2E5+*J-5JM4:0*I.SLF(E$/WHKLW)$93FV,X7=Q9HE9MWK8UPJ1NQ M8=O:&$9=JJYGQ:_M/:%GZ-AG\O=O3H^1 MLYJRTC)U'16;DB3U=LIX#\"'5M at G4MR<'B/75Y:6EFD@(C'KE:-]D4I4F_?O MRE+)#>IC!_(*JN6/OK+!82-T9/;^H]NR$B,,ZM*BHN+2"H/5I%F'CC^#CP"C/N/F'6(< M]ALS=&<.%VH!**5*@:D$.1BY]W30N,94[,G)4QL,!FU=O9X%@(BL#8GXYW:0 M(\PFR#=LG5I=R0(`)54F)F=MV)B!%SG(V9@?-T$(C1/C9MP$(33&839!"/$# MLPE"B!^831!"_,!L at A#B!V83A!`_,)L at A/B!V00AQ`_,)@@A?F`V00CQ`[,) M0H@?F$T00OS`;((0X@=F$X00/S";((3X@=D$(<2/H<^]9FUL,)><9#\[R1DZ M;)I+/,:$$"\$RMF$9`*UY*Z`E+O(L/#1#N?&-Y2YU\QGOS*]O<>J/CL<`2$T M'$A5 at NBQC0$)MXYV(#"^'T-A#K5X;_-S6T8[BAN5'-K%U MM!LW/8%=$C2ND:H$\1M_%DR8.-J!W(#\R"8=#Z_!5()N`*0J8<*^0Z,=Q0W( MUWLZG:^^A*D$W1BLZK.=K[XTVE'<@'S*)N:S7[&'_SKXX$!IA>%3SSGLVL38VX#4.NO%8U6>MC0VC'<4-Q7LV,9_Z M=`3B0&CDX;'-+^_9A/WLY`C$@=#(PV.;7]ZS"6#90YU;]*),LF MNPD,C6UC))O(A%L/2E9&`0!`AZVI`R23!3/B*$66^>#'5@"@9E*O'@Q>,AD` MH*/1J@="$2:\+4MXVWW42RN-1[\;;+W M$B"X+2O`_J]Y64+%,;;9*:2`WQT4+XL"`&!:K3H03)M,+L at 2-1>Q%US.#9 at -T?-[YQ&ZKXXG!=- at J+EJD`$`3,Z)(&H!IM%[NX`!`W\0Q?K;+Z]I\ MIZNUZ'HKL-]9](..'/HHJEIFKW MYX/UR'.=]B]JZ5W!'[Q%3;B#GB%@708?[#PYV'SG,``#)RZ5V""^4`80Y;H`1KW at A>-AF at D7EN$]OL'`9[ MWO3$,@``D`A?+9'<,X'[\G\,3WW!]=5=YT^[/*^-FNG[#K>\]:!#_V7P8F\_ M:#CN4LRO_R\8Z[Y-G3U[&P0KCDQX(4ZX["[!_KV.W4#AP_<)/MEKZZU$+,X. M<-O_0F/>&!@WH>;0C]U!`-@^V61\\XN^HPJ:SYI/V`_6.8$/S at 4`VY%-/8WE`I,,6[2$=^=K3&];3[@I^/8NTY\%#@UYM#>KZVS7R MKB-F06P<"0"ZBUQ_0F:L1[[F((Q:&=>3 at Z*SZ-G`?5- at Q5NWX]`8N-*1S2$` M`)HL]LL$*D'TYV>%$OLAR5KW;>K2SR0``%HM+M<1P-HNZ0#"0#:-H`'<7>L( M7RB;]$+?;[7,IN=Z!DVHF0$KHP#`>OQK3@]L-03,FTO?-I.I^PX`0#;3*:1! M"!^VS[MST?3F2;\GL.O?RE#:Y2DJIR;[4*:CT'#G;RUN]]YC[TK6]/R;J][3 M^3\G.1]C[AELH"@!`R.8(YX4!M+)OGW2\S.$J\LT="ZE[U at O_>-9L MH(1K[B.A at SU4SCWK3YO1V#`&LHD+>C*Y(*XO+$)!@]Y3<<]L%XK,EQF@)P at B M%P;,CJ+?>,OZT!JFFH49R^D9`%#.G-,!@.7#BS!O+KGR+L&1_ at MX`/":(VP, M".BYHJWW69[X>,`MH5'2=-'B\,5.R.:2L@%E'$=A]56#-G/:7(?C0T;XL$-< M".;=[=!3J64V/=)URGD at AOF:.=5*+;LC,3_3\U_GF10`@T^XCJ?Z0R)5O.81$ M">+O"W!-&:SUS4W=EP'HA<$O9?DW:,I/NT;64&.VG=C-=@#(TD6+79^*`]:> M06AR`L"E?.>[9F@\&0-7.L#:CCS5&7\P>,EDZH7CU&]:K3J&D(4):(<"AY[J MG'

            $D8]=)Q:FNK50?$M,D"`(`.\TM/#/:P"0"0*W\7O(`!:H(@>J%P&@W0 MRKQ5*EB6(P"`2P46A\?5;&<*+/"2<-I]U(S=INJ!(0$AFRR at P?J'-/,1E_#/ MFY[[H_#]9X7SM@:O.6O8[WRSPW/#A]JNZR1\_*!D9=\%B<[R\N,F7Q\Y'6K, MAJ^[CS=2#X8)'\LF/WG%ZK+.$_F632\)@3$?.CE6AI^0_\9`WP0`V._8I](Z M7BHP7VKEZ,GDM#`!S=@N?\T>?*'K1&-_ at 1?Z"DP6,*W6+PLZ'TGS\"`L`!"S M[Z;N2:>6W"&J-88'5W9^XGTT!XU9WN>LOS;_YI$) M!:&1-^G\MZ,=PHUC;/1-$$+C'V83A!`_,)L at A/CA/9L(;HX>@3 at 0&GEX;//+ M>S8A)/A^.+HQX;'-+^_9A%IRUPC$@=#(PV.;7]ZS2<#BNT<@#H1&'A[;_/*> M3/^>Q7IK=VXU4/&D?(GRX0/?XDCI4,JZ%D$SMK8X/Y MU*?L9R)SLW7%\%/6=__'/[&9F`LDFB\$HP4J(F(!'?K\>L:=845HJXAUPO4+/ M at I[@%:%04"K04_A5P3O!5K"@%D6Y"I["]6K:J]`K2E4LK>"=X>2"!TDC!(4@ M*9'=[$8R,\G.[X])-IO-9K.!2!CR>CY\Y)%L9K[SG>_BSCO?[W?FJ]BV+0#. ME__]W_^MK:V]^NJK,S(R,C(R5%7M[1H!0"]X_?77"PH*A at T;=NY%>981@[=^[4=7W$ MB!%Y>7D>#W]1`. at K3IX\Z>286VZY1=?U'BF3*`/TCJJJJD.'#@4"@=ZN"`"< M/WZ_?_CPX3W5'^, at R@```!>C9QL``+ at 8408``+ at 8408``+ at 8408``+ at 8408` M`+ at 8408``+ at 8408``+ at 8408``+ at 8408``+ at 8408``+ at 8408``+ at 8408``+ at 8 M408``+ at 8408``+ at 8408``+ at 8408``+ at 8408``+ at 8408``+ at 8408``+ at 8408` M`+ at 8408``+ at 8408``+ at 8408``+ at 8408``+ at 8408``+ at 8408``+ at 8408``+ at 8 M408``+ at 8408``+ at 8408``+ at 8408``+ at 8408``+ at 8408``+ at 8408``+A86F]7 M`.BC/OSPPX,'#P8"@=ZN"`"GMZ@#`^6/; M=DU-C6$8M]QRBZ[K/5(F4>8B$"Y_?LFR;<=%1%1_[@!IJ`TTB/@GK=UX3X'6 MVY7K-K-B_:PENT<]OGEAD?LJGYKMV[=?>>65:6EI2 at P1(=8`N. at YJ2,4"ITX M<6+BQ(D]4B8#3*YW^G>KEV\[+N*_;N[R);.^[IXM5Q^/A[PH`%SU%42*1B*[KGW[Z:555U;!APWJ at 3#X] M7>[8YEGS2FO%/^'QC?,2=F.$*WZS\?G2W96UEDC&X%%?G39WQDV7:2(B9MGR M:2OV#9BT>$K#JUMW5P8L$7_AA%D+)VN_V;CYS7W'&T3-'3EY[M(9)9G=W#AZ M7&=+-;=PW%T+9]UTA18M9\K#=\F.K3O>/=[@E+-DUDV7:<Z% MB[>LOLDJV[QNXXY]QUN&SD9-GG7?U&+WCIQMW[Y]Z-"A'H\G+2U-TS1-TU15 M]7J]=,D`Z"-LVVYN;@X&@P6A')'3LJ3T MN$CNR.N&:K45^_9M6SWON+5Q^;@!K9O4;EO]3.ZH23-F:>6OEKY;N6/UO!V2 M4?C5*;/&'7OCQ3L]H^<,&7N;:=W;]UV8,?JY5<4/#/9/V[6TMQ75S_S;H,ZG]^O4C MR@#H4R*12"0224M+ZZG['H at R[F8V'&D0$?$7^1/]^O3>C:7'109/6;MN1H$F M$BY;>\^*-_=MW%PQ)F8F2N%]CR\?-T#DJ[D5,U8>L,0_8?G*>46:F$5'WEVR MN^'`[N-F25&W-FYH.>Y=Z]9-O4(3F9P[:U[INQO?.';]U-R6MV[EN`$B M&2&5=\?NUX M?D6C3+]^_71=5U4U.ET&`"YZMFW;MNWQ]-CC8'BNS,4A<3^%>6QWA8@,OFU" MR[29S.+;KLL0:3CPNV-M6^46%SE])5KN%1DBHA:-&:J)B&@90_TB8@;"W=RX MY;BYHXK]9C@<#HHI1S)R+TL0T0::AL2GECNJ`)5I+9T MWJREZU_=>RR<:".W<4:7'*JJ>CP><@R`OL/YXTU5U9XJD%X9=],RAF:(!*3V M6$"DP_P1L^&T)2(9_HRV[0=DB#0T!"PSNI4Z(/K/276V:0U&:L>$E-+&+<>M MW;9D^K;8G1L:HG$EIIR6_4Q3$LF\?O'CO7'C3 M@(3;NH73*^/,^27$`.B#>O:CCRCC_AWI2^^6+KO^)OKUET_:OGU[IWW*R*M?Y30'P. at S^K!3S\&F-RN M8/*T0A&I+5VY_G?'6L.)>;IB;_EIT8:.*5)%CO]FQV'G-^'R5]]M$,D8>=/G M.N]$NV),D8@$*@*7%15'%145I-"9DG&9*B)FX'3T7)QO, at MNFK%TR5BW(/X`@`]B%X9U[OLMF6+#]RW>G?MFZOGO;G.GSM`&DX'&BP9.G?SNMNN MGS5MZ,(7CY0NG%<^:FCFZ0/[CC2(.G+6M,_YZ7,#KI]UU]"%+Q[9.&_>[ZXK MND(S:X]5'*@M>G3SLN(N=QU9[)?C at 7T;USU_K.B*HG'%^Y;>]X967%PTV&\> M?_?-!I'<42/=/;X$`.A)1)F+P(";EJR_XKJM6TMW[SL2J*UUGKXR9G)1AHA6 M,/71M1D;UY?NKMQ7*Y(Q>-2D:7-GW'39YUTEK6#JXVL';-SXRNX#[^ZN%%%S MAUXW85QN"J-:6L%=R^ZJ?7SKOG>WO?BN?\*H4=>-*MZWNWSWCGTBHN:.G'#7 M?1T&T@``?1B/R`/.JY=>>NFZZZ[KW[]_1D9&1D9&#\[A!P!W>>FEE^Z\\\YS M+X>Y,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6( M,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@`` MP,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6( M,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@`` MP,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6( M,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@`` MP,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6( M,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@`` MP,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6( M,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@`` MP,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,@``P,6(,L!YY??[ MFYN;>[L6`-#+3IX\Z??[>Z0HH at QP7A44%'SRR2>]70L`Z&7[]^\?/GQXCQ1% ME`'.JVNNN28<#M?5U44B$=NV;=ON[1H!P/FV?_]^TS2'#1O6(Z4I?)("YYEA M&#MW[M1U?<2($7EY>1X/?U$`Z"M.GCSIY)A;;KE%U_4>*9,H`_2.JJJJ0X<. M!0*!WJX(`)P_?K]_^/#A/=4?XR#*````%Z-G&P``N!A1!@``N!A1!@``N!A1 M!@``N!A1!@``N!A1!@``N!A1!@``N!A1!@``N!A1!@``N!A1!@``N!A1!@`` MN!A1!@``N!A1!@``N!A1!@``N!A1!@``N!A1!@``N!A1!@``N!A1!@``N!A1 M!@``N!A1!@``N!A1!@``N!A1!@``N!A1!@``N!A1!@``N!A1!@``N!A1!@`` MN!A1!@``N!A1!@``N!A1!@``N!A1!@``N!A1!@``N!A1!@``N!A1!@``N!A1 M!@``N%A:;U<`Z*,^_/##@P8)\M>?7'KCGV5M0TBHOJ'%H^9?->T<069G_^1RY9/6['/&CSK^6H`P/ECVW9-38UA&+?<GSSPJ*S+P2) M[-RY\\HKKTQ+2U-BB`BQ!L!%S[;M(4.&A$*AG3MW3IPXL4?*),JXWNG?K5Z^ M[;B(_[JYRY?<5J")B(0/[WWW=%'!N400\]@;>QGZ^!Q4557INN[DF+2T-&\K MC\=#%RF`BYZB*)%(1-?U3S_]M*JJ:MBP8>=>)E'&[8Z]^N(^2\0_85EKCA&1 MS(+KQSG?G=Z[>>,K>\N/'`]8(JI_Z/53[YL[N2"S=6!(&[/TOMP=FW?L.]X@ M&4/'W#5O[FU%F7)L\WWWE1ZQ1$3>7#+U39'"Q5M6WY0IX<-OO+AQZ^X#M0TB MJK]PS(PE"\<-:#FD6?'*HRM+WSW2(*J_<-RL)?-NNBQY!?JJ0X<.#1TZU,DQ MFJ9IFJ:JJM?KI4L&0!]AVW9S),A`Y6;ZW5D1RQTWN9!CH=/G> MXU(TZJO7#[`.[]U=N7OC,G7HYH7%+1LW[%ZY,O>Z*=/F9AQ[HW3'[F>6G)3G M5]_F'S=K:>ZKJY]YMT$=.6O)E,$9`PHRQ3R\>=G"TB,B&4-'73?`K#U<4='0 M=ICC+ZY^,6/PR.NN,RO>K:SG] M^O4CR@#H4R*12"0224M+ZZG['H at R[F8V'&D0$?$7^1-O,."VU:6WM6X\3IVQ MY,V&?7N/F<4%K1L,G?OXLML&B,BX8IFU9$?EUM**EM1D1K^(B'_"H^OG%6>*G/S-??<\<^3(&P=.3[YL M0)(*]-DL(Q*-,OWZ]=-U7575Z'09`+CHV;9MV[;'TV./@R'*7!R2Y at +S]+$C MAX\=JSU6<U#_F`E%SJC1@"NNR)`C#0W'&D0&=%V!OLCC\:2U4E6U!_]_!H`+G_.7 MFZJJ/54 at 4<;=M(RA&2(!J3T6$$DP`25<\?@RYW6=$HOXC4[GCC<,<`8AY^\=$7#P3447/7;GEUZXL;5T[.C=^D MX5 at TN)BGCP6D-91H<9%$RQB at BDA#;4-\"I(F(&3CME:E=]^8Z?^X`:3@=:+!DZ-S-ZXJ*2,*M?7?; MBR]NW7W:U(KN6?OXK#&%?O/(@7W[#M1J16-&#>CJ-J2N*P``P#EA#::^BK63 M>LE++[UTW777]>_?/R,C(R,CHP?G\`.`N[STTDMWWGGGN9=#KPP``'`QH at P` M`'`QH at P``'`Q[F#JJ[22Y:6O]G8E```X5_3*````%R/*````%R/*````%R/* M````%R/*````%R/*````%R/*````%R/*````%R/*````%R/*`.>5W^]O;F[N M[5H`0"\[>?*DW^_OD:*(,L!Y55!0\,DGG_1V+0"@E^W?OW_X\.$]4A11!CBO MKKGFFG`X7%=7%XE$;-NV;;NW:P0`Y]O^_?M-TQPV;%B/E*;P20J<9X9A[-RY M4]?U$2-&Y.7E>3S\10&@KSAY\J238VZYY19=UWND3*(,T#NJJJH.'3H4"`1Z MNR(`S(V42 M98#S;?OV[5=>>65:6IH20T2(-0`N>D[J"(5")TZKU>NF0`]!&V;3)`H`[A/(!!0%,7K]6J: MEIZ>WJ]?/Z(,@#XE$HE$(I&TM+2>NN^!*`.<;]$HTZ]?/UW7556-3I M;=NV;7L\/?8X&*(,<+YY/)ZT5JJJ]N#_SP!PX7/^4`^?W^YN;FWJX%`/2RDR=/^OW^'BF**`.<5P4%!9]\\DEOUP(`>MG^_?N' M#Q_>(T4198#SZIIKK at F'PW5U=9%(Q+9MV[9[NT8`<+[MW[_?-,UAPX;U2&D* MGZ3`>688QLZ=.W5='S%B1%Y>GL?#7Q0`^HJ3)T\Z.>:66V[1=;U'RB3*`+VC MJJKJT*%#@4"@MRL"`.>/W^\?/GQX3_7'.(@R``#`Q>C9!@``+D:4`0``+D:4 M`0``+D:4`0``+D:4`0``+D:4`0``+D:4`0``+D:4`0``+D:4`0``+D:4`0`` M+D:4`0``+D:4`0``+D:4`0``+D:4`0``+I;6VQ4`D*J#Y8=ZNPJX"(TH'M[; M50#.";TR`-!WV;;=VU4`SA6],H!K-&D1):*DJYJ(Z&E:[*],RQ01PS1%1-,:8F(:;167G=JDFKYEFF)B-5H.3^JZ9J( MJ!U.I%V5C)9&;FEAO>L63ER.94GK6R:M[Y2>M&6<]G1V;-E+525I>T9;!G`O MH at S@&LUIXHG8S6FV/R,[O7U2,4RC/EPO7EM$;*^=G9FM)E'"], MPPH'PDIK![9B*YG^!"<2RS",P.E at Q+8C=L0_(*463ER.:09"H>;6QHEXQ._S M)8^>AF75A\.VW=:@=IHG*S,S20#R>.B;A^L190`WB7C$]HCML>,OQHIHIF9: MAHB(8MM*APU$1,066].U1M/93.S67HHN>$0U-;.I]<]W141)84=%T73=-)M; MBE"4!+LHHIEJM+^G&X6WLCVB-6EGF at T1L3UV@I81T33--*(=%8JD>-8M6RN6 MKC493=$?%4ET(K%5$EO3-:/1$!';[L:QXLM11#.T,ZV-8RL2Z;)E/(IF:493 M4TPA2N*6C^Y!E('[\8\8``"X&%$&``"X&%$&``"X&%$&``"X&%$&``"X&%$& M``"X&%$&``"X&%$&``"X&%$&``"X&%$&``"X&%$&``"X&%$&``"X&%$&`!)[ MX$>/B,@/-S_5VQ4!D`Q1!KBH;/C7ET3DT?4_[NV*N(\37";-FNY\?>!'CWQ0 M>>CK\^_J[7H!Z()BVW9OUP%`2 at X>K&SV1$3$GY&5KNIQO_W'9U>+R`>5AW1= M&S:D0$1^\)W%'0L)!(.&83C?^[.S=3V^G(1"X7K+LJ(_9F;Z-%7K=0V!"T%:;U<` M0*J\35[%HXA(.-A at J5;'#>J#0><"_,O?_OIOOO97H6`X02'B36O]'S\<;##U M!.4DXI'FMD[<<+!!5K_-JMSXI(U='#(O+QR>/#KASJ?*WZZ(BSP80Q MXY[^Q3]_]QO?=G97]2[.W:-XO9XTZ5X+)SPUCS<2;4()!\-65RVCB'B:V[T2 M#C:8G;]9H4"8*`.W(\H`;N)IO>I;K;T=<:)7W]K`IYUM$WM=[VR;Q/O%2''' MV'TZWR5^I+L[M7+V[^*,E*XJ7Q\,2FOKQ7YU.-$P>C:I5"_:R-T]ESB>]HV3 MVJ&5N%>2[74V_?)&^=);[ZZ8_6KI]#P1D5#94XN7;BZK$RF\_Y4MT_//HL3> M%'IGSJTKAKSPZM*BL^\_.R?&.PN^?*_YY%L;;O`EW:QBY>0[RF:TMCIB,%<& M0-_UDU]L_,DO-GY0>:@V4%?^QX,BDIG>7T0NS;[DC-%XQFB\-/N22[,OZ:>G MUP8^_')2?F_7IOLT/5/3?+HN(D;%FBE3 M-E7W=HT<%U1E+G#TR@"N86J6)^))5S41B9O]\*--3XE(;:`N]L6,K'YQ)1B& M*2*&:8B(KNDBHGGVL*)RS&=-ZNE<71-%1$]:FARWBR\[4$T69^E#(CIG<87O2?#Y?\@MVNS.RC$!#?9/=)")- M:=Z.+6,89B at 8LEO'46R)K-OZG(A\4'E(6G-&U4='SAB-7[YVM(B\]=*K/UBW MRODJ(O_ZQ,8E/_R!')4_!3^M#7SZXZW/_N`[B[6D448SC$`@V&PW-=M>O__L MI_VJIAD(A9H\+"6Q?7+=JQ97STXT MIF+4O/;TJN>V[3D:%BUGR.C9:U9.R=RJ.UH5%,H?=VC9G\HHR4Z1RZK5/ MB^1,>_G51;%#3D;%FJESJA=MFE*V:M76,F.\C6/&>?3FLB(G*J;-.JE9O>/AJ6S,*;9\\>VV$J4Z+*.&UB5K^V9M73I7M. MF)(Y9/R"E0]/*6H[8,*:]`5$&H=S5>ZX340BJJ8Z6<<6 M.R*)RXEC>VS55,VFEON>1+%MI>L=;45473/,)A&Q14E8'UNQ-3/-M(RVEQ1; MVA?^P(\>>>S[#SE?.QXEXK'5)O6SYD81B7 at B'5O&%EO55*.U5\;),4Y/C/.* MDV-$)-=_B7.(V*^6865E9SM;.ATS"4^D794DHFIJXYE&V[8C=DHMG+@FJV6V/J);9V-36T1)1G#>B\RCC.9#-`T5J2N^=OJIZ]/R5+XS-UVK* M-J]:=?<NJ*\>-JB#2L+M;KJ\FI?IBXBHHFA%4Y_M&"%S9H M`WWZAK<*UTR]8]>4MB at 5QPR7K9E373CMP1<>+!PT2!>I*5U\]ZKJL0]N6#XZ MIV[74XN6W6T.?&5YB2]I38R*I^;,V6R.O__)Y26^T('2IY>NJ!0I:7>D at 9,Z M5L80$3GZW.*G1\]>M&'^(#FQ?=7B58MS1KZRJ$A/5I.^@"@#7)P27OA=:MZR M11^?/.$\]^7S3-*UJS8 M6A:Z8:S%E[_M```@`$E$051/HDEF]$`QRIY^JBQGVLLK9Q;I(I*?OW*#43WY MZ35[)JU.,/[Q at M/+BK6142*BF]H^8U>-'UI4_LJ5M4E).L)GT!TWX!N,#')X\[TW*[Y"0> MYVMG$N:8SD+2/\Q8("+.Y%]I?0(-NC;PAFDE4K;UG5,B(J'RTCU2,FWT0#&J M=Y6%<\9.S&_KQ,D;.W&(6;ZKVNBTK':,ZM?WA'/&3RGL?`#%"-545QRH#HD8 MH;;1FYR2_&AFT7V#,B5<$TKQF*TEC!T_J/6HSHGJHXOK'(C+UNS.'#2GH.";U["\V24[=. MTBM+RZ3XP1L&BACAFI!DYOMBN38!+_-LJ9 M5)3*H!5C3&=!'SEM?,[=6]^N&9M?6F:6+'=FS63F^>1`=<@0B5[.0\[E/=5R M,W-\4EE3)Q(7`4Z]MO3N5=43GWQEPPT#I?5!+#UT+B)MR2%:#5T&37KAA1GM MQL7T at 7K2FCB5CYWH:QBQ;7$VDM2D;V"`"7"]V.M]=`9K+]>IY\2&CS^\MR?) MEL^\\%,1J0W4.>-'G66.V&??23/[8DLV[7]ICAI)I=I4>UDO'Y6;Y!F1*J;AOT,4-UIOARXB*$GG=K2>:) MU[=7Q(V?&"?>+C>'3)MY0TO",4^4WTO!L*M1-[RDY%RPE5OEYY;I5)4I,^@B@#7`QBK_=.3\-Y$+O^XME=W1]: M^]CC_[S^F9]M?N9GFY-L%@T?SJ/J$A[KA9=>DM;%!U)QUIDO>9Q"G/PITX8< M?7K%VS)Z6NOM-'K)_$4E=5OO7;II5T5U=<4[I4OG/'%TY/P%)3[)&SNE,+Q] MU9IMY=4U-=5EV]:LVB,E4TKBQU]\)?,7C*S;.F?Q4Z^55U17E+VV9=-K-2)Z MSL@\.?%V68TA(J?*MBQ=OJ?KU37:R2G.DQ.[MI=5U]34G(K+$!U[./22^0M& M5C]Q]Z)-KY655Y27[=JV:?G2315&\IKX1L^?-J1RS;)-9:<,D5#%ME6KWDY8 MS6252;DF?011!KA(Q'8V+)OWO<_[<$Z>F/K=F<[7#RH/39HUW5E0.L58XVQ6 M=?2PDS^2IYFH)$DB>FM2BC'EK#/?YS'&E,IL95?*&S^]4$0KF5+L?4J7KBZ^?\/J M20EFDN1-V;#EX?'FZRONOF/J'7-6;:\TG5=7/CP^M&;REZ^]]H8[UAP8O?+A MDNY-CO&-OO_^T;+UWJF3)\]YKC(^"70L*V_*AA<>OCEU M)R_/O2P8#&9G9XO(&=,HOGK$8]]_R#2M^F!#./29B&B:FI6=D>GK'UNL4VUG M/.B,T?@W7_NKN;?/T#3-Y_-E9F9V/+6H4<5_'GT&C&&9IQN":Y][1IQ4]-&1 M:",XVYB&61\(A4,-(O+L+S;%-=1/5ZY-?NZ6884#X1]N?BKU'0W#")P.AH(A M/5W/]F=G97?=PDZ"*?_C08^M;-NXQ9D/9)AFH#X4;&A9$S1=T[)]ONS,9$L_ MFI85#(=##9]%7]%4-3LSTY?1O[-=/![/N:S=G8+J39.F;BJ.?58>T,/HE0'Z M"N=Z^>--SYYC.8\\N5I$G%NCAPTIB'X-!H-5'QTY_DG-6__YATFSIC^T=M7J M%Y[LLC0G?#@C1^?2,=/Q8<=N>;).M'>JGZ;7!NJX\L_:#RT/VK?G#_JA_,6_[]E<_^^.PNF1^?/"XBSJW1O__Y M;T1DYTN_C"Z^:!B-NJY5'3W\0>6A9U_9^.PK*:W"N*_\OT5DW;\\G\K&"8=X MXAYVW%-^N#G!^E8])9IC1*3JHR.&T2 at BO_SMKS^/8YU?QJGJBO)W2E;WJHR/]]/2W_O,/#Z]][,<_ M_4F/'_=\.;%UT1UWW[NF8N3\#2L3S78!>@Y1!G"WSN[$CIU&.F_9(HFYN\?) M&)6T3S-GUR&1X at U< MW_G&S+C#)??`CQ[YP;I53GJ+NX7[K#D)9M*LZ4Z(B:YG&;>9831V*VA>>/(7 ME+[WWGOOE*Z967QV-P4;[RRX]MHY[W3_,6_F)]_Z]BO*7?^Q]D_.CW^:^9U7 ME+O^X[&:9+M\_=NO*'>]]NR?NB at YI"%_='W+0V\_J#SD7(F= M(:&.E\SNWEI<]=$1YQ*;I.?CZB$%T>^=![$\N>69S at K\UW7/2_MXD3#Z."G- MV2SVX2X/__ at Q:7V63"I=,M'G]J8H-KV=BXX))AIB. at M)R5, at 4J8.O[)_T2#? MY6>YK"=<@"@#7`PZ7 at Z=/AAG.,EYQ8D@'?LD4KE>/K[Q)Q(S7R1)ST?'8:,N MTU)L1TYL3(GM78Z1?1ZZ6(3!@S[O?_M<>Y7OXIV)9 at ZL.) M2XL5-U]DZ;S[.]NK8\]';>#31M.(A",=-VXT+8E9%D!:USER"H\[:.QFT:&Q MN"Z9CA4S+--66IXZ,6?*C,=_^N2EV92!>TY: M2MYB9I,E7N4G/_NIB'Q0>][(0I6L[(\;,7+9I2[!,Q*M9, MG5.]:-.4LE6KMI89XYU;M4^5;5JU./>V9?[.QRU\<-#WUI7\;./+%'UFV_\XJ:[OY`?K<^;^Q;^LN;M8$14_>8; MBY^](W^X)F)^\O6YO_]5_R&_N2?]V4U__-4I_R^?^>K7,SK9&-U'E`%<0XDH MSE4M6!_2U4X_YZ-/BG-^/&,T]M/3+\V^I/#J(A'9NNZG\QY:%+UD.G_ZKUS_ MQ'?OO*?+"L1>B8/UG4YB^.Z=]ZSZR6HYVBXM!4/UFI'X<_J>OYVQYOFV>"$B MM8%/H^4GGZ32L4LF0<4\$HGI@(XFK7WE_SUAS+CHN?_DI>>_>^<]\QY:M/Z1 M-1]4'OK"98,Z._IW[[PGR>F+B'@\XO5(S/C4QR>/#[MR:.PFT2&S&[\TVBE3 M1#JV6VW at 4Z7U^V!]2$]A040[TBZX!$+UNMKI7H'Z^BQ?MR:S#"P9/\3E%QD2X2JGR]6BN>7:B+2$WIO=-758^>O_*%L?E:3=GF M5:ONGF.\\L+T?!$QPV5KYE073GOPA0<+!PW2Q:AX:LZ;X^Y]<7N(+'2A] M>NF*2I&29#5I?O]G;_WYKT,BZG7%EUYN?;;WPV!`O$DKG\(N#76/K?K]AE-R MV:AK=R7*,2*A[ZT_D#WHTMM'->_=]^G;;[W[K;SLO;=FM16N^FZ_\9+T$S6; MWWKO^J#WT,(O7.[L%SQZVVK1LWTW#_=?KG:U,;J#*`.XBMUR73-,4T0V_MMF MB1F"<7))M)?"23`?U=:,*O[SRC]6Y/HOF?6W,PS3_+/"X?7!8%POB%- at ZI)O MW[%CQDZZ2^SVSEG\Y*6VN[);>UQR8G=Q^I_BNF2<$TQP`*7=3]'>G1V[WY at P M9MR\AQ;]6>'P#RH/?>_1!T7$^5H;J'.&Y*[,S1.1/P4_C1XEE;;:^/,7I7U/ M3&SWV*79EV2F]W="C(A$J]WE5)[NODU=[F5+MY^2FE-RPZ`GWBD[(<7Y8E1O MWQ,JF3\_]$3IZR<6%>6+4?UZN5FX:*1/Q"A[^JFRG&DOKYQ9I(M(?O[*#4;U MY*?7[)GTU&@1$5,F/K5R9K[3)11ZY[FM1P?->.5AYZF_1<6%6O6$%0>2U2/P M\0._#HGH]SUTZ]IA3E9K=LH]^UVLP+/KWG[P(\D>_G]WSRTB$24=%43D>C?V7%#,,Z#2>*&DW+] MESSVS+\\\=/UNI9XZF-MX-.LS(S.CFM:5L<7DVSOB!T,$I%T3=>T^`\'PV-DYN?Y+ZH/!V,Z;CETRNJ[&]4"8IB4BIM%RL=)T;?Z= M]ZS\R>IH.3MVO_&%RP9';R9RND\^/GE\\.5YTCKT\_O_VI.9WC\:/I*?N]%Z MK(ZW<,<.)SGN__MYR=LMRNF/Z>P=;#FTTYXQ[Y>NJB*BJ9WNU=C];*3GCR_) MW+JK_-3,_($G7M]55SA[[-A0Z=.E[]0LR,\[4586'C*M9*"(4;VK+)PS?F)^ MV_!5WMB)0YYX;E>U,5H3D9RQXP>U_LZHV77`S!G?]H(,+)DT1))%F<83'^\5 MD4%7+QP6?<>3=\ETN8NY8]/;OSH4D4'#=BV^NO.Q'OWK7[W4Z:VY?)`O6T+! MSSX+B/B=P@=>-B&[.=#0+))^_56JG/ILQT>-K5%&_];$EAT;DVR/ M2,G.RNKLN&:BJUV2[1.7[_-I>OP%U33-4"CD$?G.[3-^]%S;&%,_/;TV4*<^;\:WLS.SXJ.,888"(:6YI5O&TRP^OR^N\\.)+W'= M)U5'#SMMN'#:G.]^X^]_\HN?.K_]?W,7J1U.));1:*Q\]L?2ODLF;CAIQ<(' MDC56>W;K5W^6+_D`DVE:P7!846*&TQ1/=F:FUGD`&N#I_LT?>O[X$FWQKLK0 MI/"N777YTTOR\LVQ at Y[8OJ=F^LWENTX,NJ$D1T0D7!.2S'Q?[$0<7XY/PG4A MD1P1T7)B)NF$Z^(W]N4D?QI-XV=64$3Z9R0:`SJ[78Q?'1(1D6"H^C/Y8J7W;PU`JB==)"C-;86?JOKSN56Q6P<^:V[;4?6VJTFRC=$-1!G`36Q%;(_8 MBMW9)2UZR8Q[?EWK_K;6R8Y)KI%*^]$99P#HX;6/=>LQ=(HH'0^AB)B::B4: M6W&ZEV)CF;.[TVD1'4J3F*QC>^R.+:/88FB::40[*A3%EL>^_]"\98MB9Z5$ MA^0RT_N'&S_+3.]_QFC,]5_RC_<]&`Z$FQJ;YO_-MT5$U57%3G`B[=BV).J2 M<3J6).X=24'+H*(B=M*W24041=$MS6QJBGU)E&05]IQ%E!%?X?AB>6)7=77^ MMA.#IHS.$S'&C\[9NJVL>M#KE9DEBYR.F,P\GQRH#ADQBTJ'G,`BTF%MQLP< MGU36Q&9FPS`2+4<=E=Y?S18)?M80$$DQS72UBWK[/3=\?>_N:>4GO[7^PT-+ MK\KOK)S$A:=GBP2SAVR]YPLQ-WY[_8/21>)G5B7=&-W&S=C`Q>;+UXZ.3L+X MG*3^-)INW;T<=YMT;(]+Q\N_DW4<9[%2059V=NRS:J)#2C)X_ MMB2S;M?VZK8UG6MVE1Z-_KX=/>^&0NW$GK)3T5="E:]7MGYOA$Z=.A6_-'3Z MH"]\441._'%M56L",AL#(B*J7Q61YNH./1R=[]+R^['#+_W6/5^ZO;\8A_[[ M6Z_5-THWI`_ZPO4B$@Q\,O#2L2,N;_GOJDN^Z$\P[-7%QD8HU,5*V&B'*`.X M5=QS?J//)LGU7[)LWO=Z]LG]2V9]5U)XD%V-;G^ZKE\Q?5%*W]=ZEFW955%=7O%.Z=,X3 M1T?.7U#B2]#9XAL]?]J0RC7+-I6=,D1"%=M6K7J[-6[4E,Z<,.'>UT_%[>+_ MPMKQ_46,=8_\YOJ5N[^^\K7\N3N7'VT6S??UJSPBQK.;]CWVVJ%_/6QUO4O[ M8I^])^\RD7=?_GW\KY+SYZW]VVR1X/<>^(^Q:_=^YR>[)_R_;>GWOKLKX62D M)!L;%6NF?N4KMRXMZ_Z#COLLH at S@8G'S7F_\TN?8'_/`W'LEYGF['U0>=*Z^ M";:,R5C.Q?C>Z7.[+'_N[3,DT1/\NKRWS^C!:O2<06-'YX@,&M^29$3TPHG%FDCA^)AU"O(F/;GEX9O# MI4OOF#KUCL7/U90\^/)3SAU*\>-+(GK1@@U/3M.V+9CPY6NOG;3T]4&+5D_, MT41$C%!U6`:-+^XP=<;[Q3N_MN>.*V[.;G[WT,E?'6I(OVKPA&ROB#;AGB_= M=Y4N'QY]\.4#R_<9*>S2CK_DVG^]417Y[(>K]^UJ2+U-O,,G?O7@/06W#HKL MW7=LP[LG]WZ6_O6O#,E//+C7^<:ZGN/3Q)>9PGWW:,%<&<#=8D;GI6S7>>YY/_\>=G__+?SO6$T5AT]/&Q(P0,_>J3C5;\^&#QC&B*2 MZ[_D.U-GI5A^9[TMA7?#<\ M]NB'VU;'OB(B$ZDZ$!HT=G9^H M&MKUMUZ_Z]8.+_N_L/;A+ZR-_CA]Z*8N=KG\W_]Y:FRQ8V?_M3V[X]'B-I/T M8==_\F+L"][A8T;M&#.JRQV3;2SY,[>\,[/#JTB"*`/T.6>]SO.\Z3,>KJUU MOO]3\%-G/:;"*Z\2$2?01!_2'U'LJJ.'SV)H*?96Y%0NYQ?N$$QWQ"W1X+ at X M3JT'A$[4#1H[/[^WJX$+&%$&<*6$%[_4G?5?_RL6+OGN\@=C'Q9<&ZB;^MV9 MAF%.FC5=1)QEALZ8AG,E3KU+)J$DE_-HS1?.GAO\S,73"IRW,G:1A.BI?>_O MOQMLZ'I-B8MY?_\\_NN:*RP<[CXR[-/L2 M5?&(2&/C&5W7(HHM(I_4GJPZ>CC7?\GBN^\]B_K$36&.'9=Y[/L/G3&,Z+*+ M%VR_Q??N^HXDFO?3F=BU)LY]KC30UQ!E`!=+OCY1ZKH[6>2I%8\Y4V6=1:V' M#2DX8S1^4GLR&`@,&U(@9WLEGGO[#">I_,W7_JJS*^_Y"S M^-%9^'_S[L_,S.QRL]CP=&&*NR'+6;IRTJSIVS9NB=;\@\I#NJY%'VI\=H\# M!OHXH at S@&MZF9EM1S.9&TZLOF[?P'U:MB%U;<<'?W>W\'6\8AJ$U2KC3%8\[ MCF6$PO7)#VV8C9%(Q/F^T6A45=6V(UU6V##/V$J3B!A64Z/IL<--';=I-(V( M1&)^;-1,U0YW7;B(+)NWT#0:3TZYB1UJ4KG5G2TCI%6F(RY;)Y M"R7F[3!-0[%;3LD-VIQ7NI_?7]23+`P`N M0)0!7,-C*Q&Q1208#IBJWME36$2D/E3?Q3I!(M+:E[/@[^ZN#W4]@S at 2DUV" MH6`JY8M'(JV7U6`@F-X_\:*&=OO+7?RA193VP248"B1IS].!TT59PY.7"5S at B#*`FWA:EA84PS1GWW[' MZF!0CLI'M37.*[%;)I]I$>T&F'W['6,1%?>[M`WEO"]B#VULZAYEWLY-YT!KL8=3("+ M+9X][XS1Z-RTG,KVLV^_XXQAQ"XYA,_;XMGS).F-V4[?V.S;[SA_=0(N+D09 MP-U>7/UTM]9=^L&"[T7O<^;R>7YL>'2UDS at OS;XD>J>2\_@<)X;R1@#G0K%M M>AK at +.WG,_>_GW_[5'1&[\TNCH-\ZO>C'*1!2[N*BXMXX.]`BB M#.`:_U-Y0+'M?JHN(FG>=M,_FYH-:9T2XIJ(Z%J_ M+H\;6WCR\CL>RVQJ$A$M+4T2K7,95W+JA<>5<,8R1"1AR[14PV at YA*9K"6O2 M&]RYHW-5LBG5;8,,\47'+:-)1%0]+2LK4^N0`$S+K`_5FS%11M.T+%^6IJ8:-0S+##341T\\ M0'U9OK.K(7"!X`XFP$UL3\M_<<\"411%TPS3,D1$%%M$Z>QA(9JF-;9>'<6. M+RD=%\>A:DV5\)B**[57$TW$715'2-;W);+OT>L2C M=%[Y!#R*UJ2=:39$Q/;8"5I&%$,US<;60]@>Q>Y&^1[Q6)K5T-AR,[;']BAV M at A.)H^FZT6B**"FV<&**HJMF8S3G*8K=5F:3JK MPQJ&T:@9$DY>'WFN))3+SSJ MC-6VMG;"EHD]9>G.63O,,U;LCUJ_+E8%CSUB=X\5YRR:/;;-6^K02]705K@)P3I at K`P``7(PH`P``7(PH M`P``7(P[F`#7B&BV8GMT51<1O?WD5LLRI'6*J#,S5%43S#8U&AM%Q#1,$=%T M343T]*ZGD3J%FV;+U%I-TSHKO]U>ABDBAFF)B*ZI(J+J\1-RXTI.O?`HPS)% MQ+`,$4G8,F:C(2*6V3(3UCGKCC5)?A9.BZ6X>[214V_AQ.68IG1H=EU+>FC3 M%!'+:IOVJZIJ\KVJ6UGS7+EZ4E MO,5)UX/!8'2J?W9V=O)+H\.RTL/AD%=I*=RK>#(S?Q:(HBB:IIF6(2*BV"+Q&T1IFM9HM-Z9;'>Z M6;O"/8IJ:F93:]^)(J)TO:.B>`R]R32=)YIX%/%TW$51%%,SK)A>&45$$:4; M3SKQ*%J3=J;9$!';8R=H&5$,33/;[D]6E-3.NJ5X\5B:U=38U/*C[5'L!"<2 M1U,UXS-#(JFV<&**HJMF8[1Q%,7NJF44CT>W++.I.?8E49)5V.-AF@%=(LT_*((B*F82I>;\+-XGBEK7`1,2U335.[W-&K>"S+5!1; M1"S+5+6LCKMX%:]E68K2]HIEF:K:=>%M9R1>TS`56Q$1P[02M(S':UFFM![" M-$W%HZ1>OL?C,4TKNKME6FEZ%XWF-+*B**9A>KV>U(\57X[B-4TK^N>F:9H> MI8O2O.(QS'8+,)F6I:4EJW"S-+.<)-R.-9@``("+,<`$``!EN5F)-/=V=2Y.ML MK@,`=,I\?U_3>_]IUYV*5'_87'W$- at RI.]7;E;I(Y0Q4=-V;/]23?Y62,S#M MVK_0OCBJM^L$=(TH`^#"=>9G6YK+WV\J^T^[YGAOUZ5O4?(&IY7\A;?XB_UN MG][;=0&Z0)0!<"%J#@:,G_]KTZ[?-I?O[^VZ]%W>XO^;-O9K^C>_Y7[(W6GI*FI_W?F]W9=@$YQ!Q.`"\Z9G[U, MCKE`V#7'S5^][L60&)$&0`7D*9C'UN_W=';M4`"UF]W M-!W[N+=K`21`E`%P`6EZOXRAI0N377.\Z?VRWJX%D`!1!L`%I&G?>[U=!72* M=P<7)J(,@`M(\[&/>KL*Z!3O#BY,1!D`%Y!(U1][NPKH%.\.+DQ$&0`7$M97 MNI#Q[N""1)0!```N1I0!```NQAI,`/HRGW?RO?WN^*NTX9C_]EK_H2+_-3V^-3U>S*_ MK,<6:I_ZL.F]WQK//&E5F\Y1HMLTK[VU_H7#<950KGTLZY^G>$3D^*;ZKS_: M;/K2?KC+-R%+3FVM_^;V]%^]K&5U5O__#=_XUU:HAQH#<"=Z90#T69KWOI>R M_G&FVI)C1$3W#/VB=N>R]")?]TNK;S[^8?/Q8Y%Z409>I4Z8D_EOSVAY\1MY M[YSIU>)>&YCV]Q,[_2PVQ0X9G1^3%`/0*P. at S_+=U.^.:T1$CFP*SWO:<>WAK^^.F**B"@W/.)[9II7ORG]*X/-E]L_\6_@ M7Z5?^WC#.S$1).]KZ>T[==HQ__.SOQSYF?-]T;*L?YOI%<-:.#K\%B$&:$&O M#("^*J?`HXN(-+^TR:HQ1<2N.]STVG.?_=/F9O.<"K;?V][DW.N3UVYDR#[R M)Y$L]>]O4=I>T[S?G),F$CE2?TZ'!/HPH at R`OBIT/"(B(MYOSE3SXT=]SH52 M=$O:0!&I;_[#L=C7[8I?6X8H7YJM10_G^Z(^]0J1#ZT__*D'*P#T*409`'U5 MW>\:?WY,1&3XS,Q??9#][R]E+/E66M[99IK!W\CXYY_[_N7GOI^]E?W23*_4 M-_W\'SY[I_TPD/$[XP_U(E?I=XYP7E!NF*-EB?S/5K/F7,X$Z-.(,@#ZK%#3 M/WWS_[=W/R%REG<`QW\S[^S,ZKIC1'/)KM`(2U+!N"SL1H at KQ"8DM%)/`?.' MH.E!S,%Z4#R8>FB\Z2%:B'HQ*=@4NN!!D#9L:"%@6JN4-!Y2D6B at B9=$@C,T MV9F=G?&P*B;9C7\BON_3_7Q.R_`R^QO>RY?W>=[W;>Z;GFM$1)17KJWNV#OX MY[\/[ME0_CX]L[RR9K2R9K2R>K at 4$5$KW3I4OG+W<*OSA^EN1+;IXSF98XWX(1>X8&F1,@#-[GMOM)[;W?SY]M;YB(C*@Y/E:/7F;X*N7G%[ M46W^FDUOL:W!S8\Z;SYW<>I<1)37;:U<<6&F?:HU=2JBUK?]X>JNK5E$]_#! M3O/ZMAG#TB9E`+[4_&AV?L]*=7FIVNA]VHJ(6#&9?3U'!G^:W181T?OX7._J M;_A*JQ414;OZV7;M[N&#G8A8_>C`YGK$J?;4R1]H>EBBI`RP9-U1W3\U\-1# M?7<-E2(B!LN;'K]A341$[_3Q;KO9F7JG%Q'U!V[<\U!V:S4B8L5D;>\S?;6( M.#/[E\43Y"[47$V\]>?/O- at 77U;//>^N:]7S]D;NK92^]?GB!# M6V_ZTV2O52L-+L^&YB_&G&L__^I"CZ at YWWGM:'=\8SE:LZ\?L>$7KI.4`9:J M3][XWQ/U_BV_J-QU9U:/B. at USLP=>VOFJW!P*5J] MTPL?`'Q[I5[O6JN]`#^F"W>/Y#T"UW++OS_,>P2XDKTR`$#"I`P`D#`I`P`D M3,H```F3,@!`PJ0,4"#ED55YC\"BG!V*2]Y3 MP`*D#%`L_8_].N\16(#S0F%)&:!8JA-KJ]MVYCT%EZENVUF=6)OW%+`PKY,$ MBJCQR+:Y?[V;]Q1$1&1CX_4#A_*>`A;EJ at Q01`/[]MLT4P39V/C`OOUY3P'7 M(F6`(LIN7E8_<,A*4[ZJVW;6#QS*;EZ6]R!P+1:8@$*;_><_+KW\DL6F'UDV M-G[#8X_W3=R3]R#PS:0,D("Y,_^=_=MT^Z]'>LU&]\,/\A[G_U-Y9%5IL%Z] M?T/?^HV9^ZY)AY0!`!)FKPP`D#`I`P`D3,H```F3,@!`PJ0,`)`P*0,`)$S* M```)DS(`0,*D#`"0,"D#`"1,R@``"9,R`$#"I`P`D#`I`P`D3,H```F3,@!` MPJ0,`)`P*0,`)$S*```)DS(`0,*D#`"0,"D#`"1,R@``"9,R`$#"I`P`D#`I M`P`D3,H```F3,@!`PJ0,`)`P*0,`)$S*```)DS(`0,*D#`"0,"D#`"1,R@`` M"9,R`$#"I`P`D#`I`P`D3,H```F3,@!`PCX'W-O?JC9^`G4`````245.1*Y" "8((` ` end From bernhard at schenkenfelder.co.at Fri Sep 26 15:08:27 2014 From: bernhard at schenkenfelder.co.at (Bernhard Schenkenfelder) Date: Fri, 26 Sep 2014 15:08:27 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__An_error_occurred_while_trying_?= =?utf-8?q?to_call_any_action?= References: Message-ID: Dear Anja: First, I added @ignorevalidation $myObject to the docheader of showAction to get rid of the error message. Then, I added public function initializeAction() { $args = $this->request->getArgument('myObject'); var_dump($args); } to the same controller. Surprisingly, the output is string(2) "24", which represents the -- correct -- uid of the table. Now how can I compare $myObject to the Model and @validate annotations if I don't get to see the object? Many thanks, Bernhard From steffen.gebert at typo3.org Fri Sep 26 18:12:35 2014 From: steffen.gebert at typo3.org (Steffen Gebert) Date: Fri, 26 Sep 2014 18:12:35 +0200 Subject: [TYPO3-english] Default Repository for Extension Manager In-Reply-To: References: Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi Daniel, we're about to move the TER to a CDN, so you would have no fun with whitelisting all CDN IPs. Kind regards Steffen - -- Steffen Gebert TYPO3 Server Administration Team Member TYPO3 .... inspiring people to share! Get involved: http://typo3.org My wish list: https://www.amazon.de/registry/wishlist/922E3JYSQ7CV/ref=cm_wl_sb_v?sort=priority On 25/09/14 22:33, Daniel Davis wrote: > I've installed Typo3 in a somewhat secure environment. I can ask > for firewall rules so that the server can contact typo3.org, and > repositories.typo3.org, etc., but I am nervous about asking for all > mirrors. Is there any way I can download mirrors.xml.gz and put it > in the right place and then statically configure which mirror(s) to > use for downloading extensions, and checking for updates? > > Thanks, > -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.22 (Darwin) Comment: GPGTools - http://gpgtools.org iQEcBAEBAgAGBQJUJZByAAoJEIskG/rSlyw4/cMH/jwxCjRQJGfst6dB0J3vyZoS K0qhoVl4tU8wXhCR5HKVEdjO8/6cM3azGdRcEE5+pNt6kKRixM/gjljRfbTzLpL/ MTfmU4q0JGjBuahh0oLxug1NPdocGCj7PMZd5Ucy4YSF3IPSyKRMCEG7/Miksf1y E9kDsDg+PtSE/Fw4u843XSq8iIDO4hFhniTZOYkHhzYB4l5w+9qs0+pe77YZLNpU jXFIys1yqCk1dto/68wtB32HWZkuXvrL63mdCE+8ZhVYXCNRpqrjG/qHkfuCMAFW z8YFh+kARQDQ0E6CD8HsmCThpByVN6EHk+m5d44LWMq6H6a6z2OnV5nJBvvNdWg= =dFcr -----END PGP SIGNATURE----- From buenosbarrios83 at gmail.com Fri Sep 26 19:22:56 2014 From: buenosbarrios83 at gmail.com (Louis LaPointe) Date: Fri, 26 Sep 2014 19:22:56 +0200 Subject: [TYPO3-english] =?utf-8?q?_Is_it_possible_to_make_a_blog_style_pa?= =?utf-8?q?ge_thru_typo3?= Message-ID: Hello I have a site already through here, and was wanting to create a separate page for my 2 blogs. Is this option for a blog format available to create thru typoe. sorry if this is a no brainer I am new to this software and am just learning it . thank you From info at bednarik.org Fri Sep 26 21:22:10 2014 From: info at bednarik.org (Jan Bednarik) Date: Fri, 26 Sep 2014 21:22:10 +0200 Subject: [TYPO3-english] Is it possible to make a blog style page thru typo3 In-Reply-To: References: Message-ID: Hi, I'd recommend to use tx_news (news) extension together with Disqus for comments. Jan Dne 26. 9. 2014 19:22, Louis LaPointe napsal(a): > Hello I have a site already through here, and was wanting to create a > separate page for my 2 blogs. Is this option for a blog format available > to create thru typoe. sorry if this is a no brainer I am new to this > software and am just learning it . thank you From snake.byte at gmx.net Sun Sep 28 10:38:55 2014 From: snake.byte at gmx.net (Max Mustermann) Date: Sun, 28 Sep 2014 10:38:55 +0200 Subject: [TYPO3-english] =?utf-8?q?_Typo3_6=2E2=2E5_-_Distributions_not_wo?= =?utf-8?q?rking?= Message-ID: Hi, I'm trying to setup a simple demo page on xampp. Installation went fine but unfortunately no distribution seems to work. The extension manager says: installation completed but no page tree or template is created. The error log has filled with lots of errors: Core: Error handler (BE): PHP Warning: array_merge(): Argument #1 is not an array in D:\xampp\htdocs\Typo3\typo3\sysext\core\Classes\DataHandling\DataHandler.php line 1451 Attempt to insert record on page '[root-level]' (0) where this table, sys_file_reference, is not allowed (msg#1.1.11) Attempt to insert record on page '[root-level]' (0) where this table, tt_content, is not allowed (msg#1.1.11) Attempt to modify record '[No title]' (sys_template:1) without permission. Or non-existing page. (msg#1.2.2) I'm having lots of experience with other CMS but never had this difficulties setting up a simple demo page. What am i doing wrong? From philipp.gampe at typo3.org Sun Sep 28 22:24:22 2014 From: philipp.gampe at typo3.org (Philipp Gampe) Date: Sun, 28 Sep 2014 22:24:22 +0200 Subject: [TYPO3-english] Typo3 6.2.5 - Distributions not working References: Message-ID: Hi Max Mustermann, is this really your name? Max Mustermann wrote: > I'm having lots of experience with other CMS but never had this > difficulties setting up a simple demo page. What am i doing wrong? What distribution did you try to install? What is your PHP version? Best regards -- Philipp Gampe ? PGP-Key 0AD96065 ? TYPO3 UG Bonn/K?ln Documentation ? Active contributor TYPO3 CMS TYPO3 .... inspiring people to share! From mahersoua at gmail.com Mon Sep 29 01:56:04 2014 From: mahersoua at gmail.com (Maher Soua) Date: Mon, 29 Sep 2014 01:56:04 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__Add_Images_to_Content=2C_Displa?= =?utf-8?q?y_=22Error_=3A_403=22_Forbidden?= References: Message-ID: Thanks Xavier Perseguers, I will see that , in fact I am trying to change root directory and I found a small problem that if change the name, the site didn't work, I found in one of your bugs declared in forge, that the problem is due to the Cache file, I have to delete anything in this folder and update site, it works for me, know I am trying fix with .htaccess, may be it is a problem with permission, if it is I will post the solution. But can you please find a solution to update root file directorty name without deleting files under Cache? From mahersoua at gmail.com Mon Sep 29 02:33:07 2014 From: mahersoua at gmail.com (Maher Soua) Date: Mon, 29 Sep 2014 02:33:07 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__Add_Images_to_Content=2C_Displa?= =?utf-8?q?y_=22Error_=3A_403=22_Forbidden?= References: Message-ID: Hi , I am sorry nothing change neither with .htaccess and file permission, I just want to know what typo3 does when I upload a images and import it to the text area, does it copy it in specific folder or does it write the name of image in a file or in database? please can you please give me answer for that it may help me to find what does it block this action. For information , I can upload and import image on local server (xampp) everything works well. From snake.byte at gmx.net Mon Sep 29 09:37:29 2014 From: snake.byte at gmx.net (Max Mustermann) Date: Mon, 29 Sep 2014 09:37:29 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__Typo3_6=2E2=2E5_-_Distributions?= =?utf-8?q?_not_working?= References: Message-ID: Hello Philipp Gampe, thanks for your reply. No, Max is not my real name. Currently I'm using PHP v5.5.6, MySQL is running at v5.6.14 on a XAMPP for Windows, when trying to install the official "Typo3 Introduction Package". I've tried the other 5 distributions as well, without success. Kind regards Max Quote: Philipp Gampe (pgampe) wrote on Sun, 28 September 2014 22:24 ---------------------------------------------------- > Hi Max Mustermann, > > is this really your name? > > Max Mustermann wrote: > > > I'm having lots of experience with other CMS but never had this > > difficulties setting up a simple demo page. What am i doing wrong? > > What distribution did you try to install? > What is your PHP version? > > Best regards > -- > Philipp Gampe PGP-Key 0AD96065 TYPO3 UG Bonn/K?ln > Documentation Active contributor TYPO3 CMS > TYPO3 .... inspiring people to share! ---------------------------------------------------- From elaurent.liste at laposte.net Mon Sep 29 12:19:10 2014 From: elaurent.liste at laposte.net (LAURENT) Date: Mon, 29 Sep 2014 12:19:10 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__Is_it_possible_to_make_a_blog_s?= =?utf-8?q?tyle_page_thru_typo3?= References: Message-ID: HIgh, As far as i know, the disqus extension is outdated. Other extensions seems to be better : comments, ecomments, pw_comments, toctoc_comments.. Chtypoteur From hoba87 at googlemail.com Mon Sep 29 13:47:09 2014 From: hoba87 at googlemail.com (Holger B) Date: Mon, 29 Sep 2014 13:47:09 +0200 Subject: [TYPO3-english] =?utf-8?q?_Typo3_6=2E2=2E4_Bootstrap_background_c?= =?utf-8?q?olor?= Message-ID: Hi, I've installed Typo3 6.2.4 with the bootstrap_package extension and tried to change the layout, i.e. the background color. 1.) Using the Template Tools - Constant Editor (drop down menu) and changing values in the BOOTSTRAP PACKAGE: STYLING section seems to crash Typo3, because it gives you a completely empty website then. Undoing the changes makes everything working fine again. 2.) Changing the background color in the bootstrap.min.css has no effect. So, my question: How can I change the background color of my website? Is 1.) a bug that should be reported? From philipp.gampe at typo3.org Mon Sep 29 13:47:50 2014 From: philipp.gampe at typo3.org (Philipp Gampe) Date: Mon, 29 Sep 2014 13:47:50 +0200 Subject: [TYPO3-english] Typo3 6.2.5 - Distributions not working References: Message-ID: Hi Max, Max Mustermann wrote: > Currently I'm using PHP v5.5.6, MySQL is running at v5.6.14 on a XAMPP for > Windows, when trying to install the official "Typo3 Introduction Package". > I've tried the other 5 distributions as well, without success. And your install tool tells you that your installation is setup correctly? No errors or warnings? Best regards -- Philipp Gampe ? PGP-Key 0AD96065 ? TYPO3 UG Bonn/K?ln Documentation ? Active contributor TYPO3 CMS TYPO3 .... inspiring people to share! From snake.byte at gmx.net Mon Sep 29 14:26:49 2014 From: snake.byte at gmx.net (Max Mustermann) Date: Mon, 29 Sep 2014 14:26:49 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__Re=3A__Typo3_6=2E2=2E5_-_Distri?= =?utf-8?q?butions_not_working?= References: Message-ID: Hello Philip Gampe, yes, the installation of Typo3 itself passed without errors. Though configuring "ThreadStackSize 8388608" in httpd.conf of my xampp installation still results in a warning at the first step within the Install-Tool. KR Max Quote: Philipp Gampe (pgampe) wrote on Mon, 29 September 2014 13:47 ---------------------------------------------------- > Hi Max, > > Max Mustermann wrote: > > > Currently I'm using PHP v5.5.6, MySQL is running at v5.6.14 on a XAMPP for > > Windows, when trying to install the official "Typo3 Introduction Package". > > I've tried the other 5 distributions as well, without success. > > And your install tool tells you that your installation is setup correctly? > No errors or warnings? > > Best regards > -- > Philipp Gampe PGP-Key 0AD96065 TYPO3 UG Bonn/K?ln > Documentation Active contributor TYPO3 CMS > TYPO3 .... inspiring people to share! ---------------------------------------------------- From baden32 at yahoo.fr Mon Sep 29 15:17:47 2014 From: baden32 at yahoo.fr (joel zimmerli) Date: Mon, 29 Sep 2014 14:17:47 +0100 Subject: [TYPO3-english] Template TS (config and setup) not copied for NON admin user? Message-ID: Hello, For specific pages on my Typo3 6.2 website, I, as "admin" included TS/constant info in +ext of basic Template definition. Normal (non admin) users can edit these pages, they can also copy/paste them. Unfortunately, when they copy/paste a page all the content elements are copied but not the TS/Config part. I already searched in the "Access right" of these users but I cannot find what I should enable in order to get the TS/config part copied as well. Thank you in advance for your help. Bads From armin at v.ieweg.de Mon Sep 29 15:32:42 2014 From: armin at v.ieweg.de (Armin Ruediger Vieweg) Date: Mon, 29 Sep 2014 15:32:42 +0200 Subject: [TYPO3-english] =?utf-8?q?_Order_of_extensions_get_changed_in_Pac?= =?utf-8?q?kageStates=2Ephp?= Message-ID: Hi, I have a strange behaviour of the PackageStates.php which contains the installed extensions and their order. The DCE extension requires that DBAL is loaded before, if DBAL is installed. Otherwise DCE will throw an exception. I realized this behaviour just because of this exception. First the PackageStates is perfect. It starts with extensions like core, felogin, ..., dbal, ..., dce. When I clear the system cache and the general cache in backend, I get the exception from DCE in frontend, now. When I check the PackageStates and compare it with original one, I see that the order of extensions has changed massive. Custom and third party extensions are now the first extensions in PackageStates.php, including DCE. And extensions like core or dbal appear later. We have the server twice. A development machine and a test machine. On development everything works fine. This error appears just on the test machine (after clearing caches). First I thought that TYPO3 has no write rights for PackagesStates on dev, but this was not true. It has. I have no clue where to start to investigate further to figure out why the order of installed extensions changes. Thanks for any hint! From armin at v.ieweg.de Mon Sep 29 15:46:09 2014 From: armin at v.ieweg.de (Armin Ruediger Vieweg) Date: Mon, 29 Sep 2014 15:46:09 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_Order_of_extensions_get_changed_?= =?utf-8?q?in_PackageStates=2Ephp?= References: Message-ID: I've seen another fact: The order of the extensions in extension manager is the same as in the rewritten PackageStates.php file. From armin at v.ieweg.de Mon Sep 29 15:56:48 2014 From: armin at v.ieweg.de (Armin Ruediger Vieweg) Date: Mon, 29 Sep 2014 15:56:48 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_Order_of_extensions_get_changed_?= =?utf-8?q?in_PackageStates=2Ephp?= References: Message-ID: Okay, the PackageStates.php becomes overwritten when the cached files PackageManager_* and PackageObjects_* (in /typo3temp/Cache/Code/cache_core) are not existing and become generated. From philipp.gampe at typo3.org Mon Sep 29 16:06:38 2014 From: philipp.gampe at typo3.org (Philipp Gampe) Date: Mon, 29 Sep 2014 16:06:38 +0200 Subject: [TYPO3-english] Typo3 6.2.5 - Distributions not working References: Message-ID: Hi Max, Max Mustermann wrote: > yes, the installation of Typo3 itself passed without errors. Though > configuring "ThreadStackSize 8388608" in httpd.conf of my xampp > installation still results in a warning at the first step within the > Install-Tool. And there you found your problem and your solution ;) Best regards -- Philipp Gampe ? PGP-Key 0AD96065 ? TYPO3 UG Bonn/K?ln Documentation ? Active contributor TYPO3 CMS TYPO3 .... inspiring people to share! From armin at v.ieweg.de Mon Sep 29 16:17:09 2014 From: armin at v.ieweg.de (Armin Ruediger Vieweg) Date: Mon, 29 Sep 2014 16:17:09 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_Order_of_extensions_get_changed_?= =?utf-8?q?in_PackageStates=2Ephp?= References: Message-ID: Hm... when I uninstall an extension (doesn't matter which one) the PackageStates looks again like expected. And my problem is gone. o.0 From snake.byte at gmx.net Mon Sep 29 16:36:05 2014 From: snake.byte at gmx.net (Max Mustermann) Date: Mon, 29 Sep 2014 16:36:05 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__Re=3A__Typo3_6=2E2=2E5_-_Distri?= =?utf-8?q?butions_not_working?= References: Message-ID: I don't see a solution here. Setting the ThreadStackSize as shown in documentation does not seem to be affecting the installer or the extraced page. So how can a setting that is not recognized by the page and it's setup procedure be the solution? Quote: Max Mustermann (wutbuerger) wrote on Mon, 29 September 2014 14:26 ---------------------------------------------------- > Hello Philip Gampe, > > yes, the installation of Typo3 itself passed without errors. Though configuring "ThreadStackSize 8388608" in httpd.conf of my xampp installation still results in a warning at the first step within the Install-Tool. > > KR > Max > > Quote: Philipp Gampe (pgampe) wrote on Mon, 29 September 2014 13:47 > ---------------------------------------------------- > > Hi Max, > > > > Max Mustermann wrote: > > > > > Currently I'm using PHP v5.5.6, MySQL is running at v5.6.14 on a XAMPP for > > > Windows, when trying to install the official "Typo3 Introduction Package". > > > I've tried the other 5 distributions as well, without success. > > > > And your install tool tells you that your installation is setup correctly? > > No errors or warnings? > > > > Best regards > > -- > > Philipp Gampe PGP-Key 0AD96065 TYPO3 UG Bonn/K?ln > > Documentation Active contributor TYPO3 CMS > > TYPO3 .... inspiring people to share! > ---------------------------------------------------- > > ---------------------------------------------------- From snake.byte at gmx.net Mon Sep 29 17:03:41 2014 From: snake.byte at gmx.net (Max Mustermann) Date: Mon, 29 Sep 2014 17:03:41 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A__Re=3A__Typo3_6=2E2=2E5_-_Distri?= =?utf-8?q?butions_not_working?= References: Message-ID: I just ran into this post: http://forum.typo3.org/index.php/t/205491/? it seems the problem is with windows/xampp/php and the introduction package as it seems to be designed for linux/unix webservers, not windows hosting. From info at bednarik.org Mon Sep 29 21:28:51 2014 From: info at bednarik.org (Jan Bednarik) Date: Mon, 29 Sep 2014 21:28:51 +0200 Subject: [TYPO3-english] Is it possible to make a blog style page thru typo3 In-Reply-To: References: Message-ID: Hi, I mean https://disqus.com/ as in including piece of JS code in news detail. Jan Dne 29. 9. 2014 12:19, LAURENT napsal(a): > HIgh, > > As far as i know, the disqus extension is outdated. Other extensions > seems to be better : comments, ecomments, pw_comments, toctoc_comments.. > > Chtypoteur From superscotty19 at yahoo.com Tue Sep 30 06:48:49 2014 From: superscotty19 at yahoo.com (Scotty C) Date: Mon, 29 Sep 2014 21:48:49 -0700 Subject: [TYPO3-english] Is it possible to make a blog style page thru typo3 In-Reply-To: References: Message-ID: Hi, I've used wec_discussion along with vge_tagcloud with resonable customization and success. That said, it's getting harder and harder for TYPO3 (Enterprise CMS) to compete with WordPress (Blog)! HTH, -Scott. >________________________________ > From: Louis LaPointe >To: typo3-english at lists.typo3.org >Sent: Friday, September 26, 2014 11:22 AM >Subject: [TYPO3-english] Is it possible to make a blog style page thru typo3 > > >Hello I have a site already through here, and was wanting to create a separate page for my 2 blogs. Is this option for a blog format available to create thru typoe. sorry if this is a no brainer I am new to this software and am just learning it . thank you >_______________________________________________ >TYPO3-english mailing list >TYPO3-english at lists.typo3.org >http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english > > > From superscotty19 at yahoo.com Tue Sep 30 06:52:51 2014 From: superscotty19 at yahoo.com (Scotty C) Date: Mon, 29 Sep 2014 21:52:51 -0700 Subject: [TYPO3-english] Rename Tabs of Page Properties Message-ID: Hi everyone, I have a client who has become so amazed by TYPO3's endless customizations that they even want to customize the tab names. So, my question is, is it possible to change the name of the tabs in Page Properties? In particular, they want to hide everything in the "Access" tab except the date picker and then rename the tab to "Schedule". They also want to change "Resources" to "Background". Thanks again, -Scott. From baden32 at yahoo.fr Tue Sep 30 09:39:54 2014 From: baden32 at yahoo.fr (joel zimmerli) Date: Tue, 30 Sep 2014 08:39:54 +0100 Subject: [TYPO3-english] Template TS (config and setup) not copied for NON admin user? Message-ID: Hello, For specific pages on my Typo3 6.2 website, I, as "admin" included TS/constant info in +ext of basic Template definition. Normal (non admin) users can edit these pages, they can also copy/paste them. Unfortunately, when they copy/paste a page all the content elements are copied but not the TS/Config part. I already searched in the "Access right" of these users but I cannot find what I should enable in order to get the TS/config part copied as well. Thank you in advance for your help. Bads From jigal.van.hemert at typo3.org Tue Sep 30 09:42:38 2014 From: jigal.van.hemert at typo3.org (Jigal van Hemert) Date: Tue, 30 Sep 2014 09:42:38 +0200 Subject: [TYPO3-english] Rename Tabs of Page Properties In-Reply-To: References: Message-ID: Hi, On 30-9-2014 6:52, Scotty C wrote: > I have a client who has become so amazed by TYPO3's endless > customizations that they even want to customize the tab names. So, my > question is, is it possible to change the name of the tabs in Page > Properties? In particular, they want to hide everything in the > "Access" tab except the date picker and then rename the tab to > "Schedule". They also want to change "Resources" to "Background". First of all I doubt that it is smart to rename things mainly because the backend won't resemble the situation in tutorials anymore. Also, if you ask for help for an item on the "Background" tab nobody will recognize that. But to answer your questions: - changing labels in TYPO3 CMS: This is all explained in an article by Xavier Perseguers [1]. While it mentions "Translation Files", this also applies to the default, English labels. - hiding fields In TSconfig you can disable fields in the forms [2]. If you're not sure about the name of a field you can found out in the HTML of the backend interface. If you disable all fields in a tab the tab will automatically be hidden. [1] http://xavier.perseguers.ch/en/tutorials/typo3/articles/managing-localization-files.html#c962 [2] http://docs.typo3.org/typo3cms/TSconfigReference/PageTsconfig/TCEform/Index.html#tceform-confobj -- Jigal van Hemert TYPO3 CMS Active Contributor TYPO3 .... inspiring people to share! Get involved: typo3.org From jigal.van.hemert at typo3.org Tue Sep 30 10:31:16 2014 From: jigal.van.hemert at typo3.org (Jigal van Hemert) Date: Tue, 30 Sep 2014 10:31:16 +0200 Subject: [TYPO3-english] Typo3 6.2.5 - Distributions not working In-Reply-To: References: Message-ID: Hi Not-Max, On 29-9-2014 14:26, Max Mustermann wrote: > yes, the installation of Typo3 itself passed without errors. Though > configuring "ThreadStackSize 8388608" in httpd.conf of my xampp > installation still results in a warning at the first step within the > Install-Tool. It's not possible to detect the setting for ThreadStackSize in PHP. This warning is shown when Windows is detected because if you don't have this setting there will be problems with some Fluid templates which are not easy to debug. The arguments for array_merge must of course either be checked for being an array or cast to an array. PHP5 is around for a very long time, so I don't expect this to be due to using the "old notation" as mentioned in the post you linked. I'll have to rebuild my local 6.2 installation (XAMPP for Windows) one of these days and will try to install the introduction package. As a side note, it's customary in these mailing lists / newsgroups / forums to use our real names. After all, we're all real people in a real world working on real issues. -- Jigal van Hemert TYPO3 CMS Active Contributor TYPO3 .... inspiring people to share! Get involved: typo3.org From patrick.schriner at diemedialen.de Tue Sep 30 11:51:54 2014 From: patrick.schriner at diemedialen.de (Patrick Schriner) Date: Tue, 30 Sep 2014 11:51:54 +0200 Subject: [TYPO3-english] Order of extensions get changed in PackageStates.php References: Message-ID: Hi Armin, looking at DCE's ext_emconf.php I can see that it neither depends on nor suggests "dbal" as a requirement. If I understand the DependencyResolver (e.g. https://github.com/TYPO3/TYPO3.CMS/blob/TYPO3_6-2/typo3/sysext/core/ Classes/Package/DependencyResolver.php) correctly it will try to ensure that any extension in "depends" will be loaded before those you "suggest". Afaik the "old" ExtensionManager was working the same way. If you *need* to have dbal loaded before dce, you might therefore have to add it to the "suggests" section - even if you don't really want to "suggest" using dbal with dce ;D Note: All analysis based on the code only - I haven't tried this! Patrick On Mon, 29 Sep 2014 15:32:42 +0200, Armin Ruediger Vieweg wrote: > Hi, > I have a strange behaviour of the PackageStates.php which contains the > installed extensions and their order. > > The DCE extension requires that DBAL is loaded before, if DBAL is > installed. Otherwise DCE will throw an exception. I realized this > behaviour just because of this exception. > > First the PackageStates is perfect. It starts with extensions like core, > felogin, ..., dbal, ..., dce. > > When I clear the system cache and the general cache in backend, I get > the exception from DCE in frontend, now. When I check the PackageStates > and compare it with original one, I see that the order of extensions has > changed massive. > > Custom and third party extensions are now the first extensions in > PackageStates.php, including DCE. And extensions like core or dbal > appear later. > > We have the server twice. A development machine and a test machine. On > development everything works fine. This error appears just on the test > machine (after clearing caches). First I thought that TYPO3 has no write > rights for PackagesStates on dev, but this was not true. It has. > > I have no clue where to start to investigate further to figure out why > the order of installed extensions changes. > > Thanks for any hint! From jigal.van.hemert at typo3.org Tue Sep 30 12:00:57 2014 From: jigal.van.hemert at typo3.org (Jigal van Hemert) Date: Tue, 30 Sep 2014 12:00:57 +0200 Subject: [TYPO3-english] Template TS (config and setup) not copied for NON admin user? In-Reply-To: References: Message-ID: Hi, On 29-9-2014 15:17, joel zimmerli wrote: > Normal (non admin) users can edit these pages, they can also > copy/paste them. Unfortunately, when they copy/paste a page all the > content elements are copied but not the TS/Config part. Correct. TS templates are not accessible to non-admin users. You could set the affected pages to admin-only in the page properties or in the WEB > Access module. In that case the pages cannot be moved or copied by editors. The TS settings could be applied using conditions which makes moving possible. If an editor copies such a page the condition needs to be adjusted by an admin. -- Jigal van Hemert TYPO3 CMS Active Contributor TYPO3 .... inspiring people to share! Get involved: typo3.org From post at dietantejensen.de Tue Sep 30 12:17:56 2014 From: post at dietantejensen.de (Nils Hodyas) Date: Tue, 30 Sep 2014 12:17:56 +0200 Subject: [TYPO3-english] Template TS (config and setup) not copied for NON admin user? In-Reply-To: References: Message-ID: Hi, that's a tricky one. Only admins have access to templates. You can get around that. That might help you. http://lists.typo3.org/pipermail/typo3-at/2005-July/006431.html But my best bet would be to use conditions: http://docs.typo3.org/typo3cms/TyposcriptReference/Conditions/Reference/Index.html#condition-globalvar but you'll have to look up the globalVar that specifies the owner of the page. Than you can include anything you want for these pages. Better still, don't check for the owners uid but his group, if possible or necessary. Or find a different way to filter out the pages you want. Hth, Nils Am 30.09.2014 um 09:39 schrieb joel zimmerli: > Hello, > For specific pages on my Typo3 6.2 website, I, as "admin" included TS/constant info in +ext of basic Template definition. > > Normal (non admin) users can edit these pages, they can also copy/paste them. Unfortunately, when they copy/paste a page all the content elements are copied but not the TS/Config part. > > I already searched in the "Access right" of these users but I cannot find what I should enable in order to get the TS/config part copied as well. > > Thank you in advance for your help. > Bads > _______________________________________________ > TYPO3-english mailing list > TYPO3-english at lists.typo3.org > http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english -- Nils Hodyas - Webdesign von die Tante Jensen ? Gro?herzog-Friedrich-Stra?e 117 ? 66121 Saarbr?cken ? (0681) 925 63 43 ? 0160 318 183 7 ? http://dietantejensen.de ? DE 2757 96974 ? Registergericht Saarbr?cken From kraftb at think-open.at Tue Sep 30 13:05:38 2014 From: kraftb at think-open.at (Bernhard Kraft) Date: Tue, 30 Sep 2014 13:05:38 +0200 Subject: [TYPO3-english] Crowdfunding of kb_nescefe 6.2 upgrade Message-ID: Hello, We are looking for supporters for the upgrade of the TYPO3 extension "kb_nescefe" to TYPO3 6.2. https://www.startnext.de/kbnescefe-typo3-62-upgrade Right now the project is in the starting phase and needs 25 fans to get to the funding phase. The "kb_nescefe" extension more or less is the precursor to the gridelements extension but has some unique features. The extension was first uploaded in 2007 and nowadays needs an upgrade to 6.2/extbase and some bugfixes. Please support the project financially or at least become a fan at the above linkes crowdfunding site. greetings and many thanks, Bernhard Kraft From mehdiguermazi at yahoo.com Tue Sep 30 16:37:10 2014 From: mehdiguermazi at yahoo.com (Mehdi Guermazi) Date: Tue, 30 Sep 2014 16:37:10 +0200 Subject: [TYPO3-english] =?utf-8?q?_Re=3A_Restrict_FE_Users_to_1_login_at_?= =?utf-8?q?a_time?= References: Message-ID: Someone got an answer for this? From bogus@does.not.exist.com Mon Sep 15 21:25:05 2014 From: bogus@does.not.exist.com () Date: Mon, 15 Sep 2014 19:25:05 -0000 Subject: No subject Message-ID: ################################################ Sets alternative webmounts for use in the Element Browser. You separate page ids by a comma. Non-existing page ids are ignored. If you insert a non-integer it will evaluate to "0" (zero) and the root of the page tree is mounted. Effective in workspaces too. These alternative webmounts replace configured DB mount points. ################################################ HTH Andreas From bogus@does.not.exist.com Mon Sep 15 21:25:05 2014 From: bogus@does.not.exist.com () Date: Mon, 15 Sep 2014 19:25:05 -0000 Subject: No subject Message-ID: Did you try to check the "root page" parameter, and to set up the domain record on the same page. Also in your TS main record, did you set up the "config.baseUrl" ?