Re: [TYPO3-english] t3blog - searchBox finds same post xtimes

2011-02-22 Thread Dmitry Dulepov

Hi!

Josef Florian Glatz wrote:

http://forge.typo3.org/issues/13126

After downloading trunk there where two commas at the end of line.


Huh... This is the first time in history for me: svn tells that the source 
is up to date with trunk but the file is different.


I fixed that. Sorry for inconvenience. I have no idea how that could happen :(

--
Dmitry Dulepov
TYPO3 coresecurity team member
E-mail: dmitry.dule...@typo3.org
Web: http://dmitry-dulepov.com/
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] preprocess hook

2011-02-22 Thread Dawid Pacholczyk

unsert() doesn`t work but this:

$incomingFieldArray = null; works great

Thanks for hint.

Best regards,
Dawid Pacholczyk

W dniu 2011-02-21 16:04, Sergey Alexandrov pisze:

You should try

unset($incomingFieldArray);

Best wishes,
Serg

On 2/21/2011 4:47 AM, Dawid Pacholczyk wrote:

Hello List,
I would like to use preProcess hook to stop record from update !
Yes...I want to stop it.

For example if title of a news is rude 'f*** you !' I would like to
prevent it from adding or from changing normal title to it. I know how
to use preProcess hook, I have all functions that I need, but.how
to stop the insert or update ?

Best regards,
Dawid Pacholczyk
___
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] Newsletter distribution via Cronjob - Missing Salutation

2011-02-22 Thread Chris

Hi Guys

we have an error with sending the newsletter via cronjob: The marker 
###USER_tx_gender### is not displayed in the newsletter.

Only the last name (###last_name###) is displayed correctly, e.g. Meier.

Though by sending the newsletter manually via  Invoke Mailer Engine 
everything is displayed correctly, e.g. Sehr geehrter Herr Meier.


We are using Typo3 4.4.4
direct_mail 2.6.9
(We have entered gender,las_name in the addRecipFields of 
direct_mail in the extension manager.)

df_direct_mail_subscription 1.0.5

In our newsletter template the markers are named as follows:
###USER_tx_gender### ###USER_last_name###

We have already changed the backend language english/german. But it 
didn't help neither.


Do you know what we are doing wrong?

Thank you in advance
Best Regards
Chris
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] multiple displayCond in TCA

2011-02-22 Thread Stefan Frömken

Am 17.02.2011 15:25, schrieb Georg Schönweger:

Hi,

is it possible to set multiple displayCond in TCA? I would like to have:
'displayCond' =  'FIELD:some_field:REQ:false', AND 'displayCond' =
'FIELD:some_other_field:REQ:true',

I found also another thread about multiple displayCond in FlexForms, but
the thread is 2 years old so maybe now it is possible? ;
http://www.justinml.com/mailing-lists/cms-typo3/typo3-dev-mailing-list/subject/mailing/typo3-dev-flexform-more-displaycond/

- Georg




Let's have a look into Core 4.4.2 file class.t3lib_tceforms.php:

-
function isDisplayCondition($displayCond,$row,$ffValueKey='')   {
$output = FALSE;
$parts = explode(':',$displayCond);
-

You see...there is no possibility to add multiple conditions

Let's have a look into Core 4.5.0:

-
function isDisplayCondition($displayCond, $row, $ffValueKey = '') {
$output = FALSE;
$parts = explode(':', $displayCond);
-

The conditionstring will be divided by colon directly. So..there is no 
multiple condition, too.


But I found something in t3lib_contextmenu_abstractdataprovider.php:

-
protected function evaluateDisplayCondition(t3lib_tree_Node $node, 
$displayCondition) {

if ($displayCondition === '') {
return TRUE;
}

// parse condition string
$conditions = array();
	preg_match_all('/(.+?)(=|=|!=|=||)(.+?)(\|\|||$)/is', 
$displayCondition, $conditions);


$lastResult = FALSE;
$chainType = '';
$amountOfConditions = count($conditions[0]);
for ($i = 0; $i  $amountOfConditions; ++$i) {
-

Maybe this is an idea, to implement multiple conditions in TCEforms, 
too. Try to create a feature request.


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


Re: [TYPO3-english] Newsletter distribution via Cronjob - Missing Salutation

2011-02-22 Thread Josef Florian Glatz

Am 22.02.2011 09:23, schrieb Chris:

Hi Guys

we have an error with sending the newsletter via cronjob: The marker
###USER_tx_gender### is not displayed in the newsletter.
Only the last name (###last_name###) is displayed correctly, e.g. Meier.

Though by sending the newsletter manually via  Invoke Mailer Engine
everything is displayed correctly, e.g. Sehr geehrter Herr Meier.

We are using Typo3 4.4.4
direct_mail 2.6.9
(We have entered gender,las_name in the addRecipFields of
direct_mail in the extension manager.)
df_direct_mail_subscription 1.0.5

In our newsletter template the markers are named as follows:
###USER_tx_gender### ###USER_last_name###

We have already changed the backend language english/german. But it
didn't help neither.

Do you know what we are doing wrong?

Thank you in advance
Best Regards
Chris
I didn't found a working extension for that problem. Thats why I'm 
develop a salutation-extension for direct_mail which works for me on 4 
installations:

http://typo3.org/extensions/repository/view/directmail_personalization/current/




--
Regards,
Josef Florian Glatz
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Newsletter distribution via Cronjob - Missing Salutation

2011-02-22 Thread Andreas Becker
Try to place the marker somewhere else in your template or in a new line
If it gets displayed than you have the same issue like we :-)

we created a marker and it does get only diplayed if it is in a single row
or i.e. with the marker ###date### in one row.
The marker we have is showing the page id

When we now place the marker somewhere else in the page in the plaintext
version than all markers which should actually show this page id will
immediately show up.

Try it

Andi

On Tue, Feb 22, 2011 at 3:23 PM, Chris chris_kr...@web.de wrote:

 Hi Guys

 we have an error with sending the newsletter via cronjob: The marker
 ###USER_tx_gender### is not displayed in the newsletter.
 Only the last name (###last_name###) is displayed correctly, e.g. Meier.

 Though by sending the newsletter manually via  Invoke Mailer Engine
 everything is displayed correctly, e.g. Sehr geehrter Herr Meier.

 We are using Typo3 4.4.4
 direct_mail 2.6.9
 (We have entered gender,las_name in the addRecipFields of direct_mail
 in the extension manager.)
 df_direct_mail_subscription 1.0.5

 In our newsletter template the markers are named as follows:
 ###USER_tx_gender### ###USER_last_name###

 We have already changed the backend language english/german. But it didn't
 help neither.

 Do you know what we are doing wrong?

 Thank you in advance
 Best Regards
 Chris
 ___
 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] multiple displayCond in TCA

2011-02-22 Thread Georg Schönweger
Hi Stefan,

thx for your efforts! where is
t3lib_contextmenu_abstractdataprovider.php located? Can't find it in
T3 4.5.
Sry but i don't understand .. Is this your code or is it already in Typo3?


// parse condition string
$conditions = array();
preg_match_all('/(.+?)(=|=|!=|=||)(.+?)(\|\|||$)/is',
$displayCondition, $conditions);

$lastResult = FALSE;
$chainType = '';
$amountOfConditions = count($conditions[0]);
for ($i = 0; $i  $amountOfConditions; ++$i) {


Are feature requests for T3 Core made via bugs.typo3.org?

- Georg

Am 22.02.2011 09:25, schrieb Stefan Frömken:
 Am 17.02.2011 15:25, schrieb Georg Schönweger:
 Hi,

 is it possible to set multiple displayCond in TCA? I would like to have:
 'displayCond' =  'FIELD:some_field:REQ:false', AND 'displayCond' =
 'FIELD:some_other_field:REQ:true',

 I found also another thread about multiple displayCond in FlexForms, but
 the thread is 2 years old so maybe now it is possible? ;
 http://www.justinml.com/mailing-lists/cms-typo3/typo3-dev-mailing-list/subject/mailing/typo3-dev-flexform-more-displaycond/


 - Georg



 Let's have a look into Core 4.4.2 file class.t3lib_tceforms.php:

 -
 function isDisplayCondition($displayCond,$row,$ffValueKey=''){
 $output = FALSE;
 $parts = explode(':',$displayCond);
 -

 You see...there is no possibility to add multiple conditions

 Let's have a look into Core 4.5.0:

 -
 function isDisplayCondition($displayCond, $row, $ffValueKey = '') {
 $output = FALSE;
 $parts = explode(':', $displayCond);
 -

 The conditionstring will be divided by colon directly. So..there is no
 multiple condition, too.

 But I found something in t3lib_contextmenu_abstractdataprovider.php:

 -
 protected function evaluateDisplayCondition(t3lib_tree_Node $node,
 $displayCondition) {
 if ($displayCondition === '') {
 return TRUE;
 }

 // parse condition string
 $conditions = array();
 preg_match_all('/(.+?)(=|=|!=|=||)(.+?)(\|\|||$)/is',
 $displayCondition, $conditions);

 $lastResult = FALSE;
 $chainType = '';
 $amountOfConditions = count($conditions[0]);
 for ($i = 0; $i  $amountOfConditions; ++$i) {
 -

 Maybe this is an idea, to implement multiple conditions in TCEforms,
 too. Try to create a feature request.

 Stefan
 ___
 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] t3blog - Fatal error: Call to a member function writelog() after posting comment with TYPO3 4.5

2011-02-22 Thread Josef Florian Glatz

Hi,

I've installed current trunk-version of t3blog. After that, I can't 
comment anymore.


When I send the comment an error occurs:

Fatal error: Call to a member function writelog() on a non-object in 
/srv/www/typo3/typo3_src-4.5.0/t3lib/class.t3lib_tcemain.php on line 6774



I've found the same problems in the internet for other extensions:

http://old.nabble.com/mm_forum-1.9.2-Antworten-nicht-m%C3%B6glich-td30970261.html
http://bugs.typo3.org/view.php?id=16843
http://www.bastian-bringenberg.de/willkommen/news/article/update-von-v.html
http://www.typo3.net/forum/beitraege/gaestebuch/103567/


Is there a solution to fix that?

My system:
TYPO3 4.5.0
t3blog: svnversion (22.02.2011)

thanks in advance

--
Regards,
Josef Florian Glatz
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] t3blog - Fatal error: Call to a member function writelog() after posting comment with TYPO3 4.5

2011-02-22 Thread Josef Florian Glatz

Am 22.02.2011 10:12, schrieb Josef Florian Glatz:

Hi,

I've installed current trunk-version of t3blog. After that, I can't
comment anymore.

When I send the comment an error occurs:

Fatal error: Call to a member function writelog() on a non-object in
/srv/www/typo3/typo3_src-4.5.0/t3lib/class.t3lib_tcemain.php on line 6774


I've found the same problems in the internet for other extensions:

http://old.nabble.com/mm_forum-1.9.2-Antworten-nicht-m%C3%B6glich-td30970261.html

http://bugs.typo3.org/view.php?id=16843
http://www.bastian-bringenberg.de/willkommen/news/article/update-von-v.html
http://www.typo3.net/forum/beitraege/gaestebuch/103567/


Is there a solution to fix that?

My system:
TYPO3 4.5.0
t3blog: svnversion (22.02.2011)

thanks in advance


EDIT: The comment will be saved correctly!

if this helps..

--
Regards,
Josef Florian Glatz
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] TS in BE module

2011-02-22 Thread Dawid Pacholczyk

Hi List,
 how to get TS config from setup of main template in my BE module ?

Best regards,
Dawid Pacholczyk
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] t3blog - Fatal error: Call to a member function writelog() after posting comment with TYPO3 4.5

2011-02-22 Thread Sebastiaan de Jonge
Hi Josef,

I remember having the same problem, I solved it for my blog by commenting
the blogging lines since at the moment of testing I didn't have any real
time to figure out what was causing it. I was also unable to find anyone
else that could confirm the problem at that time. I figured it was an
isolated incident and didn't bother to look further. Was also only on 4.5,
so perhaps some changes need to be made to T3BLOG to make it compatible with
4.5 or perhaps something is even wrong in the core.

Hope this helps,
Sebastiaan

On Tue, Feb 22, 2011 at 10:14 AM, Josef Florian Glatz ty...@josdesign.atwrote:

 Am 22.02.2011 10:12, schrieb Josef Florian Glatz:

  Hi,

 I've installed current trunk-version of t3blog. After that, I can't
 comment anymore.

 When I send the comment an error occurs:

 Fatal error: Call to a member function writelog() on a non-object in
 /srv/www/typo3/typo3_src-4.5.0/t3lib/class.t3lib_tcemain.php on line 6774


 I've found the same problems in the internet for other extensions:


 http://old.nabble.com/mm_forum-1.9.2-Antworten-nicht-m%C3%B6glich-td30970261.html

 http://bugs.typo3.org/view.php?id=16843

 http://www.bastian-bringenberg.de/willkommen/news/article/update-von-v.html
 http://www.typo3.net/forum/beitraege/gaestebuch/103567/


 Is there a solution to fix that?

 My system:
 TYPO3 4.5.0
 t3blog: svnversion (22.02.2011)

 thanks in advance

  EDIT: The comment will be saved correctly!

 if this helps..


 --
 Regards,
 Josef Florian Glatz
 ___
 TYPO3-english mailing list
 TYPO3-english@lists.typo3.org
 http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english




-- 
Kind regards,
Sebastiaan de Jonge

Freelance TYPO3 Developer - Certified TYPO3 Integrator
w: http://sebastiaandejonge.com
t: 0031 65431 7572
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] t3blog - Fatal error: Call to a member function writelog() after posting comment with TYPO3 4.5

2011-02-22 Thread Josef Florian Glatz

Am 22.02.2011 10:43, schrieb Sebastiaan de Jonge:

Hi Josef,

I remember having the same problem, I solved it for my blog by commenting
the blogging lines since at the moment of testing I didn't have any real
time to figure out what was causing it. I was also unable to find anyone
else that could confirm the problem at that time. I figured it was an
isolated incident and didn't bother to look further. Was also only on 4.5,
so perhaps some changes need to be made to T3BLOG to make it compatible with
4.5 or perhaps something is even wrong in the core.

Hope this helps,
Sebastiaan

On Tue, Feb 22, 2011 at 10:14 AM, Josef Florian Glatzty...@josdesign.atwrote:


Am 22.02.2011 10:12, schrieb Josef Florian Glatz:

  Hi,


I've installed current trunk-version of t3blog. After that, I can't
comment anymore.

When I send the comment an error occurs:

Fatal error: Call to a member function writelog() on a non-object in
/srv/www/typo3/typo3_src-4.5.0/t3lib/class.t3lib_tcemain.php on line 6774


I've found the same problems in the internet for other extensions:


http://old.nabble.com/mm_forum-1.9.2-Antworten-nicht-m%C3%B6glich-td30970261.html

http://bugs.typo3.org/view.php?id=16843

http://www.bastian-bringenberg.de/willkommen/news/article/update-von-v.html
http://www.typo3.net/forum/beitraege/gaestebuch/103567/


Is there a solution to fix that?

My system:
TYPO3 4.5.0
t3blog: svnversion (22.02.2011)

thanks in advance

  EDIT: The comment will be saved correctly!


if this helps..


--
Regards,
Josef Florian Glatz
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english






Thanks for your answer!

In this moment I've found good news: 
http://blog.web-works.eu/web/typo3-4-5-lts-fehler-beim-frontend-zugriff-auf-clearcachecmd/#more-1191


I'm waiting until morning - 4.5.1 releasedate. maybe...

--
Regards,
Josef Florian Glatz
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] TS in BE module

2011-02-22 Thread Sebastiaan de Jonge
Hi,

What would be the reason to do so? If it's a template from the database you
can simply load it from there, but it totally depends on what you are
planning to do with it.

Cheers,
Sebastiaan

On Tue, Feb 22, 2011 at 10:41 AM, Dawid Pacholczyk dpacholc...@gmail.comwrote:

 Hi List,
  how to get TS config from setup of main template in my BE module ?

 Best regards,
 Dawid Pacholczyk
 ___
 TYPO3-english mailing list
 TYPO3-english@lists.typo3.org
 http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english




-- 
Kind regards,
Sebastiaan de Jonge

Freelance TYPO3 Developer - Certified TYPO3 Integrator
w: http://sebastiaandejonge.com
t: 0031 65431 7572
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Newsletter distribution via Cronjob - Missing Salutation

2011-02-22 Thread Chris

Am 22.02.2011 09:27, schrieb Josef Florian Glatz:

Am 22.02.2011 09:23, schrieb Chris:

Hi Guys

we have an error with sending the newsletter via cronjob: The marker
###USER_tx_gender### is not displayed in the newsletter.
Only the last name (###last_name###) is displayed correctly, e.g.
Meier.

Though by sending the newsletter manually via  Invoke Mailer Engine
everything is displayed correctly, e.g. Sehr geehrter Herr Meier.

We are using Typo3 4.4.4
direct_mail 2.6.9
(We have entered gender,las_name in the addRecipFields of
direct_mail in the extension manager.)
df_direct_mail_subscription 1.0.5

In our newsletter template the markers are named as follows:
###USER_tx_gender### ###USER_last_name###

We have already changed the backend language english/german. But it
didn't help neither.

Do you know what we are doing wrong?

Thank you in advance
Best Regards
Chris

I didn't found a working extension for that problem. Thats why I'm
develop a salutation-extension for direct_mail which works for me on 4
installations:
http://typo3.org/extensions/repository/view/directmail_personalization/current/






Hi Josef,

thanks for the Extensions. It works but Multilanguage is not supported?
I have 2 Newsletter (one with german salution and one with english salution)

Best Regards
Chris

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


Re: [TYPO3-english] t3blog - Fatal error: Call to a member function writelog() after posting comment with TYPO3 4.5

2011-02-22 Thread Georg Schönweger
Hi Josef,

i don't think this will be fixed in 4.5.1 since the extensions have to
use another method to clear the cache in FE .. see
http://bugs.typo3.org/view.php?id=16832

- Georg

Am 22.02.2011 10:47, schrieb Josef Florian Glatz:
 Am 22.02.2011 10:43, schrieb Sebastiaan de Jonge:
 Hi Josef,

 I remember having the same problem, I solved it for my blog by
 commenting
 the blogging lines since at the moment of testing I didn't have any real
 time to figure out what was causing it. I was also unable to find anyone
 else that could confirm the problem at that time. I figured it was an
 isolated incident and didn't bother to look further. Was also only on
 4.5,
 so perhaps some changes need to be made to T3BLOG to make it
 compatible with
 4.5 or perhaps something is even wrong in the core.

 Hope this helps,
 Sebastiaan

 On Tue, Feb 22, 2011 at 10:14 AM, Josef Florian
 Glatzty...@josdesign.atwrote:

 Am 22.02.2011 10:12, schrieb Josef Florian Glatz:

   Hi,

 I've installed current trunk-version of t3blog. After that, I can't
 comment anymore.

 When I send the comment an error occurs:

 Fatal error: Call to a member function writelog() on a non-object in
 /srv/www/typo3/typo3_src-4.5.0/t3lib/class.t3lib_tcemain.php on
 line 6774


 I've found the same problems in the internet for other extensions:


 http://old.nabble.com/mm_forum-1.9.2-Antworten-nicht-m%C3%B6glich-td30970261.html


 http://bugs.typo3.org/view.php?id=16843

 http://www.bastian-bringenberg.de/willkommen/news/article/update-von-v.html

 http://www.typo3.net/forum/beitraege/gaestebuch/103567/


 Is there a solution to fix that?

 My system:
 TYPO3 4.5.0
 t3blog: svnversion (22.02.2011)

 thanks in advance

   EDIT: The comment will be saved correctly!

 if this helps..


 -- 
 Regards,
 Josef Florian Glatz
 ___
 TYPO3-english mailing list
 TYPO3-english@lists.typo3.org
 http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english




 Thanks for your answer!

 In this moment I've found good news:
 http://blog.web-works.eu/web/typo3-4-5-lts-fehler-beim-frontend-zugriff-auf-clearcachecmd/#more-1191

 I'm waiting until morning - 4.5.1 releasedate. maybe...

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


[TYPO3-english] static_info_tables update problem

2011-02-22 Thread David ARNOULT - Edition Internet Operations
Hi!

I have tried to update static_info_tables extension and in extension manager
it tells me that tables exist for static data import, even if I update: 
static_territories

Lignes : 27

Les tables existent !

static_countries

Lignes : 242

Les tables existent !

static_country_zones

Lignes : 489

Les tables existent !

static_currencies

Lignes : 163

Les tables existent !

static_languages

Lignes : 187

Les tables existent !

In installation tool with compare, everything is OK. Anyone has the solution
to remove this message and import these data? I have tried to downgrade but
I have now always the problem...

Thanks for any help!

David



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


Re: [TYPO3-english] Newsletter distribution via Cronjob - Missing Salutation

2011-02-22 Thread Andreas Becker
:-)

Salut simply in inlingua franka and thats just fine. Germans will know the
differenence.

Andi

On Tue, Feb 22, 2011 at 4:50 PM, Chris chris_kr...@web.de wrote:

 Am 22.02.2011 09:27, schrieb Josef Florian Glatz:

  Am 22.02.2011 09:23, schrieb Chris:

 Hi Guys

 we have an error with sending the newsletter via cronjob: The marker
 ###USER_tx_gender### is not displayed in the newsletter.
 Only the last name (###last_name###) is displayed correctly, e.g.
 Meier.

 Though by sending the newsletter manually via  Invoke Mailer Engine
 everything is displayed correctly, e.g. Sehr geehrter Herr Meier.

 We are using Typo3 4.4.4
 direct_mail 2.6.9
 (We have entered gender,las_name in the addRecipFields of
 direct_mail in the extension manager.)
 df_direct_mail_subscription 1.0.5

 In our newsletter template the markers are named as follows:
 ###USER_tx_gender### ###USER_last_name###

 We have already changed the backend language english/german. But it
 didn't help neither.

 Do you know what we are doing wrong?

 Thank you in advance
 Best Regards
 Chris

 I didn't found a working extension for that problem. Thats why I'm
 develop a salutation-extension for direct_mail which works for me on 4
 installations:

 http://typo3.org/extensions/repository/view/directmail_personalization/current/





  Hi Josef,

 thanks for the Extensions. It works but Multilanguage is not supported?
 I have 2 Newsletter (one with german salution and one with english
 salution)

 Best Regards
 Chris


 ___
 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] t3blog - Fatal error: Call to a member function writelog() after posting comment with TYPO3 4.5

2011-02-22 Thread Dmitry Dulepov

Hi!

Josef Florian Glatz wrote:

I've installed current trunk-version of t3blog. After that, I can't
comment anymore.

When I send the comment an error occurs:

Fatal error: Call to a member function writelog() on a non-object in
/srv/www/typo3/typo3_src-4.5.0/t3lib/class.t3lib_tcemain.php on line 6774


Please, report to Forge.
--
Dmitry Dulepov
TYPO3 coresecurity team member
E-mail: dmitry.dule...@typo3.org
Web: http://dmitry-dulepov.com/
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] t3blog - Fatal error: Call to a member function writelog() after posting comment with TYPO3 4.5

2011-02-22 Thread Josef Florian Glatz

Am 22.02.2011 10:59, schrieb Dmitry Dulepov:

Hi!

Josef Florian Glatz wrote:

I've installed current trunk-version of t3blog. After that, I can't
comment anymore.

When I send the comment an error occurs:

Fatal error: Call to a member function writelog() on a non-object in
/srv/www/typo3/typo3_src-4.5.0/t3lib/class.t3lib_tcemain.php on line 6774


Please, report to Forge.

hi dmitry,

I've add issue to forge.


thanks!

--
Regards,
Josef Florian Glatz
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] static_info_tables update problem

2011-02-22 Thread Boris Gulay

22.02.2011 12:58, David ARNOULT - Edition  Internet Operations пишет:

Hi!

I have tried to update static_info_tables extension and in extension manager
it tells me that tables exist for static data import, even if I update:
static_territories

Lignes : 27

Les tables existent !


[...]


In installation tool with compare, everything is OK. Anyone has the solution
to remove this message and import these data? I have tried to downgrade but
I have now always the problem...

What database runs your TYPO3 installation?
I'm using Postgres and I found many incompatibilities and even mistakes 
in SQL scripts of static_info_tables extensions. You can find my message 
early in this mailing list.
I'm waiting for for Xavier to answer my questions and I will be ready to 
send updated *.sql files to maintainer of this extension to make it 
install and update on all supported databases without errors.

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

Re: [TYPO3-english] Newsletter distribution via Cronjob - Missing Salutation

2011-02-22 Thread Josef Florian Glatz

Am 22.02.2011 10:50, schrieb Chris:

Am 22.02.2011 09:27, schrieb Josef Florian Glatz:

Am 22.02.2011 09:23, schrieb Chris:

Hi Guys

we have an error with sending the newsletter via cronjob: The marker
###USER_tx_gender### is not displayed in the newsletter.
Only the last name (###last_name###) is displayed correctly, e.g.
Meier.

Though by sending the newsletter manually via  Invoke Mailer Engine
everything is displayed correctly, e.g. Sehr geehrter Herr Meier.

We are using Typo3 4.4.4
direct_mail 2.6.9
(We have entered gender,las_name in the addRecipFields of
direct_mail in the extension manager.)
df_direct_mail_subscription 1.0.5

In our newsletter template the markers are named as follows:
###USER_tx_gender### ###USER_last_name###

We have already changed the backend language english/german. But it
didn't help neither.

Do you know what we are doing wrong?

Thank you in advance
Best Regards
Chris

I didn't found a working extension for that problem. Thats why I'm
develop a salutation-extension for direct_mail which works for me on 4
installations:
http://typo3.org/extensions/repository/view/directmail_personalization/current/







Hi Josef,

thanks for the Extensions. It works but Multilanguage is not supported?
I have 2 Newsletter (one with german salution and one with english
salution)

Best Regards
Chris

No, I didn't know to implement this. If you have an idea how to 
implement this, please write me an email!!! :-)


--
Regards,
Josef Florian Glatz
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] TS in BE module

2011-02-22 Thread Dawid Pacholczyk

Maybe I described it wrong.

I want to create an BE module with its own setup.txt (which can be 
modified from the setup of main template) and I want to access this TS 
configuration



W dniu 2011-02-22 10:48, Sebastiaan de Jonge pisze:

Hi,

What would be the reason to do so? If it's a template from the database you
can simply load it from there, but it totally depends on what you are
planning to do with it.

Cheers,
Sebastiaan

On Tue, Feb 22, 2011 at 10:41 AM, Dawid Pacholczykdpacholc...@gmail.comwrote:


Hi List,
  how to get TS config from setup of main template in my BE module ?

Best regards,
Dawid Pacholczyk
___
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] Workspaces in TYPO3 4.5 - still complicated/confusing?

2011-02-22 Thread Steffen Gebert

It is really not good to read here in this thread that i.e. Draft Modus is
buggy (buty it is available by default) - so simply don't show draft modus
and FORCE people to create a custom workspace.

That's AFAIK already the case

Kind regards
Steffen

--
Steffen Gebert
TYPO3 v4 Core Team Member

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


Re: [TYPO3-english] static_info_tables update problem

2011-02-22 Thread David ARNOULT - Edition Internet Operations
Hi!

I use MySQL 5.1 + TYPO3 4.3.8 + PHP 5.2.9. I have never had any problem with 
TYPO3 and MySQL so far...
For info I have downgraded from 2.2.0 to version 2.1.2, clean all tables with 
install tool + reinstall static languages and it works again! Oufff!!! as we 
say in France.
Thanks anyway.

David

-Message d'origine-
De : Boris Gulay [mailto:bo...@boressoft.ru] 
Envoyé : mardi 22 février 2011 11:15
À : d.arno...@topsolid.com; TYPO3 English
Objet : Re: [TYPO3-english] static_info_tables update problem

22.02.2011 12:58, David ARNOULT - Edition  Internet Operations пишет:
 Hi!

 I have tried to update static_info_tables extension and in extension manager
 it tells me that tables exist for static data import, even if I update:
 static_territories

 Lignes : 27

 Les tables existent !

[...]

 In installation tool with compare, everything is OK. Anyone has the solution
 to remove this message and import these data? I have tried to downgrade but
 I have now always the problem...
What database runs your TYPO3 installation?
I'm using Postgres and I found many incompatibilities and even mistakes 
in SQL scripts of static_info_tables extensions. You can find my message 
early in this mailing list.
I'm waiting for for Xavier to answer my questions and I will be ready to 
send updated *.sql files to maintainer of this extension to make it 
install and update on all supported databases without errors.


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

[TYPO3-english] backend hangs randomly

2011-02-22 Thread Nicola Cerchiari
Hi to all,
First time here suggested by friends of the italian mialing list; i'm
encountering a very annoying problem of which I can find no solutions.

The problem is that randomly during day calling any backend action hang the
browser on waiting for response... and the only solution left is to stop
the call, wait several minutes and then everything is back to normal until
it happens again.
For example the same action works for 2 hours and then all of a sudden
hangs. Even accessing to backend login page sometimes hangs.
I've tested the same website and core on my test machines and I never
encounter any problem.
I give you some data in other to better understand the situation:
- php 5.2.x with all libraries needed
- mysql 5.1.55 in replication master/slave (just updated)
- 2 balanced webserver apache/redhat (on a vmware virtualized farm)
- filesystem of webserver ron a shared NAS
- version of typo3 on which the problem is encountered: 4.4.6 and 4.5.0

The matter is that when backend works, works pretty fast, but the nall of a
sudden with apparently no reason it hangs.

System admnistrators of the infrastructure suggested at first that there was
a strangly large amount of calls in TIME_WAIT state, then they suggested
maybe the mysql server is not tuned sufficiently to stand the increasing
requests (consider that this infrastructure receive 50.000 user visit a
day) and they will try a fine tuning in the next day.

What i'm looking for is to understand if the problem is due to Typo3 (i
don't think so) or there is some problem in our infrastructure.

Any ideas?


Thank you in advance,
Nicola
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] TS in BE module

2011-02-22 Thread Kay Strobach
Hi,

take a look in EXT:piwikintegration.
There it's done quite often.
The div class should contain the needed Code.

http://forge.typo3.org/projects/extension-piwikintegration/repository/entry/trunk/lib/class.tx_piwikintegration_div.php

- function getPiwikConfigArray($uid) {

Regards
Kay

Regards
Kay

Am 22.02.2011 10:48, schrieb Sebastiaan de Jonge:
 Hi,
 
 What would be the reason to do so? If it's a template from the database you
 can simply load it from there, but it totally depends on what you are
 planning to do with it.
 
 Cheers,
 Sebastiaan
 
 On Tue, Feb 22, 2011 at 10:41 AM, Dawid Pacholczyk 
 dpacholc...@gmail.comwrote:
 
 Hi List,
  how to get TS config from setup of main template in my BE module ?

 Best regards,
 Dawid Pacholczyk
 ___
 TYPO3-english mailing list
 TYPO3-english@lists.typo3.org
 http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

 
 
 


-- 
http://www.kay-strobach.de - Open Source Rocks
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] backend hangs randomly

2011-02-22 Thread Bjoern Pedersen
Am 22.02.2011 11:40, schrieb Nicola Cerchiari:
 Hi to all,
 First time here suggested by friends of the italian mialing list; i'm
 encountering a very annoying problem of which I can find no solutions.
 
 The problem is that randomly during day calling any backend action hang the
 browser on waiting for response... and the only solution left is to stop
 the call, wait several minutes and then everything is back to normal until
 it happens again.
 For example the same action works for 2 hours and then all of a sudden
 hangs. Even accessing to backend login page sometimes hangs.
 I've tested the same website and core on my test machines and I never
 encounter any problem.
 I give you some data in other to better understand the situation:
 - php 5.2.x with all libraries needed
 - mysql 5.1.55 in replication master/slave (just updated)
 - 2 balanced webserver apache/redhat (on a vmware virtualized farm)
 - filesystem of webserver ron a shared NAS
 - version of typo3 on which the problem is encountered: 4.4.6 and 4.5.0
 
 The matter is that when backend works, works pretty fast, but the nall of a
 sudden with apparently no reason it hangs.
 
 System admnistrators of the infrastructure suggested at first that there was
 a strangly large amount of calls in TIME_WAIT state, then they suggested
 maybe the mysql server is not tuned sufficiently to stand the increasing
 requests (consider that this infrastructure receive 50.000 user visit a
 day) and they will try a fine tuning in the next day.
 
 What i'm looking for is to understand if the problem is due to Typo3 (i
 don't think so) or there is some problem in our infrastructure.
 
 Any ideas?
 
 
 Thank you in advance,
 Nicola

Possible causes: clearing cache: lots of rather slow delete queries on
db - there is a extension to use truncate table for clearing the cache.

stalling locking ( there are some race conditions left in the locking
code, check the  bugtracker)

DB-backup not excluding the cache tables: huge amount of data with table
locking, so lots of db request waiting foe the lock to become released.

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

[TYPO3-english] tt_products empty basket with internetexplorer

2011-02-22 Thread Vincent Mans
Hello list,

Strange case: all the sudden 4 of my 5 shops have empty baskets in IE8
(and prbably all IE versions). In other browsers there are no
problems.

The one shop that still runs okay, uses an https connection.

Does anyone have similar experiences the last days? Because I don't
know if it started today or earlier. Perhaps IE8 had an automatic
security fix? And did anyone find a way to solve it?

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


Re: [TYPO3-english] backend hangs randomly

2011-02-22 Thread Nicola Cerchiari
Hi Bjorn,
thank you for your advices.
i'd like to update to what system administrators are finding out while we
write.
They just finished to check db perfomarce finding no lack of them: no
infinite locking or huge blocking queries.

Moreover I'm sorry but i did not really understand what did u mean in the
stalling locking point, can you please explain a little more fo human
beings ;)

Thanks,
Nik

2011/2/22 Bjoern Pedersen bjoern.peder...@frm2.tum.de

 Am 22.02.2011 11:40, schrieb Nicola Cerchiari:
  Hi to all,
  First time here suggested by friends of the italian mialing list; i'm
  encountering a very annoying problem of which I can find no solutions.
 
  The problem is that randomly during day calling any backend action hang
 the
  browser on waiting for response... and the only solution left is to
 stop
  the call, wait several minutes and then everything is back to normal
 until
  it happens again.
  For example the same action works for 2 hours and then all of a sudden
  hangs. Even accessing to backend login page sometimes hangs.
  I've tested the same website and core on my test machines and I never
  encounter any problem.
  I give you some data in other to better understand the situation:
  - php 5.2.x with all libraries needed
  - mysql 5.1.55 in replication master/slave (just updated)
  - 2 balanced webserver apache/redhat (on a vmware virtualized farm)
  - filesystem of webserver ron a shared NAS
  - version of typo3 on which the problem is encountered: 4.4.6 and 4.5.0
 
  The matter is that when backend works, works pretty fast, but the nall of
 a
  sudden with apparently no reason it hangs.
 
  System admnistrators of the infrastructure suggested at first that there
 was
  a strangly large amount of calls in TIME_WAIT state, then they
 suggested
  maybe the mysql server is not tuned sufficiently to stand the increasing
  requests (consider that this infrastructure receive 50.000 user visit a
  day) and they will try a fine tuning in the next day.
 
  What i'm looking for is to understand if the problem is due to Typo3 (i
  don't think so) or there is some problem in our infrastructure.
 
  Any ideas?
 
 
  Thank you in advance,
  Nicola

 Possible causes: clearing cache: lots of rather slow delete queries on
 db - there is a extension to use truncate table for clearing the cache.

 stalling locking ( there are some race conditions left in the locking
 code, check the  bugtracker)

 DB-backup not excluding the cache tables: huge amount of data with table
 locking, so lots of db request waiting foe the lock to become released.

 Björn
 ___
 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] Add HOME button to a GMENU

2011-02-22 Thread Enrique Moreno Tent
Im building a GMENU for the main navigation and I want to add at the
beginning a HOME button, that doesnt have text like the others, but a custom
image. How could I do this? Should I build a second GMENU for it?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] R: Add HOME button to a GMENU

2011-02-22 Thread De Contardi Riccardo
Hello.

My suggestion is: write the whole menu as a COA 
Something like this:

lib.yourmenu=COA
lib.yourmenu{
10=IMAGE
10.file=path/to/file/home.gif
#add other options like altText, titleText as you need
#link to home page (I guess UID=1, replace with correct UID)
10.stdWrap.typolink.parameter=1

20=HMENU
#The GMENU code you already use
}
Adapt it to your needs and best regards



Riccardo De Contardi - Web Developer
B Human Srl - www.bhuman.it
Via Canzio, 15 - 20131 Milano
TEL +39-02-20.23.271 - FAX +39-02-20.240.561


-Messaggio originale-
Da: typo3-english-boun...@lists.typo3.org 
[mailto:typo3-english-boun...@lists.typo3.org] Per conto di Enrique Moreno Tent
Inviato: martedì 22 febbraio 2011 14:10
A: TYPO3 English
Oggetto: [TYPO3-english] Add HOME button to a GMENU

Im building a GMENU for the main navigation and I want to add at the beginning 
a HOME button, that doesnt have text like the others, but a custom image. How 
could I do this? Should I build a second GMENU for it?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

**

Chi riceve il presente messaggio e' tenuto a verificare se lo stesso non gli 
sia pervenuto per errore. In tal caso e' pregato di avvisare immediatamente il 
mittente e, tenuto conto delle responsabilita connesse all'indebito utilizzo 
e/o divulgazione del messaggio e/o delle informazioni in esso contenute, voglia 
cancellare l'originale e distruggere le varie copie o stampe.

The receiver of this message is required to check if he/she has received it 
erroneously. If so, the receiver is requested to immediately inform the sender 
and - in consideration of the responsibilities arising from undue use and/or 
disclosure of the message and/or the information contained therein - destroy 
the original message and any copy or printout thereof.


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


Re: [TYPO3-english] multiple displayCond in TCA

2011-02-22 Thread Georg Schönweger
just found out that there exists already a feature request for this;
http://bugs.typo3.org/view.php?id=7531 .. so maybe it will go into 4.6

- Georg

Am 22.02.2011 09:55, schrieb Georg Schönweger:
 Hi Stefan,

 thx for your efforts! where is
 t3lib_contextmenu_abstractdataprovider.php located? Can't find it in
 T3 4.5.
 Sry but i don't understand .. Is this your code or is it already in Typo3?

 
 // parse condition string
 $conditions = array();
 preg_match_all('/(.+?)(=|=|!=|=||)(.+?)(\|\|||$)/is',
 $displayCondition, $conditions);

 $lastResult = FALSE;
 $chainType = '';
 $amountOfConditions = count($conditions[0]);
 for ($i = 0; $i  $amountOfConditions; ++$i) {
 

 Are feature requests for T3 Core made via bugs.typo3.org?

 - Georg

 Am 22.02.2011 09:25, schrieb Stefan Frömken:
 Am 17.02.2011 15:25, schrieb Georg Schönweger:
 Hi,

 is it possible to set multiple displayCond in TCA? I would like to have:
 'displayCond' =  'FIELD:some_field:REQ:false', AND 'displayCond' =
 'FIELD:some_other_field:REQ:true',

 I found also another thread about multiple displayCond in FlexForms, but
 the thread is 2 years old so maybe now it is possible? ;
 http://www.justinml.com/mailing-lists/cms-typo3/typo3-dev-mailing-list/subject/mailing/typo3-dev-flexform-more-displaycond/


 - Georg


 Let's have a look into Core 4.4.2 file class.t3lib_tceforms.php:

 -
 function isDisplayCondition($displayCond,$row,$ffValueKey=''){
 $output = FALSE;
 $parts = explode(':',$displayCond);
 -

 You see...there is no possibility to add multiple conditions

 Let's have a look into Core 4.5.0:

 -
 function isDisplayCondition($displayCond, $row, $ffValueKey = '') {
 $output = FALSE;
 $parts = explode(':', $displayCond);
 -

 The conditionstring will be divided by colon directly. So..there is no
 multiple condition, too.

 But I found something in t3lib_contextmenu_abstractdataprovider.php:

 -
 protected function evaluateDisplayCondition(t3lib_tree_Node $node,
 $displayCondition) {
 if ($displayCondition === '') {
 return TRUE;
 }

 // parse condition string
 $conditions = array();
 preg_match_all('/(.+?)(=|=|!=|=||)(.+?)(\|\|||$)/is',
 $displayCondition, $conditions);

 $lastResult = FALSE;
 $chainType = '';
 $amountOfConditions = count($conditions[0]);
 for ($i = 0; $i  $amountOfConditions; ++$i) {
 -

 Maybe this is an idea, to implement multiple conditions in TCEforms,
 too. Try to create a feature request.

 Stefan
 ___
 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


Re: [TYPO3-english] R: Add HOME button to a GMENU

2011-02-22 Thread Enrique Moreno Tent
But the I wouldnt be able to use the useful actions like RO or ACT of a
HMENU, right?

On Tue, Feb 22, 2011 at 1:24 PM, De Contardi Riccardo 
riccardo.deconta...@bhuman.it wrote:

 Hello.

 My suggestion is: write the whole menu as a COA
 Something like this:

 lib.yourmenu=COA
 lib.yourmenu{
 10=IMAGE
 10.file=path/to/file/home.gif
 #add other options like altText, titleText as you need
 #link to home page (I guess UID=1, replace with correct UID)
 10.stdWrap.typolink.parameter=1

 20=HMENU
 #The GMENU code you already use
 }
 Adapt it to your needs and best regards


 
 Riccardo De Contardi - Web Developer
 B Human Srl - www.bhuman.it
 Via Canzio, 15 - 20131 Milano
 TEL +39-02-20.23.271 - FAX +39-02-20.240.561
 

 -Messaggio originale-
 Da: typo3-english-boun...@lists.typo3.org [mailto:
 typo3-english-boun...@lists.typo3.org] Per conto di Enrique Moreno Tent
 Inviato: martedì 22 febbraio 2011 14:10
 A: TYPO3 English
 Oggetto: [TYPO3-english] Add HOME button to a GMENU

 Im building a GMENU for the main navigation and I want to add at the
 beginning a HOME button, that doesnt have text like the others, but a custom
 image. How could I do this? Should I build a second GMENU for it?
 ___
 TYPO3-english mailing list
 TYPO3-english@lists.typo3.org
 http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

 **

 Chi riceve il presente messaggio e' tenuto a verificare se lo stesso non
 gli sia pervenuto per errore. In tal caso e' pregato di avvisare
 immediatamente il mittente e, tenuto conto delle responsabilita connesse
 all'indebito utilizzo e/o divulgazione del messaggio e/o delle informazioni
 in esso contenute, voglia cancellare l'originale e distruggere le varie
 copie o stampe.

 The receiver of this message is required to check if he/she has received it
 erroneously. If so, the receiver is requested to immediately inform the
 sender and - in consideration of the responsibilities arising from undue use
 and/or disclosure of the message and/or the information contained therein -
 destroy the original message and any copy or printout thereof.


 ___
 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] Add HOME button to a GMENU

2011-02-22 Thread Sergey Alexandrov
You can try to use optionSplit for an image in the first menu item, 
something like


10 = IMAGE
10.file = homeimage.gif |*| otherimage.gif



On 2/22/2011 8:10 AM, Enrique Moreno Tent wrote:

Im building a GMENU for the main navigation and I want to add at the
beginning a HOME button, that doesnt have text like the others, but a custom
image. How could I do this? Should I build a second GMENU for it?
___
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] Extension - flash button

2011-02-22 Thread Cecilie Andersen

Hi there,

I there somekind of typo3 extension, that have some build in features for 
flash buttons on a homepage. I would like to make a fancy button on the 
homepage in flash (or java if this is a option?).


Is there any defeault made or is the only way to make it from scratch?

Regards
Cecilie


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


Re: [TYPO3-english] Extension - flash button

2011-02-22 Thread Dmitry Dulepov

Hi!

Cecilie Andersen wrote:

I there somekind of typo3 extension, that have some build in features
for flash buttons on a homepage. I would like to make a fancy button
on the homepage in flash (or java if this is a option?).

Is there any defeault made or is the only way to make it from scratch?


Why do you need an extension for such thing? Can't you simply place HTML 
markup for flash in your template?


--
Dmitry Dulepov
TYPO3 coresecurity team member
E-mail: dmitry.dule...@typo3.org
Web: http://dmitry-dulepov.com/
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] R: R: Add HOME button to a GMENU

2011-02-22 Thread De Contardi Riccardo
 But the I wouldnt be able to use the useful actions like RO or ACT of a 
 HMENU, right?

Oh, well... the ACT state should be enabled only when you are in the home page 
itself, am I right? You can use a condition in TS to differentiate the code in 
the home page.
Regarding the RO effect...I mean, there are a lot of ways to do this, including 
(my favorite, indeed) get rid of the IMAGE object, and use a simple TEXT 
element with a bit of CSS (I mean:  cover-up span technique)

I repeat, there is a very wide range of ways to do such things, so could you be 
more specific about what will be the final result you want to obtain?

Best regards


Riccardo De Contardi - Web Developer
B Human Srl - www.bhuman.it
Via Canzio, 15 - 20131 Milano
TEL +39-02-20.23.271 - FAX +39-02-20.240.561





**

Chi riceve il presente messaggio e' tenuto a verificare se lo stesso non gli 
sia pervenuto per errore. In tal caso e' pregato di avvisare immediatamente il 
mittente e, tenuto conto delle responsabilita connesse all'indebito utilizzo 
e/o divulgazione del messaggio e/o delle informazioni in esso contenute, voglia 
cancellare l'originale e distruggere le varie copie o stampe.

The receiver of this message is required to check if he/she has received it 
erroneously. If so, the receiver is requested to immediately inform the sender 
and - in consideration of the responsibilities arising from undue use and/or 
disclosure of the message and/or the information contained therein - destroy 
the original message and any copy or printout thereof.


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


Re: [TYPO3-english] Extension - flash button

2011-02-22 Thread Kay Strobach
Hi you can style your button with css(3) as well.
regards
Kay

Am 22.02.2011 15:29, schrieb Dmitry Dulepov:
 Hi!
 
 Cecilie Andersen wrote:
 I there somekind of typo3 extension, that have some build in features
 for flash buttons on a homepage. I would like to make a fancy button
 on the homepage in flash (or java if this is a option?).

 Is there any defeault made or is the only way to make it from scratch?
 
 Why do you need an extension for such thing? Can't you simply place HTML
 markup for flash in your template?
 


-- 
http://www.kay-strobach.de - Open Source Rocks
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Extension - flash button

2011-02-22 Thread Cecilie Andersen

Hi,

I am not the big html/flash expert, so implementing flash code in html and 
also get it working with typo3 is a bit to heavy for me. So I thought about 
somekind of button extension.

Regards
Cecilie

Dmitry Dulepov dmitry.dule...@gmail.com skrev i meddelelsen 
news:mailman.1.1298385113.10184.typo3-engl...@lists.typo3.org...

Hi!

Cecilie Andersen wrote:

I there somekind of typo3 extension, that have some build in features
for flash buttons on a homepage. I would like to make a fancy button
on the homepage in flash (or java if this is a option?).

Is there any defeault made or is the only way to make it from scratch?


Why do you need an extension for such thing? Can't you simply place HTML 
markup for flash in your template?


--
Dmitry Dulepov
TYPO3 coresecurity team member
E-mail: dmitry.dule...@typo3.org
Web: http://dmitry-dulepov.com/ 


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


Re: [TYPO3-english] Extension - flash button

2011-02-22 Thread Dmitry Dulepov

Hi!

Cecilie Andersen wrote:

I am not the big html/flash expert, so implementing flash code in html
and also get it working with typo3 is a bit to heavy for me. So I
thought about somekind of button extension.


Why don't pay somebody to make it well for you? :) There are plenty of 
freelancers, who know how to do stuff. Doing that yourself will result in 
really bad implementation if you need an extension for such thing. You will 
have to pay but than you will get an appropriate result.


--
Dmitry Dulepov
TYPO3 coresecurity team member
E-mail: dmitry.dule...@typo3.org
Web: http://dmitry-dulepov.com/
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Add HOME button to a GMENU

2011-02-22 Thread Bjoern Pedersen
Am 22.02.2011 14:10, schrieb Enrique Moreno Tent:
 Im building a GMENU for the main navigation and I want to add at the
 beginning a HOME button, that doesnt have text like the others, but a custom
 image. How could I do this? Should I build a second GMENU for it?

something like:

lib.menu =COA
lib.menu {
10=GMENU
10.special=directory
10.value= id of home page

20=GMENU
 ...

}

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


[TYPO3-english] FE User Login STATUS_HEADER

2011-02-22 Thread Enrique Moreno Tent
I want to change the fields that appear by default of the FE login. Ive
looked at the HTML template and there are a couple fields
called ###STATUS_HEADER### and ###STATUS_MESSAGE###, but I dont know where I
should overwrite them. What can i do?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Automatic content upload

2011-02-22 Thread Tomasz Melcer
On 15.02.2011 15:57, Bjoern Pedersen wrote:
 Am 15.02.2011 15:38, schrieb Tomasz Melcer:
 I've got a set of static HTML files, and I'd like to put their contents
 into TYPO3 as separate pages.
 [...]

 I have used external_pageset for such an application,
 http://typo3.org/extensions/repository/view/external_pageset/current/

Thank you for your suggestions.

For me it is amazing that such an old extension still works with the
newest TYPO3.

For the record: The only problem I see now is that it uses few PHP
functions which are deprecated in PHP 5.3: eregi, eregi_replace and
split. For now I wrapped them in code to disable warnings.

I'll probably check other suggestions later.

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


Re: [TYPO3-english] SRFEUserRegister - Content Above Application Form

2011-02-22 Thread Louis Coppola
Curt,

Thanks for your response.   I think your suggestion makes sense.  I
could move the intro material also into the template instead
(registration template) and then it would probably disappear once it
moved to the next stage as long as it was in that stages section of
the template.

This should work - Thanks again.

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


Re: [TYPO3-english] backend hangs randomly

2011-02-22 Thread Philipp Gampe
Hi Nicola,

Nicola Cerchiari wrote:

 Moreover I'm sorry but i did not really understand what did u mean in the
 stalling locking point, can you please explain a little more fo human
 beings ;)

Race conditions ... the JS code contains race conditions and this will block 
the BE totally. Please wait until update 4.5.1 is released (should be 
tomorrow).

Race conditions means that two or more functions try to require the same 
thing at the same time and neither one gets it, because both are waiting 
until the get sole access. (You will find better explanations on the web ;)

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


Re: [TYPO3-english] backend hangs randomly

2011-02-22 Thread Nicola Cerchiari
Hi Philipp,
Thank you for the explanation. I had the concept of race conditions but
didn't know where they could happen in typo3.
Do you think this kinda problem can affect also version 4.4.6 or only
4.5.0+?
At the moment we are encountering the most problem on the former version and
it happens mostly (can't assure always) after a while we are working on it.

Thank you really much again.

Bests,
Nicola
Il giorno 22/feb/2011 19:03, Philipp Gampe typo3.li...@philippgampe.info
ha scritto:
 Hi Nicola,

 Nicola Cerchiari wrote:

 Moreover I'm sorry but i did not really understand what did u mean in the
 stalling locking point, can you please explain a little more fo human
 beings ;)

 Race conditions ... the JS code contains race conditions and this will
block
 the BE totally. Please wait until update 4.5.1 is released (should be
 tomorrow).

 Race conditions means that two or more functions try to require the same
 thing at the same time and neither one gets it, because both are waiting
 until the get sole access. (You will find better explanations on the web
;)

 Best regards
 --
 Philipp Gampe
 ___
 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] backend hangs randomly

2011-02-22 Thread Philipp Gampe
Nicola Cerchiari wrote:

 Do you think this kinda problem can affect also version 4.4.6 or only
 4.5.0+?
 At the moment we are encountering the most problem on the former version
 and it happens mostly (can't assure always) after a while we are working
 on it.

AFAIK it should only happen in 4.5. If this happens in 4.4 - I think it is a 
bug - bugs.typo3.org :)
But I don't know much about ExtJS or the whole BE JS code in general.

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


[TYPO3-english] TYPO3 4.5 and maag_formcaptcha/captcha

2011-02-22 Thread Bert Hiddink [BENDOO e-work solutions]

Hello,

As from TYPO3 4.5 the captcha-image does not show up anymore in my 
standard mailforms, before that, it worked fine. I am using 
maag_formcaptcha/captcha-extensions for generating the captcha there.


Anyone experienced this problem as well? The captcha-extension itself 
produces a correct image if the captcha.php-script is called directly.


Any ideas?

Thanks in advance!

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


[TYPO3-english] Complex Query in Typoscript

2011-02-22 Thread IAmThatSTrange

Hi all, I've been looking all over for information on how to do this in
Typoscript. tsref while great doesn't go into the detail for me to
understand where to dot the i's and cross the t's.  (syntax, usage)

What I'm trying to do is show the last 5 updated content element headers as
links to those content elements on the home page (from several pages down -
on as many subpages as necessary to get those content elemetns).
So
Home page (where the links to the content elements will be shown) 
News
   Feb 2011
021811 (where the content elements are)
021611 (where the content elements are)
021411 (where the content elements are)

I only need the most recent 5 or 6 but if one page has only 3 content
elements, then the top 3 content elements from the next page should show.

I have a query that get's exactly what I want in a straight db query, I've
just no clue how to put this into Typoscript.

the Query:

SELECT t.uid, t.pid, bodytext
FROM tt_content t
WHERE pid IN (SELECT p1.uid FROM pages p1 LEFT JOIN pages p2 ON p1.pid =
p2.uid where p2.pid = 17523 and p1.hidden = 0 and p1.deleted=0)
order by tstamp desc

Can anyone assist?

Thanks so much!

M
-- 
View this message in context: 
http://old.nabble.com/Complex-Query-in-Typoscript-tp30989277p30989277.html
Sent from the TYPO3 English mailing list archive at Nabble.com.

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


Re: [TYPO3-english] FE User Login STATUS_HEADER

2011-02-22 Thread Victor Livakovsky

Hi, Enrique.

These fields are displayed at 'felogin' flexform - just have a look at it 
more careful.
Or if you inserting login form via TS, you may have a look at provided 
static TS by 'felogin' - maybe it is hold there, or at locallang.xml file - 
so you can see the names of corresponding language labels and override them 
with _LOCAL_LANG. 


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


[TYPO3-english] typoscript and COA

2011-02-22 Thread Stefano
Hi.

I'm new about typo3, so i try to learn typoscript.

I have this problem : 

I need to add a date  (calculated on system clock) to the header of 2 text 
contents added in a page

First text content : 
h1 text of the header - 2011 /h1 // Y
Second text content :
h1 text of the header - 2010  /h1 // Y-1
Third text content :

h1 text of the header - 2009  /h1 // Y-2

I tried to extract from lib.stdheader a COA and read the first element of COA, 
but i don't know how to extract the single element, the second element from the 
COA

Anyone has a suggestion or idea?

Thanks in advance.





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