Re: [TYPO3-english] No one here anymore?

2020-02-13 Thread Christian Tauscher
Am 17.01.2019 um 15:23 schrieb Tony Lush: >>> since this NGs seems to be rarely visited, where are you all gone for > communication about TYPO3? It became quite silent... sad. > Most communications is on typo3.slack.com. I tryed slack last year, but gave up after 2 weeks. slack ist too confus

Re: [TYPO3-english] TYPO3 8.7 and Flexform

2020-02-13 Thread Christian Tauscher
Am 15.01.2019 um 13:40 schrieb je...@donslund.net: > Hi > > I can seem to find a working tutorial on how to use Flexform in TYPO3 8.7. > ... I stuck at the same point but found the solution: In TCA/Overrides/tx_my_domainmodel_mytable.php: $GLOBALS['TCA']['tt_content']['types']['list']['subtypes_

[TYPO3-english] widget.paginate works not as expected

2020-02-13 Thread Christian Tauscher
Hello! In my extention-Template I use ... in my controller: $images = $this->myRepository->getAll(); ...assign to images so the widget renders as Expected, mutliple pages. 10 Images per Page, page numbers as expected. if I change to this: Controller: $images = $this->myRepository->

Re: [TYPO3-english] fluid: Objects lost in for ech

2018-08-08 Thread Christian Tauscher
Am 08.08.2018 um 06:42 schrieb Christian Platt: did not read too carefully: dont know if this is important: > in the listView /multipleView: do you use an array as a result of database or > an array given from database? // get one record, image render OK $this->view->assign('singleObject', $t

Re: [TYPO3-english] fluid: Objects lost in for ech

2018-08-08 Thread Christian Tauscher
Am 08.08.2018 um 06:42 schrieb Christian Platt: > in the listView /multipleView: do you use an array as a result of database or an array given from database? > so what does {item.image} in listView say? if i make {theMultipleData} it gives me an Array. The loop i self works correct, the items

[TYPO3-english] fluid: Objects lost in for ech

2018-08-07 Thread Christian Tauscher
Hi dear developers. Even it became a quiet place here I give it a try: I habe an extbase Extention written. in my view i do this: //the model is a name, uid, wahtever... and a >imagegetOneSpecialRecordFromDB(); $moreObjects = $this->getAllFromDB(); $this->view->assign('theSingleData',$singl

[TYPO3-english] mod.web_layout.tt_content.preview.*

2018-03-18 Thread Christian Tauscher
Hello! Ich have found this in https://docs.typo3.org/typo3cms/TSconfigReference/PageTsconfig/Mod/Index.html#web-page-mod-web-layout an tried this width TYPO3 V8.7, with no real success :-( I can't see why!? in TSetup (on page) I put mod.web_layout.tt_content.preview.text = EXT:templates/Resour

Re: [TYPO3-english] SOLVED: main.1510594617.css ??

2017-12-03 Thread Christian Tauscher
> Can you look at the Install-Tool and check what is set on > "[FE][versionNumberInFilename]"? moved from embed to querystring nobody knows how it changed to embed Christian ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://list

[TYPO3-english] SOLVED: main.1510594617.css ??

2017-11-14 Thread Christian Tauscher
Am 13.11.2017 um 21:23 schrieb Christian Hackl: > ? Is this breaking something for you? of cource! no cs file can be found since the number became a part of the filename. > Can you look at the Install-Tool and check what is set on > "[FE][versionNumberInFilename]"? moved from embed to query

[TYPO3-english] main.1510594617.css ??

2017-11-13 Thread Christian Tauscher
I am really confused... all my css files includes seem to render this way: domain/path/thefile.1510617.css but this should be something like this: domain/path/thefile.css?1510617 what causes this change? last change was installing letsencrypt on my linux machine.. can this cause this change

[TYPO3-english] EXT Programming BE Module

2017-08-08 Thread Christian Tauscher
Hello Again. Yes ist holiday time, so it seems that I talk with me alone - no problem, this helps me to rethink and maybe another will find a inspiring source for future Problems: My backendmodule will display my records - works nice. In the Template I will not show the data, only, but give some

Re: [TYPO3-english] Hooks: processDatamap_preProcessFieldArray()

2017-08-08 Thread Christian Tauscher
Am 08.08.2017 um 13:11 schrieb Christian Tauscher: > // t3_origuid is set? Yes, ist a Copy >if(isset($fieldArray['t3_origuid'])) { > $fieldArray['field1']++; > $fieldArray['filed2']--; >} Ages ago I did use the workspace featu

[TYPO3-english] Hooks: processDatamap_preProcessFieldArray()

2017-08-08 Thread Christian Tauscher
Hello dear Developers I am about porting an Extention from T3-6.2 to T3-7.6+ in the original EXT I have used a Hook in case a record is copied the increase some value: function processDatamap_preProcessFieldArray( &$fieldArray, $table, $id, &$reference ) { // make sure only my table

Re: [TYPO3-english] Extbase use 2rd party repository

2017-08-06 Thread Christian Tauscher
Forgett everthing. This works just fine - really. Ist amazing what extbase does on its own only whith correct DOC-Comments. I should programm quite more to get used to this all. Thank you to the extbase/Fluid Team! This rocks! Christian. ___ TYP

Re: [TYPO3-english] Extbase use 2rd party repository

2017-08-06 Thread Christian Tauscher
After a little odyssee throug namespaces and naming convertions I finally have a valid debug output that will fit my needs. {prg} Extbase Variable Dump: Tmd\Tmdcinema\Domain\Model\Programprototypepersistent info => 'should be Nemesis referencing' movie => Tmd\Tmdmovie\Domain\Model\M

[TYPO3-english] Extbase use 2rd party repository

2017-08-06 Thread Christian Tauscher
Hello Folks, In my extention I have created a record witch uses a relation to an other extention-table. in my ext the UID of the coresponding record is stored. In my View a can get the uid# of this correctly. But how can I tell extbase to resolve the record completely so sthat I can unse e.g. m

[TYPO3-english] EXT:news: cascading search

2017-07-14 Thread Christian Tauscher
Hello my friends, My Newsrecord of EXT:news are categorized AND Tagged. So the user may restict the show list-view by the Category-Menu to the selected category. This works for the Tag-Menu as well. It is possible to combine this, too: this is a nice try, but does not lead me to my goal: I

Re: [TYPO3-english] $GLOBALS['TCA']['tt_content']['palettes']

2017-05-18 Thread Christian Tauscher
Am 17.05.2017 um 16:51 schrieb Christian Tauscher: Works as expected. Why it seemed not to work.. Only the Typo3-Ghosts know... Think ist was a "kind" of cache-delay #-\ Christian. ___ TYPO3-english mailing list TYPO3-english@lists.typo

[TYPO3-english] $GLOBALS['TCA']['tt_content']['palettes']

2017-05-17 Thread Christian Tauscher
Hi there! my goal: remove in tt_content via php the imagecols field an move to a other palette. so I forst remove the fiel in patellte und add it again to an other palette. Caches are cleared (!), even removed with rm *. this is the content of the palette-configuration: imageorient;LLL:EXT

[TYPO3-english] fluid_styled_content and backendlayouts

2017-05-01 Thread Christian Tauscher
Hello my friends! I sucessfully switched over to fluid_styled_content and did a lot of changes I needed in the FE: all transparent and clear and easy. Newxt fcs version may come! Now I wand to change some output in BE. Not the TCA. I'd like to add some unsefull information when the Page-Module re

[TYPO3-english] ###STORAGE_PID###

2017-02-26 Thread Christian Tauscher
Hallo Folks! In TCA ###STORAGE_PID### marker semms to has been removed in V7.4 Some source say this is a bug and will be reverted soon, others say this is not true. I can't use this maker anymore and in recent TCA-description this ist not listed any more. But the page field storage_pid still exi

[TYPO3-english] fluid backend modul and TCA

2016-04-18 Thread Christian Tauscher
Hello I am porting some EXT with some Backendmoules to fluid/Extbase. In piBase Times I have written some handy views to diplay may tables in a intuitive way, so the user does not use the List-Module, but my own listing. e.g. to Edit a record i use this: onclick="'.\TYPO3\CMS\Backend\Utilit

[TYPO3-english] go_maps_ext

2016-02-03 Thread Christian Tauscher
Hello! I have multiple maps on one page. Each in a page of an accordeon. The accordeon is closed by default. If you open the accordeon page the maps are not initialized correctly. What JS Call to use to initialize the map? go_maps_ext uses its own JS Library. My JS abilitys are too weak to u

[TYPO3-english] vhs asset.script and go_maps_ext

2015-12-14 Thread Christian Tauscher
Hello. using fluidpowered typo3 I ran into a problem: including jquery andother JS via v:asset.script I need go_maps_ext, too But the EXT go_maps_ext puts its JS before v:asset does. Putting all maps JS code inside of ... does not help. Is there a way to pass the go_maps JS to v:asset.scrip

[TYPO3-english] Undefined variable: _SERVER

2015-04-06 Thread Christian Tauscher
Hello. On my DEV-Machine a did an umgrade from V6.2.10 to V6.2.11 BE is OK, but teh FE only says: Notice: Undefined variable: _SERVER in /var/www/htdocs/typo3_src-6.2.11/typo3/sysext/core/Classes/Core/SystemEnvironmentBuilder.php on line 332 Unable to determine path to entry script. Do yo

[TYPO3-english] extbase create/update @dontvalidate

2015-03-31 Thread Christian Tauscher
Hallo. In my EXT I have some fields which are not representet directly in the database as there are: image0, image1 and imagecaption0, imagecaption1 This images are NOT FAL images, I use the uploads folder instead. in DB I'd like to have a CSV list. Problem: The Form sends image1, image2 an

[TYPO3-english] Extbase an persinstance

2015-03-21 Thread Christian Tauscher
Hallo. I have written an EXTBASE Extention, now I need access to the tt_address table. I have etablished an extra Plugin and I want to render the List in FE using fluid which comes very handy - But I Cant get this to work. Maybe you can help me and ponit out my mistake, here's the Code: TS

Re: [TYPO3-english] solr 2.8.x

2014-11-18 Thread Christian Tauscher
Am 18.11.2014 um 16:23 schrieb Christian Tauscher: InstallTool: [pageNotFoundOnCHashError] = 0 so this can not be the reason ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] solr 2.8.x

2014-11-18 Thread Christian Tauscher
Hello. May search results work well, but the links to te resulting page work not well: With realURL I always get an "no found" errror. Exept in Firefox. But I still guess its an RealURL problem. No langs, onls tt_news is configured. Is there some known bugs with RealURL and solr. All links

[TYPO3-english] Updating old extention 2

2014-10-10 Thread Christian Tauscher
If the Extention should run with Pre 6.2 and with 6.2+ I tryed the following: if($typo3Version < 6002000) { // DEFAULT initialization of a module [BEGIN] unset($MCONF); require_once('conf.php'); require_once($BACK_PATH.'init.php'); require_once($BACK

Re: [TYPO3-english] Updating old Extention

2014-10-10 Thread Christian Tauscher
Am 09.10.2014 um 12:41 schrieb Stephan Großberndt: > $MCONF['script'] = '_DISPATCH'; That was easy :-) Thank you! Christian. ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] direct_mail

2014-10-07 Thread Christian Tauscher
Hello dear Mailsrs ;-) (typo3 6.2, recent direct_mail, tt_address from TER) In my Project direct_mail works fine exept: All Mass-Sensing is Text only. Don't know what goes wrong, yet. tt_address is missing the "hmtl" flag. I have added the field and did set the flag by default on the DB. This "

[TYPO3-english] Updating old Extention

2014-10-07 Thread Christian Tauscher
Hello. I have Written some EXT/BE-Modules - years ago. This should be updated. The EXT is running "fine" under 6.1 but should run under 6.2 of course. deprecated-Logfile claims Line 3 to be wrong. 1. unset($MCONF); 2. require_once('conf.php'); 3. require_once($BACK_PATH.'init.php'); 4. require_o

Re: [TYPO3-english] flux:field.inline.fal

2014-09-04 Thread Christian Tauscher
Am 04.09.2014 um 11:14 schrieb Christian Tauscher: my mistake. Works a s expected. :-) Christian. ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] flux:field.inline.fal

2014-09-04 Thread Christian Tauscher
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 ___ TYPO3-english mailing list

[TYPO3-english] fluidcontent, vhs: and v:content.resources.fal

2014-09-03 Thread Christian Tauscher
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 (aktu

Re: [TYPO3-english] FlUID and Get Paramater

2014-07-31 Thread Christian Tauscher
Am 30.07.2014 um 17:13 schrieb bernd wilke:> page.10 = FLUIDTEMPLATE > page.10.variable { > mygpvar = TEXT > mygpvar.data = GP:mygetparam > } Not as elegant as fluid itselfe but works! Thankyou Christian ___ TYPO3-english mailing list TYPO3-englis

[TYPO3-english] BackendUtility::getThumbNail

2014-07-31 Thread Christian Tauscher
Good morning. I have writte a backendmodule (up since years). Now I switch over to 6.1/6.2. In mod1 the DB-Content along with the image is shown. The old (4.x) getThumbNail-function call was broken, so I googeled this call: return \TYPO3\CMS\Backend\Utility\BackendUtility::getThumbNail(

[TYPO3-english] FlUID and Get Paramater

2014-07-30 Thread Christian Tauscher
Hallo. I'd like to reakt inside a fluid Template on a Get-Parameter. ... It this possible? Do you know a ViewHelper for this task? Thank you for your help, Christian. ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.

[TYPO3-english] FAL and title // alternative

2014-07-09 Thread Christian Tauscher
Hello. I want to render some images width TYPO3 6.2.3 Here ist a snippet object = IMAGE object { file.import.data = file:current:publicUrl altText.data = file:current:alternative // file:current:title } You see the altText line. What I want: If an altText is given then use

Re: [TYPO3-english] T3 6.2: HMENU, levelmedia: -1, listNum is irnored

2014-06-27 Thread Christian Tauscher
Am 24.06.2014 09:21, schrieb Christian Futterlieb:> Hi Christian > > As of TYPO3 6.2 you can use begin/maxItems for a FILES cObject [1]. > > Regards, Christian > > [1] > http://docs.typo3.org/typo3cms/TyposcriptReference/ContentObjects/Files/Index.html > Aah!! Ja. Thanks :-) !!

[TYPO3-english] T3 6.2: HMENU, levelmedia: -1, listNum is irnored

2014-06-23 Thread Christian Tauscher
Hello. Look at this: lib.mainMenu = HMENU lib.mainMenu.1 = TMENU lib.mainMenu.1 { expAll=1 wrap = | NO.wrapItemAndSub = | NO.before.cObject = FILES NO.before.cObject { references { current = 1 table = pages fieldName = media listNum = 0 }

[TYPO3-english] Extention Builder and relations to tebles

2014-06-22 Thread Christian Tauscher
Hello again. With Extention_builder I'd like to connext a tt_address Record with my Record. I create a Relation, 1:1, and... .. what ist \Fully\Qualified\Classname With EXTbase this would be \{VendorName}\{PackageName}\({CategoryName}\)*{ClassName} http://docs.typo3.org/TYPO3/CoreApiReferenc

Re: [TYPO3-english] TYPO3 6.2, NO.RO =1

2014-06-21 Thread Christian Tauscher
RO function was removed with 6.2 http://forge.typo3.org/issues/55751 ... gna gna gna ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] EXTBASE config.persistence.classes

2014-06-21 Thread Christian Tauscher
Hi again. I have a pi-Base Extention, this big EXT sould be moved over to EXTBASE. Since its really big with lots ob FE/BE Plugins/Modules I would like to first switch the FE using the perstistence Feature. But I cant get it to work: plugin.tx_movie.persistence.classes { Tx_Movie_Domain

[TYPO3-english] TYPO3 6.2, NO.RO =1

2014-06-21 Thread Christian Tauscher
Hallo. On the pages Record I have 2 media Files I wand to generate a Menu, first Image is NO-State, Secound RO/Act state. Here is the TypoScript: lib.mainMenu = HMENU lib.mainMenu.1 = TMENU lib.mainMenu.1 { wrap = | NO.wrapItemAndSub = | NO.beforeImg { import.field = media

Re: [TYPO3-english] f:for inline

2014-04-26 Thread Christian Tauscher
Not easy to read, but this works! Thank You! Christian. > how about you try this: > > > > You'd just need to take care of whitespaces by either putting the whole > on one line or writing a ViewHelper that would remove them. > > Jan > >> I have serveral items. >> Each Item my have one ore more

[TYPO3-english] f:for inline

2014-04-25 Thread Christian Tauscher
Hello my dear Fluid Develpers I have serveral items. Each Item my have one ore more categories. The Categories(uid) shpuld be used as CSS-class I have a ViewHelper: a given integer is returnd as a class name. * * * how do I get this *** inline, so that my classes are r

[TYPO3-english] sys_category

2014-04-14 Thread Christian Tauscher
Hello! With TYPO3 V6.0 the sys category-table was introduced, alog with an API, decumented here: http://wiki.typo3.org/TYPO3_6.0 Since I am not a full time Programmer, I have my difficulties with this kind of docuemntation. MaybeYou know a nice EXT in TER making more or less use of this table a

Re: [TYPO3-english] FLUX, FCE and maxImageWidth

2014-03-04 Thread Christian Tauscher
Am 04.03.2014 09:58, schrieb bernd wilke: > why don't you use in place instead of all > that typoscript objects with registers? 'cause the register variable maxImageWidth has some advange: If the image is as wide as the column, your right (exept f:image renders always jpeg). But if you put a

[TYPO3-english] FLUX, FCE and maxImageWidth

2014-03-03 Thread Christian Tauscher
Hello again. Im building some FCE-Elements. They are very Fixed, but the layout may change throug the layout-field of the CE. Width TemplaVoila I could define in the TemplateObject the maxImageWidth, depending on the Layout field. Width fluid/FLUX I need a helping TypoScript and the v:switch

Re: [TYPO3-english] FLUX: Creating a fixed FCE

2014-03-03 Thread Christian Tauscher
Am 03.03.2014 15:24, schrieb bernd wilke: > what about a static expansion instead of flexible iteration? > > > > > it seems this part is not needed. > > > > > > > > > > Thas was easy... Must have been blind - as usual... #-) Thanks to Jost,

[TYPO3-english] FLUX: Creating a fixed FCE

2014-03-03 Thread Christian Tauscher
Hello dear FLUX users: Width this code i can define content areas for a multicolumn FCE: ... This is flexible. I can Add new "Content Areas" through the section. But this is not what I want. How do I define a simple

[TYPO3-english] ext_tables TCA/ctr/thumbnail = 1

2013-11-28 Thread Christian Tauscher
Good morning, I have writte a little extbase-EXT. In List module I would like to have to associated image file shown as a thumbnail, but my attempt does not show this image in BE/List-Module. ext_tables.php: $TCA['tx_kunst_domain_model_image'] = array( 'ctrl' => array( '

[TYPO3-english] developing FLUID Templates with ECLIPSE

2013-09-16 Thread Christian Tauscher
Hi! For devloping html/php etc. I use the ts-plugin for Eclipse: http://www.dev3.org/index_de.html Unfortuantely this Plugin was not updated since a long time, so it doesnt work on ftp-Sites. BUT: the main point ist (not special on this plugin): The Syntax of FLUID is a mixture of xml and

Re: [TYPO3-english] TypoScrip, FAL and slide

2013-09-02 Thread Christian Tauscher
Am 02.09.2013 14:26, schrieb Viktor Livakivskyi:> Hi, Christian >> 20.file.import.data = levelmedia:-1, slide > > You should use: 20.file.import.data = levelmedia:0 > because you wnat to take image from root level, which is zero. So the icon of the current rootline is shown. You are cole but th

[TYPO3-english] TypoScrip, FAL and slide

2013-09-02 Thread Christian Tauscher
Hallo dear TS-Experts! I want to bild a menu in a select-box, a kind of JSMENU to switch areas of the website. Each option sould contain a image and the pagetitle. As an Example: Please choose your favorite Picture1 Area1 Picture2 Area2 Picture3 Area3 Picture4 Ar

Re: [TYPO3-english] TCA definitions

2013-08-14 Thread Christian Tauscher
Am 14.08.2013 11:46, schrieb Markus Klein: > Did you define l10n_mode too? > If not, the original record will always be copied. > > http://docs.typo3.org/typo3cms/TCAReference/Reference/Columns/Index.html?highlight=l10n_display Ah Ja. Thank you! Christian. ___

[TYPO3-english] TCA definitions

2013-08-14 Thread Christian Tauscher
Hello. I have written some Extention. Its it has multilang support. Easy with Typo3, but is does not work: Here is a part of the TCA definition: 'number' => array( 'l10n_display' => 'defaultAsReadonly', 'config' => array( 'type' => 'input', 'size

[TYPO3-english] Support the CodeSprint for TV/T3 V6.2

2013-06-17 Thread Christian Tauscher
give you notice. Thanks for your help and support and stay tuned! Christian. --- T h e M e d i a D i s t i l l e r y - Medienproduktion - Christian Tauscher Certified TYPO3 Integrator An den Wiesenzäunen 15 Telefon: 07562 / 912487

Re: [TYPO3-english] EXT:sr_feuser_register, template

2013-04-12 Thread Christian Tauscher
Am 09.04.2013 17:49, schrieb Christian Tauscher: Jean-Sébastien Gervais wrote me this: > I think _LOCAL_LANG are TEXT objects, therefore, to use getText >functions {data:field} you need to use .value and insertData=1 And yes, this works, Thank you, Jean-Sébastien Chr

[TYPO3-english] EXT:sr_feuser_register, template

2013-04-09 Thread Christian Tauscher
Hello dear TYPO3 experts! I am getting mad with this Extention and it's templates. The EXT it self is great, does the job very ggod. But if you have customers like mine: Change that centence to this. Good luck in finding this. Its a pain. Usually I take the whole Template and replace it with

[TYPO3-english] html5 typo3 figure/figcaption ieProblem

2013-03-14 Thread Christian Tauscher
This message was postet in the German list bevore, without any response. Maybe you know more about this: If you cconfigure TYPO3 for html5, images are renderd this way: Vorfrühling im Allgäu_Öl Platte_1931_WVZ 153011 doeas not have a fixed with

Re: [TYPO3-english] direct_mail_subscription

2013-03-10 Thread Christian Tauscher
Am 09.03.2013 17:30, schrieb Masod Mohmand: > Have you tried >... > create.required = email, andyourField !! I See. Thank you for your help, Christian. ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-

[TYPO3-english] direct_mail_subscription

2013-03-08 Thread Christian Tauscher
Hi! Has anybody successfully installed EXT:direct_mail_subscription with T3 4.5? I would like to use other required-fields than only first/last_name and email. I extendes the template with the subparts like Ihr Wohnort wird benötigt extended the required-fields and fields list accord

[TYPO3-english] css_styled_content: renderMethod

2013-03-04 Thread Christian Tauscher
Hi There. EXT:css_styled_content With V4.2 of typo3 (cant go further back..) the rendering of images was changed form table-layout to pure css. For this, multiple renderMethods have been introduced. in 4.2: dl, ul, div, default dl in 4.3 - 4.6: dl, ul, div, simple default dl in 4.7: singleNoCap

Re: [TYPO3-english] T3V6.0.0, css_styledContent an with of Images

2013-01-17 Thread Christian Tauscher
Am 17.01.2013 18:38, schrieb Christian Tauscher: I have given you the wrong values: My content with is 955px so in my Constants is styles.content.imgtext.maxW=955 styles.content.imgtext.colSpace = 30 styles.content.imgtext.borderThick = 1 styles.content.imgtext.borderSpace = 2 so far so good

[TYPO3-english] T3V6.0.0, css_styledContent an with of Images

2013-01-17 Thread Christian Tauscher
Hello Folks. I have V6 installation. My content with is 995px so in my Constants is styles.content.imgtext.maxW=955 styles.content.imgtext.colSpace = 30 styles.content.imgtext.borderThick = 1 styles.content.imgtext.borderSpace = 2 so far so good. If I but 3images in a row, there thold be this:

Re: [TYPO3-english] treatIdAsReference

2013-01-09 Thread Christian Tauscher
Am 09.01.2013 16:31, schrieb Jigal van Hemert: >> In my TS I have this script, wich gives me a List of Files (media-field) >> on every Page. > > Maybe the FILES object is something for you? > > http://docs.typo3.org/typo3cms/TyposcriptReference/ContentObjects/Files/Index.html cool, but I miss

[TYPO3-english] treatIdAsReference

2013-01-09 Thread Christian Tauscher
Hallo! In my TS I have this script, wich gives me a List of Files (media-field) on every Page. page.headerData.3 = TEXT page.headerData.3 { data = levelmedia: -1, slide split { token = , cObjNum = |*| 1 |*| 2 1 { 10 = TEXT 10.current = 1 10.wrap = { image : 'upl

Re: [TYPO3-english] T3V6, bug with Images in BE and FE (FAL ?)

2012-12-21 Thread Christian Tauscher
Am 20.12.2012 19:12, schrieb Philipp Gampe: >> What does tis tell me? > > It tells you that there is not file storage with the Uid 1. > > You can see all file storages with the list module on the TYPO3 root. There > should be at least fileadmin with the uid 1. > > Best regards > Yes there wa

[TYPO3-english] T3V6, bug with Images in BE and FE (FAL ?)

2012-12-20 Thread Christian Tauscher
Iam struggling with cetrin pictures. All jpegs, and all of them work on the same machine with TYPO3 4.7 With V6.0.0 strange things happen: IN BE I create a CE Text/Image and set the picture in he new FAL. A Preview is shown. But the FE fils with this lots of Messages. What does tis tell me? S

[TYPO3-english] T3V6, bug with Images in BE and FE (FAL ?)

2012-12-20 Thread Christian Tauscher
___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] TYPO3 CE:download

2012-12-06 Thread Christian Tauscher
Hi there! using the CE:downlod I offer some pdf to downlod in FE. The point ist: What does the Browser do with the file. I personally dont set a target, and everything works as expected. The File is saved to disk, cause in my Browser the MIME types für pdf is set to save. But from on other ma

Re: [TYPO3-english] TYPO3 CMS 6.0 Category

2012-12-06 Thread Christian Tauscher
Am 06.12.2012 16:27, schrieb Loek Hilgersom: >> systemrecord "category" >> You can Create them, delete, edit even watch them in BE, but what the >> heck >> >> What ist the meaning of this? Could't find a place where this kind of >> Record is needed. > Having 1 central category system would so

[TYPO3-english] TYPO3 CMS 6.0 Category

2012-12-06 Thread Christian Tauscher
Hi there. I am sure its a nice feature systemrecord "category" You can Create them, delete, edit even watch them in BE, but what the heck Even the core does not use them What ist the meaning of this? Could't find a place where this kind of Record is needed. Thank you for your hin

[TYPO3-english] T3CMS V6.0 and AdditionalConfiguration.php

2012-12-06 Thread Christian Tauscher
Hi der TYPO3 CMS V6.0 admins. Just fiddling around with all of the new Features. Up to now I had a lot of extra configuration-stuff in localconf.php and extTables.php If I add e.g. $TYPO3_CONF_VARS['MAIL']['defaultMailFromAddress'] = 't...@test.de'; or even (in localconf.php on muli-domain/cut

Re: [TYPO3-english] programming BE: module with fileupload and RTE

2012-11-07 Thread Christian Tauscher
On Wed, 7 Nov 2012 10:21:30 +1300, Richard Davies wrote: Hi Richard, Thank you for your wounderful example. It gave me the right Idea to start my Module. Really inspiring Christian ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http:

[TYPO3-english] programming BE: module with fileupload and RTE

2012-11-06 Thread Christian Tauscher
Dear developers, I'd like to programm a BE module whre I can edit my records (working so far). I fail doing this: * upload a file and stor it in record/uploads/... * use RTE What API calls may I use, can't find a simple example. Thank you for your inspiring help, Christian.

[TYPO3-english] formhandler preprocessor

2012-11-06 Thread Christian Tauscher
Hello! I try to write a preprocessor for EXT:formhandler. The form is OK and the handler is called (debug=1, the call is done). But: the method process() is not called. I know it's calles, because the script should stop caused bay a simple die('test') in the script. does anyone have a idea what

[TYPO3-english] EXT:form redirect

2012-07-20 Thread Christian Tauscher
Good evening. I try using the new form Extention from TYPO3. Wat I am missing: How can I redirect to some page after sucessfully sending the form? At least it would be necessary to change the default message. I found in Ressources/Private/Language/locallang_controller.xlf this part: The form

Re: [TYPO3-english] TSOB: menu Constants as green subst is not shown

2011-03-31 Thread Christian Tauscher
On Thu, 31 Mar 2011 09:42:12 +0200, Steffen Kamper wrote: you're looking for this setting? Exactly. Where can i find this now? Thank you Christian. ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailma

Re: [TYPO3-english] TSOB: menu Constants as green subst is not shown

2011-03-30 Thread Christian Tauscher
Am 30.03.2011 09:41, schrieb Stephan Bernhard: > very strange: in one of my installations (TYPO3 vers. 4.3.3) the whole > menu of "Show Constants" is not shown at all. therefore i cannot choose > to show my constants as green substitute. > > interestingly all installations have the same TYPO3 sou

Re: [TYPO3-english] Newbee

2011-03-26 Thread Christian Tauscher
On Tue, 19 Oct 2010 12:45:29 +0530, Siddhesh wrote: Can anyone plese let me know how to beign with extension development.I am very much confused how to start it.. Check the section about extention manager and kickstarter: http://typo3.org/documentation/videos/wmv-format/ Christian. _

Re: [TYPO3-english] powermail: find the field id

2010-01-26 Thread Christian Tauscher
Peter Russ schrieb: what's about defining your own type? Due to that $this->uid should be yours ;-) Does this help me? after the submit I only may parse the piVars field in the powermail_mail record. There I find a lot of whatEverwasSubmitted Tags, but how can I find the Data I need, sinc

[TYPO3-english] powermail: find the field id

2010-01-26 Thread Christian Tauscher
Hi! What I need: A hidden field with some data unique for every form. This information I do need for some statistics later. What I did: created the new field in the DB-table. added a hidden value to the Forms using PM_FieldHook(). now the value is added to the form in FE as expected. But How