Re: [TYPO3] RealUrl, multidomain, multilanguage, single tree setup

2007-10-02 Thread Tomi Hrovatin
Ries, thank you for your answer. I'm posting it here so other can comment: *** Just a quick question, youa re accessing the site using these domains to test, right? http://www.eksotika.si/ & http//www.rare-exotic-plants.com/ ITo be honest I never did setup multi-domain with two

[TYPO3] Login problem on old install of Typo3.5

2007-10-02 Thread [EMAIL PROTECTED]
This problem relates to a very old install of Typo3 - if you have had experience of managing Typo3 v3.5 then you may be able to help me *Problem:* User Login does not appear to work on second domain in pagetree. *Situation:* one instance of Typo3 source (v3.5), two domains in page tree (t.c

[TYPO3] sr_feuser_register and datefield

2007-10-02 Thread Sune Brodersen
Hi List, Im having trouble adding a new datefield in the sr_feuser_register plugin. I have succesfully added other type of fields. It gets displayed right, but when i submit the form the data is not saved and i get no errormessage or anything. The field that gets rendered is a text input. But its

[TYPO3] Modifying $_GET array before a page is rendered

2007-10-02 Thread Vlatko Surlan
Hi list. What I've been looking how to do is, in short, a TS equivalent of doing this: $_GET['param'] = value I need this in order to manipulate output from an extension that uses a global GET parameter instead of a pi var: www.domain.com/index.php?id=43&album=1 That album=1 belongs to the ext

[TYPO3] Svar: sr_feuser_register and datefield

2007-10-02 Thread Sune Brodersen
Hi List, I found the solution. I just needed to make it a normal input field in the HTML: instead of ###TCA_INPUT_tx_uk90dcdbfields_90dc_startdate### And then add the following TS in the setup: plugin.tx_srfeuserregister_pi1.edit.evalValues.tx_uk90dcdbfields_90dc_startd ate = date

Re: [TYPO3] Modifying $_GET array before a page is rendered

2007-10-02 Thread Mathias Schreiber [TYPO3]
Vlatko Surlan schrieb: > Hi list. What I've been looking how to do is, in short, a TS equivalent > of doing this: > > $_GET['param'] = value > > I need this in order to manipulate output from an extension that uses a > global GET parameter > instead of a pi var: www.domain.com/index.php?id=43&a

Re: [TYPO3] Modifying $_GET array before a page is rendered

2007-10-02 Thread Vlatko Surlan
Mathias Schreiber [TYPO3] wrote: > Not possible afaik. > Are you the author of that extension? > Go away. This seems so basic to me I just can't believe it cannot be done. I am not the author, seems like I'll just have to modify the extension brute force.

Re: [TYPO3] eID $TSFE error

2007-10-02 Thread Peter Klein
Hi Sebastian. You need to pass the Id of the calling page to your eID PHP file. And since you got a "$page" var in this line: $TSFE = new $temp_TSFEclassName($TYPO3_CONF_VARS, $page, 0, true); I assume you allready has the page Id available. Then you can do something like this: // Add rootLine ar

Re: [TYPO3] eID $TSFE error

2007-10-02 Thread Peter Klein
I forgot something.. It should be: require_once(PATH_t3lib.'class.t3lib_page.php'); $GLOBALS['TSFE']->sys_page = t3lib_div::makeInstance('t3lib_pageSelect'); // Add rootLine array to TSFE, based on current page id. $GLOBALS['TSFE']->rootLine = $GLOBALS['TSFE']->sys_page->getRootLine($th

Re: [TYPO3] Modifying $_GET array before a page is rendered

2007-10-02 Thread Nikolas Hagelstein
Hi, Vlatko Surlan wrote: > Mathias Schreiber [TYPO3] wrote: >> Not possible afaik. Quick and dirty : index.php -> $_GET['whatever'] = 'something'; Bye, Nikolas ___ TYPO3-english mailing list TYPO3-english@lists.netfielders.de http://lists.netfielders.d

Re: [TYPO3] eID $TSFE error

2007-10-02 Thread Sebastian Böttger
Hi all, I finally use the ext_template_conf.txt now. It gives me the possibility to administrate the extension globally. Thx for your answers, Sebastian Peter Klein schrieb: > I forgot something.. It should be: > > require_once(PATH_t3lib.'class.t3lib_page.php'); > > $GLOBALS['TSFE']->sy

[TYPO3] alias input limited to 20 characters

2007-10-02 Thread hartmut
Hi, I'm having a problem with the input field for the page alias in the backend (Typo3 4.1.2). The input is limited to 20 characters. But looking at the database, in table pages the alias field is set to varchar 32. How can I fix that? best regards hartmut _

Re: [TYPO3] alias input limited to 20 characters

2007-10-02 Thread Patrick Gaumond
hartmut wrote: > Hi, > > I'm having a problem with the input field for the page alias in the > backend (Typo3 4.1.2). > The input is limited to 20 characters. But looking at the database, in > table pages the alias field is set to varchar 32. > > How can I fix that? I suppose it's not a brand

Re: [TYPO3] alias input limited to 20 characters

2007-10-02 Thread hartmut
Patrick Gaumond schrieb: > hartmut wrote: >> Hi, >> >> I'm having a problem with the input field for the page alias in the >> backend (Typo3 4.1.2). >> The input is limited to 20 characters. But looking at the database, in >> table pages the alias field is set to varchar 32. >> >> How can I fix t

[TYPO3] Wrap content element in div with dynamic id

2007-10-02 Thread Øyvind Frøland - UniWeb AS
Dear list, I need a way to wrap content elements on a given page with divs. So far I have tried to accomplish this by using [PIDinRootline = xx] and tt_content.text.20.wrap = |. Moreover I need the ID to be dynamic - if the element is the first element in the content area, it should have an id

Re: [TYPO3] alias input limited to 20 characters

2007-10-02 Thread hartmut
> What I also tried is putting: > $GLOBALS['TCA']['pages']['columns']['alias']['config']['size'] = 32; > in typo3conf/ext_tables.php > > But the only effect is that the input field is now double the size but > still not allowing more characters. > Got it. With adding: $TCA['pages']['columns'][

Re: [TYPO3] random teaser

2007-10-02 Thread Scotty C
Hey Roberto, I've got THE BEST solution for you, and it requires no extensions so it'll work no matter how many times Typo3 gets upgraded. All you do is three easy steps (side note: I'll use www.fleurt.ca as a reference): 1.) In your HTML Template, create a subpart. In my example, I call mine F

Re: [TYPO3] random teaser

2007-10-02 Thread Scotty C
Hey Roberto, I've got THE BEST solution for you, and it requires no extensions so it'll work no matter how many times Typo3 gets upgraded. All you do is three easy steps (side note: I'll use www.fleurt.ca as a reference): 1.) In your HTML Template, create a subpart. In my example, I call mine F

Re: [TYPO3] random teaser

2007-10-02 Thread Scotty C
Hey Roberto, I've got THE BEST solution for you, and it requires no extensions so it'll work no matter how many times Typo3 gets upgraded. All you do is three easy steps (side note: I'll use www.fleurt.ca as a reference): 1.) In your HTML Template, create a subpart. In my example, I call mine F

[TYPO3] tt_contentaccess limits alias to 20 characters

2007-10-02 Thread hartmut
Hi, seems that tt_contentaccess limits the input for page aliasses to 20. (ext_tables.php line 14) Should this be considered a bug? regards hartmut ___ TYPO3-english mailing list TYPO3-english@lists.netfielders.de http://lists.netfielders.de/cgi-bin/mai

Re: [TYPO3] alias input limited to 20 characters

2007-10-02 Thread hartmut
> Now the only thing left is to find out who set the value to 20, me or > some extension. > seems like tt_contentaccess was the evil-doer. :) -> new thread hartmut ___ TYPO3-english mailing list TYPO3-english@lists.netfielders.de http://lists.netfield

Re: [TYPO3] tm_contentaccess limits alias to 20 characters

2007-10-02 Thread Patrick Gaumond
hartmut wrote: > seems that tt_contentaccess limits the input for page aliasses to 20. > (ext_tables.php line 14) > Should this be considered a bug? Pssst, it's "tM_contentaccess". Yes it's a tm_contentaccess bug since a clean Core sets limit to 32. Write to our beloved Tapio and you'll see a n

Re: [TYPO3] tm_contentaccess limits alias to 20 characters

2007-10-02 Thread Tapio Markula
Patrick Gaumond kirjoitti: > hartmut wrote: > >> seems that tt_contentaccess limits the input for page aliasses to 20. >> (ext_tables.php line 14) >> Should this be considered a bug? > > Pssst, it's "tM_contentaccess". > > Yes it's a tm_contentaccess bug since a clean Core sets limit to 32. sor

Re: [TYPO3] tm_contentaccess limits alias to 20 characters

2007-10-02 Thread hartmut
Patrick Gaumond schrieb: > Pssst, it's "tM_contentaccess". Pardon. Shame on me. Wish I could edit my posts. Concerning Tapio's "stuff": I especially like his skin_grey_2, this should really be the next default skin for Typo3 instead of the depressing current one. Could win hundreds of new typo3

Re: [TYPO3] simple calendar time zone confusion

2007-10-02 Thread Katja Lampela
Sad to say, I had to give up with this - so just for someone who hasn't too much knowledge of php, this wasn't a simple calendar for me after all; though very promising. Katja Lampela kirjoitti: > Okay I try to live with the fact that these two things I can't reach > simultaneously: > 1. right

[TYPO3] no_cache =1 after migration to new server

2007-10-02 Thread Bartosz Aninowski
I have just moved website from devel server to client server. Eveything is the same, I have changed only domain in config.baseUrl admPanel info show no_cache=1, next refresh no_cache=0 and again no_cache=1 Parse time is 1000ms but should be 50ms. Any idea where is the problem? Bartosz. ___

Re: [TYPO3] Modifying $_GET array before a page is rendered

2007-10-02 Thread Vlatko Surlan
Nikolas Hagelstein wrote: > Quick and dirty : index.php -> $_GET['whatever'] = 'something'; > > Bye, > Nikolas > :) hehehe I aint contracting you to code for my clients from the banking circles. ;) ___ TYPO3-english mailing list TYPO3-english@lists.net

Re: [TYPO3] simple calendar time zone confusion

2007-10-02 Thread Giannis Economou
Hello... Just seen your post, and though you abandoned this, just an idea. We have being using simple calendar with success regarding the timezone in the past, but without the timezone fixes you described in your first post. In order to fix the timezone problem, we have done the following: In m

Re: [TYPO3] simple calendar time zone confusion

2007-10-02 Thread Katja Lampela
Wow - a bit late but maybe I will try this in next occasion. Because I really liked the simple calendar otherwise. Thank you very much Giannis! - Katja Giannis Economou kirjoitti: > Hello... > > Just seen your post, and though you abandoned this, just an idea. We > have being using simple ca

[TYPO3] realurl and fe-editing; multi-domain setup

2007-10-02 Thread Katja Lampela
Hello all, I haven't been able to make the realurl and FE editing (or View module in BE) working together while there are many domains involved. I get the TYPO3 error window and following error message Error! Reason: "rootpage/subpage-called-name/" could not be found, closest page matching is"