[TYPO3-english] andWhere internal server error

2012-05-17 Thread Katja Lampela
Hi, Any idea why following andWhere gives Internal Server Error (500): andWhere = tx_klfilms_category.UID = 16 AND tx_klfilms_film.year = YEAR(CURDATE()) OR tx_klfilms_film.year = 0 So I need the category 16 and the year field has to this or future year or empty year field. In another page

Re: [TYPO3-english] Split within menu

2012-05-17 Thread Victor Livakovsky
Hi, Jan. You may do that a bit different: 1.NO.stdWrap.override.cObject = COA 1.NO.stdWrap.override.cObject { 10 = IMAGE 10 { params = class=fst file.import = uploads/media/ file.import.field = media file.import.listNum = 0 file.height = 252

Re: [TYPO3-english] andWhere internal server error

2012-05-17 Thread Philipp Gampe
Hi Katja, Katja Lampela wrote: Hi, Any idea why following andWhere gives Internal Server Error (500): andWhere = tx_klfilms_category.UID = 16 AND tx_klfilms_film.year = YEAR(CURDATE()) OR tx_klfilms_film.year = 0 So I need the category 16 and the year field has to this or future year

Re: [TYPO3-english] Split within menu

2012-05-17 Thread Jan Bednarik
Hi, well, the thing is that there can be more than 3, 3rd and more should have the same class as they are shown in a carousel then. I could define e.g. 10, but that's not the right way. Anyway, in the meantime, I've solved it with custom postUserFunc to the media field. Jan Dne 17.5.2012

Re: [TYPO3-english] andWhere internal server error

2012-05-17 Thread Katja Lampela
Hi Philipp, 17.5.2012 13:27, Philipp Gampe kirjoitti: I think you have an SQL error. What does empty year mean? I mean what is stored in the SQL Database for an empty year. 0 regards, Katja ___ TYPO3-english mailing list

Re: [TYPO3-english] andWhere internal server error

2012-05-17 Thread Ralf-Rene Schröder
Am 17.05.2012 09:45, schrieb Katja Lampela: andWhere = tx_klfilms_category.UID = 16 AND tx_klfilms_film.year = YEAR(CURDATE()) OR tx_klfilms_film.year = 0 for this request you will get ALL with year=0 ... indebened of the category i think it must be (beware the Brackets) andWhere =

Re: [TYPO3-english] andWhere internal server error

2012-05-17 Thread Katja Lampela
Hi Ralf-René and THANK YOU! - Katja :) 17.5.2012 16:35, Ralf-Rene Schröder kirjoitti: for this request you will get ALL with year=0 ... indebened of the category i think it must be (beware the Brackets) andWhere = tx_klfilms_category.UID = 16 AND ( tx_klfilms_film.year= YEAR(CURDATE()) OR

[TYPO3-english] Caching Framework questions

2012-05-17 Thread Victor Livakovsky
Hi, list. I've faced a problem, when I need to reuse results of resource-eating processing multiple times with multiple page-loads. Since I don’t want to reinvent the wheel, I decided to try caching framework possibilities.

[TYPO3-english] Cannot add extensions using Typo3 4.6.8, why/how?

2012-05-17 Thread Benoit Montereau
I use to run Typ3 4.4.x and upgraded a first website to 4.6.8. Unfortunately I cannot install any new extensions! Using extensions manager - import, the extensions is loaded (confirmation is displayed) but NOT installed. I just installed locally (xampp on windows, so no privilege problem) and

Re: [TYPO3-english] andWhere internal server error

2012-05-17 Thread Ralf-Rene Schröder
... indebened of the category OHHH my god ... i should realy read my posts before sending my english is bad ... but until now, i didn't know SOOO bad... -- image[FORMAT] - Ralf-René Schröder http://image-format.eu ... Wir geben Ihrem Image das richtige Format http://if-20.com ... YAML

Re: [TYPO3-english] Formhandler and validating generic radio buttons

2012-05-17 Thread Reinhard Führicht
Hi Michael, Am 17.05.2012 16:12, schrieb Michael Lykke: I create the field in step1.html like this: ###master_radio-yesno_question1### Which generates this markup: div class=type-check label for=radio-yesno-question1-yesSome question? /label div input type=radio id=radio-yesno-question1-yes

Re: [TYPO3-english] Cannot add extensions using Typo3 4.6.8, why/how?

2012-05-17 Thread Benoit Montereau
Almost SOLVED! I'm using Firefox 12.0 and it seems to have a few problem with this browser! I already got trouble using the multiple files upload interface (flash) and now there is a problem with extension installation: -the add icon ( with the +) is NOT displayed (ok with Explorer or

[TYPO3-english] extend number of characters in t_news title

2012-05-17 Thread Baber Ahmed
Good Afternoon all, I am currently using the latest stable verison of Typo3 and of tt_news. I would however like to extend the number of characters allowed in the tt_news record title in the backend. I have had alook at the database filed and it is text, so this has led me to think that it may be

Re: [TYPO3-english] Formhandler and validating generic radio buttons

2012-05-17 Thread Michael Lykke
On 17-05-2012 17:50, Reinhard Führicht wrote: Hi Michael, Am 17.05.2012 16:12, schrieb Michael Lykke: I create the field in step1.html like this: ###master_radio-yesno_question1### Which generates this markup: div class=type-check label for=radio-yesno-question1-yesSome question? /label div

Re: [TYPO3-english] felogin hook beforeRedirect doesn't work

2012-05-17 Thread Jigal van Hemert
Hi, On 17-5-2012 14:33, Jan Wehe wrote: I want to use the username/password to login to an phpBB in the background, is there a hook or another way to get username/password from the felogin form? Maybe an authentication service is the best in this case. A login request is processed by

Re: [TYPO3-english] Cannot add extensions using Typo3 4.6.8, why/how?

2012-05-17 Thread Jigal van Hemert
Hi, On 17-5-2012 18:12, Benoit Montereau wrote: Almost SOLVED! I'm using Firefox 12.0 and it seems to have a few problem with this browser! I already got trouble using the multiple files upload interface (flash) and now there is a problem with extension installation: -the add icon ( with the

Re: [TYPO3-english] Caching Framework questions

2012-05-17 Thread Jigal van Hemert
Hi, On 17-5-2012 16:42, Victor Livakovsky wrote: I've faced a problem, when I need to reuse results of resource-eating processing multiple times with multiple page-loads. Since I don’t want to reinvent the wheel, I decided to try caching framework possibilities. If you need caching in your

Re: [TYPO3-english] Image Magick Thread Limit, 1und1

2012-05-17 Thread Jigal van Hemert
Hi, On 17-5-2012 14:53, N3 wrote: of talking to different people on the support until someone said there was a problem with the current version they use (6.6.04) on some Debian servers since it was eating up to much memory. They offered a workaround until If GraphicsMagick is available (or

[TYPO3-english] DNT for TYPO3

2012-05-17 Thread Andreas Becker
Hi Is there already an implementation for TYPO3 of Do Not Trackhttps://support.twitter.com/articles/20169453 (DNT) browser setting, which stops the collection of information used for tailored suggestions, like Twitter does? Andi ___ TYPO3-english