[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 this works ok (where I want to show past years records and also 
the year field has to be filled):

andWhere = tx_klfilms_category.UID = 16 AND tx_klfilms_film.vuosi < 
YEAR(CURDATE()) AND tx_klfilms_film.vuosi > 0


-- 
With kind regards

Katja Lampela
*Lieska-tuotanto*
www.lieska.net

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[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 this works ok (where I want to show past years records 
and also the year field has to be filled):


andWhere = tx_klfilms_category.UID = 16 AND tx_klfilms_film.year < 
YEAR(CURDATE()) AND tx_klfilms_film.year > 0



--
With kind regards

Katja Lampela
*Lieska-tuotanto*
www.lieska.net

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] andWhere internal server error

2012-05-17 Thread Katja Lampela

sorry this has wrong field names, vuosi should be year


17.5.2012 10:44, Katja Lampela kirjoitti:

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 this works ok (where I want to show past years records and also 
the year field has to be filled):

andWhere = tx_klfilms_category.UID = 16 AND tx_klfilms_film.vuosi<  
YEAR(CURDATE()) AND tx_klfilms_film.vuosi>  0



___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


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
   file.width = 252
  }

   20 < .10
   20.params = class="snd"
   20.import.listNum = 1

   30 < .10
   30.params = class="trd"
   30.import.listNum = 2
}

Have not trued this code, but you shoould get the idea.

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


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
> or empty year field.


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.
Check your queries via PhpMyAdmin, this should give you more meaningful 
error messages.

Cheers
-- 
Philipp Gampe – PGP-Key 0AD96065 – TYPO3 UG Bonn/Köln
Documentation – linkvalidator
TYPO3  inspiring people to share!

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

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 11:39, Victor Livakovsky napsal(a):

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
file.width = 252
}

20 < .10
20.params = class="snd"
20.import.listNum = 1

30 < .10
30.params = class="trd"
30.import.listNum = 2
}

Have not trued this code, but you shoould get the idea.



___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


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
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


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

2012-05-17 Thread Jan Wehe

Hey,
thanks for you help, the redirect works now.
The problem was hiding the login page after login, so no redirect was
performed.

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?


On Wed, 16 May 2012 22:12:41 +0200, Jigal van Hemert
 wrote:
> Hi,
> 
> On 16-5-2012 15:04, Jan Wehe wrote:
>>
>> Hello,
>> I'm using TYPO3 4.6.7 with felogin 1.4.0 and try to use the
>> beforeRedirect
>> hook.
> 
> The hook is only called if:
> - there is a login or logout taking place
> - there is redirect url
> - redirect is not disabled
> 
> Furthermore directly after the hook a http redirect is performed. This 
> will effectively hide your var_dump output.
> 
> Try to install the devlog extension and call t3lib_div::devLog (see the 
> function for parameter details) in your hook subscriber. There is BE 
> module to watch the data in the devlog.
> 
> The hook is definitely working; I used it a few months ago to change the

> redirect url for the first login of a FE user.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


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

2012-05-17 Thread N3
Hello everyone,

 

just wanted to share this since it was hard to come by. I had a problem with
a TYPO3 Installation at 1und1 Shared Hosting Services. Although TYPO3 finds
all settings and seems to run as should Convert seems to fail. It took a lot
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
everything is fixed but couldn't tell me where to put this workaround. The
workaround is as follows:

 

putenv("MAGICK_THREAD_LIMIT=1");

 

Just add this to your localconf.php and everything will work again.

 

Jan

 

 

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


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 = tx_klfilms_category.UID = 16 AND ( tx_klfilms_film.year >=
YEAR(CURDATE()) OR tx_klfilms_film.year = 0 )

-- 
image[FORMAT] - Ralf-René Schröder
http://image-format.eu ... Wir geben Ihrem Image das richtige Format
http://if-20.com  ... YAML templates for TYPO3
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

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 tx_klfilms_film.year = 0 )

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] Formhandler and validating generic radio buttons

2012-05-17 Thread Michael Lykke

Hi list

I'm trying to use generic radio buttons in a form based on the 
Formhandler extension. The situation is that I'm planning on making a 
multistep form with a series of yes/no questions. For this, I would like 
to use the same master template subpart containing the markup for radio 
buttons. This is all working as expected.


My problem is when it comes to validating the radio buttons. No matter 
if one or the other or none of the radio buttons are checked, the 
validator comes out saying that the field needs to be filled out. I 
think that it has something to do with calculating the value of the 
checked radio button but I'm not sure. The generated markup looks fine.


Here is my master template subpart for radio buttons:

###error_###fieldname##

	###is_error_radio-yesno-###fieldname##>###LLL:radio-yesno-###fieldname## 
###required_radio-yesno-###fieldname##


		name="###formValuesPrefix###[radio-yesno-###fieldname###]" 
value="###LLL:radio-yesno-###fieldname###.yes###" 
###checked_radio-yesno-###fieldname###_###LLL:radio-yesno-###fieldname###.yes## 
/>
		for="radio-yesno-###fieldname###-yes">###LLL:radio-yesno-###fieldname###.yes###



		name="###formValuesPrefix###[radio-yesno-###fieldname###]" 
value="###LLL:radio-yesno-###fieldname###.no###" 
###checked_radio-yesno-###fieldname###_###LLL:radio-yesno-###fieldname###.no## 
/>
		for="radio-yesno-###fieldname###-no">###LLL:radio-yesno-###fieldname###.no###





It looks ok, right? What else could be the problem?

I create the field in step1.html like this:
###master_radio-yesno_question1###

Which generates this markup:

Some question? 

		name="form-multistep[radio-yesno-question1]" value="Yes">

Yes


		name="form-multistep[radio-yesno-question1]" value="No">

No



And validating it like this:
1.validators {
1.class = Validator_Default
1.config.fieldConf {
question1.errorCheck {
1 = required
}
}
}

Can anyone help, please?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[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.


http://wiki.typo3.org/Caching_framework#How_to_use_the_caching_framework_in_extensions
describes the process of usage really good, but here is another article:
http://wiki.typo3.org/Cache#Example_for_using_cache_for_own_Extensions
and it looks simpler, than first one.

As far, as I see, the benefits of first method are:
- you can configure different caching backend and frontend for your own 
extension, non-depending on 'cache_hash' configuration;

- you can use tagging and later clear caches by tags.

Are there any other benefits?
Or even, what is more important: is it bad to use system's 'cache_hash' 
instead of own one? 


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[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
tried to do the same, still unable to get any new extensions.

Am I missing something here? In previous version, the extensions were
loaded and then we use to need to INSTALL them. Nothing similar in 4.6.8,
so how can I complete the install process?

Thanks y lot for you help to solve this very stupid situation.
Regards,
Ben
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


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

2012-05-17 Thread Philipp Gampe
Hi Benoit,

Benoit Montereau wrote:

> 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.

If I do this, I am redirected to the first tab, where the newly imported 
extension is selected. Then I can click the install icon, the same way it 
worked in older versions with the old EM.

Cheers
-- 
Philipp Gampe – PGP-Key 0AD96065 – TYPO3 UG Bonn/Köln
Documentation – linkvalidator
TYPO3  inspiring people to share!

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

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 templates for TYPO3
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

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

2012-05-17 Thread Ralf-Rene Schröder
an extension is NEVER installed directly when you import her
this is always a second process !
but normaly you where automaticly redirected to the install posibility
for a newly imported extension

-- 
image[FORMAT] - Ralf-René Schröder
http://image-format.eu ... Wir geben Ihrem Image das richtige Format
http://if-20.com  ... YAML templates for TYPO3
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

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

2012-05-17 Thread Benoit Montereau
I totally agree, unfortunately, I cannot see where to go/clic to get the
installation done.
Are you using 4.6.8 as well?


On Thu, May 17, 2012 at 5:42 PM, Ralf-Rene Schröder wrote:

> an extension is NEVER installed directly when you import her
> this is always a second process !
> but normaly you where automaticly redirected to the install posibility
> for a newly imported extension
>
> --
> image[FORMAT] - Ralf-René Schröder
> http://image-format.eu ... Wir geben Ihrem Image das richtige Format
> http://if-20.com  ... YAML templates for TYPO3
> ___
> TYPO3-english mailing list
> TYPO3-english@lists.typo3.org
> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
>
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


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:

Some question? 


Yes



No



And validating it like this:
1.validators {
1.class = Validator_Default
1.config.fieldConf {
question1.errorCheck {
1 = required
}
}
}

Can anyone help, please?


If the generated field has the name "radio-yesno-question1" shouldn't 
the validator config look like this?


1.validators {
  1.class = Validator_Default
  1.config.fieldConf {
radio-yesno-question1.errorCheck {
  1 = required
}
  }
}

Regards,
Reinhard
--
http://www.typo3-formhandler.com
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


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
Chrome...).

2 hours lost for a stupid css bugs...
Regards,
Ben

On Thu, May 17, 2012 at 5:51 PM, Benoit Montereau wrote:

> I totally agree, unfortunately, I cannot see where to go/clic to get the
> installation done.
> Are you using 4.6.8 as well?
>
>
> On Thu, May 17, 2012 at 5:42 PM, Ralf-Rene Schröder  >wrote:
>
> > an extension is NEVER installed directly when you import her
> > this is always a second process !
> > but normaly you where automaticly redirected to the install posibility
> > for a newly imported extension
> >
> > --
> > image[FORMAT] - Ralf-René Schröder
> > http://image-format.eu ... Wir geben Ihrem Image das richtige Format
> > http://if-20.com  ... YAML templates for TYPO3
> > ___
> > TYPO3-english mailing list
> > TYPO3-english@lists.typo3.org
> > http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
> >
> ___
> TYPO3-english mailing list
> TYPO3-english@lists.typo3.org
> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
>
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[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 a limit set in
the extension code for the title field in a news a record.

Any help would be greatly recieved!

Kind Regards
Bob
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


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

2012-05-17 Thread Markus Klein
Hi Bob,

take a look at the TCA (Table Configuration Array) for tables. (Configuration 
module in the BE)
There should be an entry for the news table and a subtree for that like 
[columns]['title'][config].
You should find the length setting there.

Kind regards
Markus


> -Original Message-
> From: typo3-english-boun...@lists.typo3.org 
> [mailto:typo3-english-boun...@lists.typo3.org] On Behalf Of Baber Ahmed
> Sent: Thursday, May 17, 2012 6:17 PM
> To: typo3-english@lists.typo3.org
> Cc: Baber Ahmed
> Subject: [TYPO3-english] extend number of characters in t_news title
> 
> 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 a limit set in the extension code for the title field in a news a 
> record.
> 
> Any help would be greatly recieved!
> 
> Kind Regards
> Bob
> ___
> TYPO3-english mailing list
> TYPO3-english@lists.typo3.org
> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


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:

Some question? 


Yes



No



And validating it like this:
1.validators {
1.class = Validator_Default
1.config.fieldConf {
question1.errorCheck {
1 = required
}
}
}

Can anyone help, please?


If the generated field has the name "radio-yesno-question1" shouldn't
the validator config look like this?

1.validators {
1.class = Validator_Default
1.config.fieldConf {
radio-yesno-question1.errorCheck {
1 = required
}
}
}

Regards,
Reinhard


Yes! Of course! Thank you so much - this was driving me insane. Now I 
just need to adjust the error message labels.


Thanks again,
Michael
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


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 authentication services which are called in 
order of priority. An authentication service is usually used to verify 
the login information, initialize the fe user in the system and then 
indicate if the verification succeeded.


The value it returns can have several meanings:
- authentication succeeded, no need to check other services
- authentication failed, try next service
- authentication failed, stop checking other services

If you create an authentication service with a high priority it will be 
the first one which is tried. Your service can log into phpBB and tell 
TYPO3 that authentication failed and that the next service should be 
tried (or maybe that it should stop checking other services if logging 
in with phpBB failed?)


There are a number of authentication services in TER, such as a demo 
service and an LDAP service. You can use them for inspiration.


--
Jigal van Hemert
TYPO3 Core Team member

TYPO3  inspiring people to share!
Get involved: typo3.org
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


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 +) is NOT displayed (ok with Explorer or
Chrome...).


See http://forge.typo3.org/issues/30900 and
https://review.typo3.org/#/c/10878/ for the three-line patch for the CSS 
to return the add/remove icon.



2 hours lost for a stupid css bugs...


Sorry for the time it took, but FF12 suddenly changed the rendering a 
bit. There has unfortunately not been a release yet since this issue was 
fixed in the repository...


--
Jigal van Hemert
TYPO3 Core Team member

TYPO3  inspiring people to share!
Get involved: typo3.org
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


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 extension enetcache [1] can be useful for 
you. It makes the caching framework available for extensions.


[1] http://typo3.org/extensions/repository/view/enetcache

--
Jigal van Hemert
TYPO3 Core Team member

TYPO3  inspiring people to share!
Get involved: typo3.org
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

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 they can make it available) that will 
probably be a good alternative. GM seems to have less problems, needs 
less resources and usually performs a bit better too.


A recent oddity in ImageMagick is that they suddenly changed the 
handling of the RGB colorspace which can lead to dark images... and 
people wonder why we (used to) have such strange options for IM in the 
Install Tool :-S


--
Jigal van Hemert
TYPO3 Core Team member

TYPO3  inspiring people to share!
Get involved: typo3.org
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] DNT for TYPO3

2012-05-17 Thread Andreas Becker
Hi

Is there already an implementation for TYPO3 of Do Not
Track (DNT)
browser setting, which stops the collection of information used for
tailored suggestions, like Twitter does?

Andi
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english