Re: [TYPO3-english] Wrap condition (required = 1) is not working!

2011-09-12 Thread Benoit Montereau
Hi Ralf,

Thanks for you feedback. I do not understand your points regarding wrap for
10 and 20. In my case if nothing is returned by tt_content select, nothing
is present in these wraps, isn't? Do you mean wrap exist but is empty, so
required does not work?

As I cannot imagine to be the first facing this problem, could you give me
some hints to get my process working?

Is there a way to get the length of a content, if = 0 then wrap should not
be done?

Hope you can help me.

Regards,
Ben

2011/9/12 Ralf-Rene Schröder ralf.r...@online.de

 a COA has no required
 use stdWrap.required instead

 and another hint
 by using the wraps for 10 and 20 the COA isn't emty at all, so i think
 required dosn't work because of this also


 --
 Ralf-René Schröder
 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] Edit temlate.html and remap in TemplaVoila

2011-09-12 Thread Kay Obermueller
On 09/11/2011 08:55 PM, Oliver Salzburg wrote:
 On 2011-09-11 20:50, Kay Obermueller wrote:
 Hello all,
 I have set up a site with TemplaVoila and want to clone it. For this I
 want to change the text in a div container (top-center) on the top of
 the site. This was not mapped with TemplaVoila and is only in the
 template.html.
 I changed top-center in temlate.html and then remapped it in
 TemplaVoila. But top-center did not change, despite I even tried to
 rename template.html to make sure that it is reread.
 How can I change top-center in the template? Or could I overwrite it's
 content with TypoScript?
 Thanks in advance.

 Kay

 If you just changed the contents of a single div on the page, I don't
 even see why you would need to re-map the template.
 Usually when you update the html file, TemplaVoila will notice that
 when you open the template overview.
 Usually you just have to open and save it again and you're done with it.

 If you did all that and the content on the resulting page still hasn't
 changed, then the site is either using a different template or the page
 is still cached somewhere (either in the Typo3 page cache or your
 browser cache).



Thank you! This works in another installation. It seems to turn out now
that I have a problem with my TemplaVoila template.

Kay

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


Re: [TYPO3-english] Errors reading the *.xml.gz files in the new Extension Manager

2011-09-12 Thread François Suter

Hi all,


Execution of task Update Extension List (em) failed with the following
message: tx_em_Parser_MirrorXmlPullParser: Unable to open file ressource
compress.zlib:///some/path/typo3temp/1.mirrors.xml.gz.


I got a bit further here, but no solution yet.

I can perfectly read 
compress.zlib:///some/path/typo3temp/1.mirrors.xml.gz with fopen(), but 
not with XMLReader::open(), which is what the Extension Manager uses.


Does anyone have a clue what could have an influence here?

Cheers

--

Francois Suter
Cobweb Development Sarl - http://www.cobweb.ch
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] howto enable tt_content subheader in actual TYPO3 version 4.5

2011-09-12 Thread Josef Florian Glatz

Am 06.09.2011 18:35, schrieb Peter Klein:

http://lists.typo3.org/pipermail/typo3-dev/2011-August/044109.html

--
Peter Klein

On Tue, 06 Sep 2011 14:15:31 +0200, Josef Florian Glatz
ty...@josdesign.at  wrote:


Hello list,


I've found a snippet howto re-enable the subheader for tt_content table
in be.

t3lib_extMgm::addToAllTCAtypes(tt_content, 'subheader;;8', '',
'after:header');

After this, my subheader is positioned at the Extended Tab. Can I
position this new field after the header? The syntax my snippet seems
to be outdated.

thx in advance!


Thx for your support!

I've re-enabled subheader in TYPO3 4-5 with the following snippets. Is 
there an easier way to enable? Or maybe a possiblity to make it 
compatible with future TYPO3 releases without checking if csc has 
changed after a release-upgrade?


extTables.php:
---
# re-enabling Subheaders tt_content
t3lib_div::loadTCA('tt_content');
t3lib_extMgm::addFieldsToPalette(tt_content,'header','subheader;;8','after:header');



TypoScript:
--

//-
// subheader für alle bekannten tt_content elemente re-enablen
lib.subheader = TEXT
lib.subheader {
  field = subheader
  required = 1

  dataWrap = h5 class=subheader subheaderlayout-{field:layout}|/h5
  htmlSpecialChars = 1

  editIcons = tt_content:subheader,layout
  editIcons.beforeLastTag = 1
  editIcons.iconTitle.data = 
LLL:EXT:css_styled_content/pi1/locallang.xml:eIcon.subheader


  prefixComment = 2 | Subheader:
}


//-
// lib.subheader mit jeden type mergen
tt_content.header {
  // Typ .header beinhaltet in .20 eine Subheaderkonfiguration)
  20 
  // füllen mit Konfiguration für aktuelles Projekt
  20  lib.subheader
}

tt_content.text {
 15 = TEXT
 15  lib.subheader
}

tt_content.image {
 15 = TEXT
 15  lib.subheader
}

tt_content.textpic {
 10.15 = TEXT
 10.15  lib.subheader
}

tt_content.bullets {
 15 = TEXT
 15  lib.subheader
}

tt_content.table {
 15 = TEXT
 15  lib.subheader
}

tt_content.uploads {
 15 = TEXT
 15  lib.subheader
}

tt_content.table {
 15 = TEXT
 15  lib.subheader
}

tt_content.multimedia {
 15 = TEXT
 15  lib.subheader
}

tt_content.swfobject {
 15 = TEXT
 15  lib.subheader
}

tt_content.qtobject {
 15 = TEXT
 15  lib.subheader
}

tt_content.media {
 15 = TEXT
 15  lib.subheader
}

tt_content.search {
 15 = TEXT
 15  lib.subheader
}

tt_content.login {
 15 = TEXT
 15  lib.subheader
}

tt_content.splash {
 15 = TEXT
 15  lib.subheader
}

tt_content.menu {
 15 = TEXT
 15  lib.subheader
}

tt_content.shortcut {
 15 = TEXT
 15  lib.subheader
}

tt_content.list {
 15 = TEXT
 15  lib.subheader
}


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


Re: [TYPO3-english] page access restrictions redirect

2011-09-12 Thread Tom Gillis
nobody?

2011/9/7 Tom Gillis t...@tidi.be

 hello list,

 when people click on a link to a page they dont have access to, they get
 redirected  because of

 config.typolinkLinkAccessRestrictedPages = 1
 config.typolinkLinkAccessRestrictedPages_addParams =
 referer=###RETURN_URL###logginerrorov=1

 this causes typo3 to replace the links to those pages.
 but if you go to the url directly by typing it in the adress bar, it does
 not redirect it with those extra params, it just ends up on the first page
 up in the tree structure thats accessable

 how can i make it redirect with those params?

 Regards

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


Re: [TYPO3-english] Wrap condition (required = 1) is not working!

2011-09-12 Thread Victor Livakovsky

Hi, Benoit.


temp.listConnexe = COA
temp.listConnexe {
10 = CONTENT
10 {

[snip...]

wrap = div data-role=contentdiv class=ui-body ui-body-ddiv
data-role=collapsible-set|/div/div/div
required = 1
}
}


When you're using 'wrap', content object becomes non-empty, and it doesn't 
matter, contains it other data, except wrap or not. Moreover, you can't use 
'required' directly to CONTENT, you should use: 
temp.listConnexe.10.stdWrap.required = 1 instead. But still this may not 
work for you, since object will already contain the data from 'wrap'.

As a solution, you may try to use wrap inside of 'stdWrap':
temp.listConnexe.10.stdWrap.wrap = div data-role=contentdiv 
class=ui-body ui-body-ddiv 
data-role=collapsible-set|/div/div/div 


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


[TYPO3-english] Cannot save feusers in backend

2011-09-12 Thread Jan Loderhose
Hi all,

this morning I noticed that I cannot save feuser records in the backend
of TYPO3 4.5.5.

My research for insights (forge, mailing lists) on this topic remains
fruitless so far. Since feusers are a major feature of TYPO3 I do not
believe this never occurred to anybody else before.

Can somebody give a hint, e.g. is there a patch or discussion already?

Thanks, Jan


-- 
Projektmanager Internet und eCommerce
Senior TYPO3-Integrator
Senior SEO Engineer

https://www.xing.com/profile/Jan_Loderhose

artif orange GmbH  Co. KG
werbung . internet . it . beratung

Am Lorettoplatz  Tel: +49 7071 79527-0
Gölzstrasse 17  Fax: +49 7071 79527-29
72072 Tübingen  http://www.artif-orange.de

Geschäftsführer: Matthias Betz u. Andreas Brus
Amtsgericht Stuttgart HRA 381480
USt-IdNr.: DE240919366

persönlich haftende Gesellschafterin:
Betz  Kögel Verwaltungs GmbH
Amtsgericht Stuttgart HRB 382647
Sitz der Gesellschaft: Tübingen
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] Wrap condition (required = 1) is not working!

2011-09-12 Thread Ralf-Rene Schröder
untested, but i think this will work

temp.listConnexe = COA
temp.listConnexe {
10 = CONTENT
10 {
table = tt_content
select {
languageField=sys_language_uid
where = (colPos=2)
orderBy = sorting
}
 renderObj = COA
renderObj {
10 = TEXT
10 {
field = header
wrap = h3|/h3
required = 1
}
20 = TEXT
20 {
field = bodytext
wrap = p|/p
required = 1
}
wrap = div data-role=collapsible data-collapsed=true
data-theme=b|/div
stdWrap.required = 1
}
wrap = div data-role=contentdiv class=ui-body ui-body-ddiv
data-role=collapsible-set|/div/div/div
stdWrap.required = 1
}
}

-- 
Ralf-René Schröder
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 save feusers in backend

2011-09-12 Thread Søren Malling
Hi Jan,

As a Senior TYPO3-Integrator i expect that you can provide us with
some kind of error message?

Did you check with extensions installed that might conflict due to hooks etc.

Regards,

Søren Malling

TYPO3 Translation - http://translation.TYPO3.org
Twitter: twitter.com/sorenmalling



On Mon, Sep 12, 2011 at 12:12 PM, Jan Loderhose loderh...@cephalopo.de wrote:
 Hi all,

 this morning I noticed that I cannot save feuser records in the backend
 of TYPO3 4.5.5.

 My research for insights (forge, mailing lists) on this topic remains
 fruitless so far. Since feusers are a major feature of TYPO3 I do not
 believe this never occurred to anybody else before.

 Can somebody give a hint, e.g. is there a patch or discussion already?

 Thanks, Jan


 --
 Projektmanager Internet und eCommerce
 Senior TYPO3-Integrator
 Senior SEO Engineer

 https://www.xing.com/profile/Jan_Loderhose

 artif orange GmbH  Co. KG
 werbung . internet . it . beratung

 Am Lorettoplatz  Tel: +49 7071 79527-0
 Gölzstrasse 17  Fax: +49 7071 79527-29
 72072 Tübingen  http://www.artif-orange.de

 Geschäftsführer: Matthias Betz u. Andreas Brus
 Amtsgericht Stuttgart HRA 381480
 USt-IdNr.: DE240919366

 persönlich haftende Gesellschafterin:
 Betz  Kögel Verwaltungs GmbH
 Amtsgericht Stuttgart HRB 382647
 Sitz der Gesellschaft: Tübingen
 ___
 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] Indexed Search display incorrect result count

2011-09-12 Thread Oliver Salzburg

On 2011-09-08 21:17, Oliver Salzburg wrote:

Hi,

I have a problem with indexed search. When searching for certain terms
it will show a completely incorrect result count on the initial result
page. Stepping through the result pages will make indexed search
continuously adjust the result count (and thus the page count as well).

I have found very old bug reports regarding this issue and also a report
on this list:
http://lists.typo3.org/pipermail/typo3-english/2006-September/031396.html

But the final response kind of sounds like Yeah, that's how it's
supposed to be and I have a hard time accepting that.

Cheers



Setting search.exactCount fixed the problem (as far as I can tell right
now).

plugin.tx_indexedsearch.search.exactCount = 1
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Cannot save feusers in backend

2011-09-12 Thread Jan Loderhose
I forgot to describe the actual problem ... Thanks for the reminder,
Søren. My bad, my apology ...

This again shows: Coffee first, than bug hunting.

Above all, it turned out the bug set in front of the screen.

I feel a bit sheepish now and will make sure to remember describing a
bug more detailed next time if it's a real bug.

Cheers, Jan



Am 12.09.2011 12:36, schrieb Søren Malling:
 Hi Jan,
 
 As a Senior TYPO3-Integrator i expect that you can provide us with
 some kind of error message?
 
 Did you check with extensions installed that might conflict due to hooks etc.
 
 Regards,
 
 Søren Malling
 
 TYPO3 Translation - http://translation.TYPO3.org
 Twitter: twitter.com/sorenmalling
 
 
 
 On Mon, Sep 12, 2011 at 12:12 PM, Jan Loderhose loderh...@cephalopo.de 
 wrote:
 Hi all,

 this morning I noticed that I cannot save feuser records in the backend
 of TYPO3 4.5.5.

 My research for insights (forge, mailing lists) on this topic remains
 fruitless so far. Since feusers are a major feature of TYPO3 I do not
 believe this never occurred to anybody else before.

 Can somebody give a hint, e.g. is there a patch or discussion already?

 Thanks, Jan


 --
 Projektmanager Internet und eCommerce
 Senior TYPO3-Integrator
 Senior SEO Engineer

 https://www.xing.com/profile/Jan_Loderhose

 artif orange GmbH  Co. KG
 werbung . internet . it . beratung

 Am Lorettoplatz  Tel: +49 7071 79527-0
 Gölzstrasse 17  Fax: +49 7071 79527-29
 72072 Tübingen  http://www.artif-orange.de

 Geschäftsführer: Matthias Betz u. Andreas Brus
 Amtsgericht Stuttgart HRA 381480
 USt-IdNr.: DE240919366

 persönlich haftende Gesellschafterin:
 Betz  Kögel Verwaltungs GmbH
 Amtsgericht Stuttgart HRB 382647
 Sitz der Gesellschaft: Tübingen
 ___
 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] Wrap condition (required = 1) is not working!

2011-09-12 Thread Benoit Montereau
Hi Ralf and Viktor,

Using

stdWrap.wrap = div data-role=contentdiv class=ui-body ui-body-ddiv
data-role=collapsible-set|/div/div/div
stdWrap.required = 1

as latest wrap operation instead of

wrap = div data-role=contentdiv class=ui-body ui-body-ddiv
data-role=collapsible-set|/div/div/div

solved my problem. Thanks both for your help.

Cheers,
Ben


2011/9/12 Ralf-Rene Schröder ralf.r...@online.de

 untested, but i think this will work

 temp.listConnexe = COA
 temp.listConnexe {
 10 = CONTENT
 10 {
 table = tt_content
 select {
 languageField=sys_language_uid
 where = (colPos=2)
 orderBy = sorting
 }
  renderObj = COA
 renderObj {
 10 = TEXT
 10 {
 field = header
 wrap = h3|/h3
 required = 1
 }
 20 = TEXT
 20 {
 field = bodytext
 wrap = p|/p
 required = 1
 }
 wrap = div data-role=collapsible data-collapsed=true
 data-theme=b|/div
 stdWrap.required = 1
 }
 wrap = div data-role=contentdiv class=ui-body ui-body-ddiv
 data-role=collapsible-set|/div/div/div
 stdWrap.required = 1
 }
 }

 --
 Ralf-René Schröder
 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] page access restrictions redirect

2011-09-12 Thread Michael Cannon
Tom,

Page access redirection was a major pain of mine as well till I figured out the 
following bits.

1. In TYPO3 page, set the page properties Access to require login or a user 
group. Do NOT set the Login Mode.

2. In localconf.php...

$TYPO3_CONF_VARS['FE']['pageNotFound_handling'] = 
'USER_FUNCTION:fileadmin/scripts/pageNotFoundHandling.php:user_pageNotFound-pageNotFound';

3. In fileadmin/scripts/pageNotFoundHandling.php...

?php
define(LOGIN_URL, http://www.example/subscribe/login-successful/login.html;);
define(NOTFOUND_URL, http://www.example/;);

class user_pageNotFound {
  function pageNotFound($param, $ref) {
if ($param[pageAccessFailureReasons][fe_group] != array(=0)) {
  header(HTTP/1.0 403 Forbidden);
  $url = LOGIN_URL.?redirect_url= . $param[currentUrl];
} else {
  $url = NOTFOUND_URL;
}

session_start();
$strCookie = 'PHPSESSID=' . $_COOKIE['PHPSESSID'] . '; path=/';
session_write_close();

$c = curl_init();
curl_setopt($c, CURLOPT_URL, $url);
curl_setopt($c, CURLOPT_COOKIE, $strCookie);
$contents = curl_exec($c);
curl_close($c);

if ($contents) return $contents;
else return FALSE;
  }
}
?


--
Michael Cannon
President, Aihrus
Italy +39 366 702 7237
US +1 617 539 6072

Professional TYPO3 Support Since 2003
http://aihr.us



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


Re: [TYPO3-english] Indexed search displays results in all site languages

2011-09-12 Thread Oliver Salzburg

On 2011-09-08 21:21, Oliver Salzburg wrote:

Hi,

I have a site that uses 4 languages. When performing a search on the
site while using the default language, indexed search will return
results in all 4 languages configured on the site.
Performing the same search in any of the 3 non-default languages, will
only show results in the selected language.

I use the following TS and thought it would be sufficient to handle the
issue.

plugin.tx_indexedsearch._DEFAULT_PI_VARS.lang = 0
[globalVar = GP:L = 1]
plugin.tx_indexedsearch._DEFAULT_PI_VARS.lang = 1
[end]
[globalVar = GP:L = 2]
plugin.tx_indexedsearch._DEFAULT_PI_VARS.lang = 2
[end]
[globalVar = GP:L = 3]
plugin.tx_indexedsearch._DEFAULT_PI_VARS.lang = 3
[end]

Thanks for any help


So I have been investigating this issue further and noticed, that the 
results that were being shown in the wrong language were exclusively

tt_news entries. It all isn't very surprising given that the crawler
configuration for our tt_news section is:

tx_crawler.crawlerCfg.paramSets.www-tt_news = 
tx_ttnews[tt_news]=[_TABLE:tt_news;_PID:512]


So no language information is relayed and all tt_news entries (no
matter what language) will be stored with language_id = 0.

So I thought I was being smart by simple changing the configuration to:

tx_crawler.crawlerCfg.paramSets.www-tt_news = 
tx_ttnews[tt_news]=[_TABLE:tt_news;_PID:512]L=[_TABLE:tt_news;_FIELD:sys_language_uid;_PID:512]


But that's just as bad. Now every article get stored with every
language_id.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] RTE doesn't load in safari 5.1. - even after applying patch

2011-09-12 Thread Martin Spencer
Hello!

There is a bug in the default RTE. In Safari 5.1 (both Mac and Windows) it 
stops at the initial loading graphic and doesn't display the editor input field 
at all.
(source: 
http://www.tomsdongle.com/blog/preview/article/typo3-rte-bug-safari-51-lion/)

Now there has been a patch to this bug, which causes the RTE UI (buttons etc.) 
to load, but not the textarea itself. I've been unable to find any reference to 
this problem and would be very glad of any help.
(screenshot after applying the patch: 
http://img52.imageshack.us/img52/3427/screenshot01nx.png)

Cheers!
Martin

PS: Yes, I've tried clearing the chaches.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] introduction package header slide show

2011-09-12 Thread j.j
Maybe there is somewhere an active english forum to discuss this issue?

On 09/09/2011, j.j julija...@gmail.com wrote:
 Please anybody with detail instructions where to add what to make
 header slide active on the pure typo3 installation with introduction
 package preloaded. Please help a newbie:)

 On 09/09/2011, j.j julija...@gmail.com wrote:
 Maybe some other guys know how to do this?

 On 08/09/2011, Sergey Alexandrov s...@alexandrov.us wrote:
 I'm sorry, I'm not familiar with introduction package, always use
 hand-made templates :)

 On Thursday, September 08, 2011 1:03:32 PM, j.j wrote:
 I have also trief jf_headerslide but it's a;so the same problem for me.
 I
 can install it but i don't know how to put mark and template. Maybe
 somebody
 knows step by step? Lets suppose i have a pure introduction package.
 Where
 is the template and where is the mark?
 Julius

 On Thu, Sep 8, 2011 at 12:27 AM, Sergey
 Alexandrovs...@alexandrov.uswrote:

 Oh, I recall you have to insert that mark into your template


 On 9/7/2011 3:09 PM, j.j wrote:

 Hello again,

 I included the extension to template record but it doesn not work
 anyway.
 Can somebody point me the way please?

 On Tue, Sep 6, 2011 at 11:04 PM, Sergey
 Alexandrovs...@alexandrov.us**
 wrote:

   Not sure about mark, but template should be under Template -
 Edit
 whole template record -   Includes tab


 On 9/6/2011 3:54 PM, j.j wrote:

   Hi,

 Thanks. But where i should input as it says  add mark and template
 the
 following code.

 Julius

 On Tue, Sep 6, 2011 at 10:48 PM, Sergey
 Alexandrovs...@alexandrov.us*
 ***
 wrote:

   t3s_headerslider


 On 9/6/2011 3:20 PM, j.j wrote:

   Hello,

 I have installed typo3 with introduction package. Which extension
 enables
 the header slide slow for introduction package and how to
 configure
 it.
 I
 know hot to slide show content but still don't know know ho to
 slide
 show
 header.

 Julius
 __**_
 TYPO3-english mailing list
 TYPO3-english@lists.typo3.org
 http://lists.typo3.org/cgi-**bin/mailman/listinfo/typo3-
 **englishhttp://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
 http://lists.typo3.**org/cgi-**bin/mailman/**
 listinfo/typo3-**englishhttp://lists.typo3.org/cgi-**bin/mailman/listinfo/typo3-**english

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

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


 --
 Sent from my mobile device


 --
 Sent from my mobile device


-- 
Sent from my mobile device
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] introduction package header slide show

2011-09-12 Thread Georg Ringer

Hi,

Am 09.09.2011 16:37, schrieb j.j:

Please anybody with detail instructions where to add what to make
header slide active on the pure typo3 installation with introduction
package preloaded. Please help a newbie:)


just that you know: The introduction package should not server as 
starting package but more for a quick demo. IMO there are also some 
legal things behind that and not everything unter GPL


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


Re: [TYPO3-english] RTE doesn't load in safari 5.1. - even after applying patch

2011-09-12 Thread Sergey Alexandrov

Try /tinymce_rte it does work well in Safari for Windows

/
On 9/12/2011 10:20 AM, Martin Spencer wrote:

Hello!

There is a bug in the default RTE. In Safari 5.1 (both Mac and Windows) it 
stops at the initial loading graphic and doesn't display the editor input field 
at all.
(source: 
http://www.tomsdongle.com/blog/preview/article/typo3-rte-bug-safari-51-lion/)

Now there has been a patch to this bug, which causes the RTE UI (buttons etc.) 
to load, but not the textarea itself. I've been unable to find any reference to 
this problem and would be very glad of any help.
(screenshot after applying the patch: 
http://img52.imageshack.us/img52/3427/screenshot01nx.png)

Cheers!
Martin

PS: Yes, I've tried clearing the chaches.
___
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] Indexed search displays results in all site languages

2011-09-12 Thread Oliver Salzburg

On 2011-09-12 15:41, Oliver Salzburg wrote:

On 2011-09-08 21:21, Oliver Salzburg wrote:

Hi,

I have a site that uses 4 languages. When performing a search on the
site while using the default language, indexed search will return
results in all 4 languages configured on the site.
Performing the same search in any of the 3 non-default languages, will
only show results in the selected language.

I use the following TS and thought it would be sufficient to handle the
issue.

plugin.tx_indexedsearch._DEFAULT_PI_VARS.lang = 0
[globalVar = GP:L = 1]
plugin.tx_indexedsearch._DEFAULT_PI_VARS.lang = 1
[end]
[globalVar = GP:L = 2]
plugin.tx_indexedsearch._DEFAULT_PI_VARS.lang = 2
[end]
[globalVar = GP:L = 3]
plugin.tx_indexedsearch._DEFAULT_PI_VARS.lang = 3
[end]

Thanks for any help


So I have been investigating this issue further and noticed, that the
results that were being shown in the wrong language were exclusively
tt_news entries. It all isn't very surprising given that the crawler
configuration for our tt_news section is:

tx_crawler.crawlerCfg.paramSets.www-tt_news =
tx_ttnews[tt_news]=[_TABLE:tt_news;_PID:512]

So no language information is relayed and all tt_news entries (no
matter what language) will be stored with language_id = 0.

So I thought I was being smart by simple changing the configuration to:

tx_crawler.crawlerCfg.paramSets.www-tt_news =
tx_ttnews[tt_news]=[_TABLE:tt_news;_PID:512]L=[_TABLE:tt_news;_FIELD:sys_language_uid;_PID:512]


But that's just as bad. Now every article get stored with every
language_id.


Ok, I'm now using a new configuration for each language like so:

tx_crawler.crawlerCfg.paramSets.www-tt_news = 
tx_ttnews[tt_news]=[_TABLE:tt_news;_PID:512;_WHERE:AND 
(sys_language_uid=0)]


tx_crawler.crawlerCfg.paramSets.www-tt_news-fr = 
tx_ttnews[tt_news]=[_TABLE:tt_news;_PID:512;_WHERE:AND 
(sys_language_uid=1)]L=1


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


[TYPO3-english] mail sending configuration problem

2011-09-12 Thread Gábor Horn

Hello,

i have a webserver which hosts many Typo3 sites with different versions, 
and with a recently migrated site i have problems with mails. The details:


1, this is a Typo3 4.4.7 system with quite complex configuration and 
some custom plugins so not very easy just to migrate the newest, and i 
don't think it's the Typo3 version that is the problem, i think it might 
be some configuration which still refers somehow to the previous 
server/environment the site was running on
2, sending testmail from install tool silently fails, no error but mail 
never arrives
3, from the same server a fresh installation of Typo3 4.5.5 just sends 
emails nicely from the install tool (and extensions), and did also 
before update and it was 4.3.3, and all other and differnet versions of 
Typo3 installations on the server sends emails fine, so i think it's not 
a server configuration issue
4, within this very problematic site sending emails with Direct Mail's 
mailtest (as well as its cronjob) works just fine
5, but other extensions like sr_feuser_register cannot send email. Also 
experience a noticable delay when registering a user on the frontend 
with sr_feuser_register at the final step after confirming my details 
and before getting the confirmation page about we've sent you an email 
please click on the link in it to activate your registration message. 
Some 20-30 secs of waiting here, as if something would timeout in the 
background. Althought when i try send email from installtool (both with 
Test t3lib_htmlmail checker or not) i don't experience such delay, only 
the fact the mail never arrives. No spam filtering issue, i think that 
might affect all other Typo3 install tool test mails as well.


In the localconf.php the following TYPO3['SYS'] values are set/changed:

$TYPO3_CONF_VARS['SYS']['sitename']
$TYPO3_CONF_VARS['SYS']['sitename']
$TYPO3_CONF_VARS['SYS']['encryptionKey']
$TYPO3_CONF_VARS[SYS][forceReturnPath]
$TYPO3_CONF_VARS[SYS][no_pconnect]
$TYPO3_CONF_VARS[SYS][t3lib_cs_convMethod]
$TYPO3_CONF_VARS[SYS][t3lib_cs_utils]
$TYPO3_CONF_VARS['SYS']['setDBinit']
$TYPO3_CONF_VARS['SYS']['enable_DLOG']
$TYPO3_CONF_VARS['SYS']['devIPmask']
$TYPO3_CONF_VARS['SYS']['displayErrors']
$TYPO3_CONF_VARS['SYS']['curlUse']
$TYPO3_CONF_VARS['SYS']['sqlDebug']
$TYPO3_CONF_VARS['SYS']['forceReturnPath']
$TYPO3_CONF_VARS['SYS']['textfile_ext']
$TYPO3_CONF_VARS['SYS']['recursiveDomainSearch']
$TYPO3_CONF_VARS['SYS']['compat_version']
$TYPO3_CONF_VARS['SYS']['systemLogLevel']
$TYPO3_CONF_VARS['SYS']['cookieHttpOnly']
$TYPO3_CONF_VARS['SYS']['useCachingFramework']
$TYPO3_CONF_VARS['SYS']['enable_errorDLOG']
$TYPO3_CONF_VARS['SYS']['enable_exceptionDLOG']
$TYPO3_CONF_VARS['SYS']['enableDeprecationLog']
$TYPO3_CONF_VARS['SYS']['phpTimeZone']
$TYPO3_CONF_VARS['SYS']['exceptionalErrors']
$TYPO3_CONF_VARS['SYS']['systemLog']

anybody please have an idea if any of those might affect the mail 
sending? Or any $TYPO3_CONF_VARS['BE'] or $TYPO3_CONF_VARS['EXT'] might 
couse the problem? I thought the install tool doesn't use those.


I also have a setting for 
$TYPO3_CONF_VARS['EXT']['extConf']['stoefln_pear_mail'] which is 
supposed to XClass t3lib_hmtlmail for usign pear to send mails - 
althought uncommenting it doesnt affect neither install tool test mail 
(still doesn't work) nor diect mail (still works).


Anybody please have an idea how i could debug this issue?

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


[TYPO3-english] typoscript multi-column mega-menu

2011-09-12 Thread jaco graaff

I want to split a submenu hierchy into columns for a multi-column mega-menu

the result would be something like this


subMenu001  | subMenu003 |  subMenu005 |
  item001   |   item001   |item001   |
  item002   |   item002   |item002   |
subMenu002  | subMenu004 | |
  item001   | item001 | 
|
  item002   | item002 | 
|




html:

div class=dropdown
   div class=column1
   h1subMenu001/h1
   item001
   item002
   h1subMenu002/h1
   item001
   item002
   /div
   div class=column2

   /div
/div

I tried using:

2 = TMENU
   2.expAll = 1
   ##2.wrap = |*|odd||even|*|


OR

allWrap =|*| 1|/1 || 2|/2 |*|

AND THEN

##  1st/even item   2nd/odd 
item
allWrap =   |*|   div class=column1|   ||  |/div 
|*|



but then the second closing /div tag won't get rendered if ther are an odd 
number (3,5,7) of menu items - as in subMenu005 in the example above


I tried using the solution at:
http://www.typo3wizard.com/en/snippets/menus/menu-with-2-colors-last-menuitem-depends-on-the-menuitem-before.html
but it only targets the second last item

- I would like to do this with typoscript - but for now will use jquery 
magick (php would also have a simple solution)


Does someone have an idea of how I can do this with typoscript

Thanks 


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


[TYPO3-english] ve_guestbook and missing labels

2011-09-12 Thread raptoruk

HI, just undated ext ve_guestbook to 2.10.1, the input labels have now
vanished with the exception of the RED obligatory asterix, the form is also
loading very slow now. Any idea's..?
-- 
View this message in context: 
http://old.nabble.com/ve_guestbook-and-missing-labels-tp32453155p32453155.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] introduction package header slide show

2011-09-12 Thread Historia

Hello J-J,

there is no problem with markers in the introduction package. Just make 
a new div container with e.g. id=headerSlider in your html template.

I put the code above the Title.
-

div id=headerSlider
pHeaderslider/p
/div

  h1 id=siteTitleWelcome to TYPO3/h1
---
In extension configuration plugin.automaketemplate
DIV.id.headerSlider = 1

then e.g.
plugin.tx_t3sheaderslider_pi1.sliderSize = 970,150

in page_configuration page
  headerSlider  plugin.tx_t3sheaderslider_pi1

I like the structure of the templates in the Introductionpackage. They 
are a bit complicated but a straightforward structure.


You can find an example on
www.abebaandabebe.com
however the JS is not working because of the other JScript elements on 
the page.


Herbert

Am 12/9/2011 5:38 ከሰዓት, schrieb j.j:

Maybe there is somewhere an active english forum to discuss this issue?

On 09/09/2011, j.jjulija...@gmail.com  wrote:

Please anybody with detail instructions where to add what to make
header slide active on the pure typo3 installation with introduction
package preloaded. Please help a newbie:)

On 09/09/2011, j.jjulija...@gmail.com  wrote:

Maybe some other guys know how to do this?

On 08/09/2011, Sergey Alexandrovs...@alexandrov.us  wrote:

I'm sorry, I'm not familiar with introduction package, always use
hand-made templates :)

On Thursday, September 08, 2011 1:03:32 PM, j.j wrote:

I have also trief jf_headerslide but it's a;so the same problem for me.
I
can install it but i don't know how to put mark and template. Maybe
somebody
knows step by step? Lets suppose i have a pure introduction package.
Where
is the template and where is the mark?
Julius

On Thu, Sep 8, 2011 at 12:27 AM, Sergey
Alexandrovs...@alexandrov.uswrote:


Oh, I recall you have to insert that mark into your template


On 9/7/2011 3:09 PM, j.j wrote:


Hello again,

I included the extension to template record but it doesn not work
anyway.
Can somebody point me the way please?

On Tue, Sep 6, 2011 at 11:04 PM, Sergey
Alexandrovs...@alexandrov.us**
wrote:

   Not sure about mark, but template should be under Template -
Edit

whole template record -Includes tab


On 9/6/2011 3:54 PM, j.j wrote:

   Hi,


Thanks. But where i should input as it says  add mark and template
the
following code.

Julius

On Tue, Sep 6, 2011 at 10:48 PM, Sergey
Alexandrovs...@alexandrov.us*
***
wrote:

   t3s_headerslider



On 9/6/2011 3:20 PM, j.j wrote:

   Hello,


I have installed typo3 with introduction package. Which extension
enables
the header slide slow for introduction package and how to
configure
it.
I
know hot to slide show content but still don't know know ho to
slide
show
header.

Julius
__**_
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-**bin/mailman/listinfo/typo3-
**englishhttp://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
http://lists.typo3.**org/cgi-**bin/mailman/**
listinfo/typo3-**englishhttp://lists.typo3.org/cgi-**bin/mailman/listinfo/typo3-**english



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



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


__**_

TYPO3-english