[TYPO3-english] RealURL 1.5.2 adds two // to the end of root page url

2008-10-13 Thread Dmitry Martynenko
Hi TYPO3, I have updated RealURL to latest version 1.5.2 and now in all of my breadcrumbs menues root link looks like http://example.com// (with two slashes at the end) I have this page structure: - root page -- level 1 child #1 -- level 1 child #2 -- level 1 child #3 --- level 2 child #1 --- le

Re: [TYPO3-english] Dynamic Database query using TypoScript

2008-10-13 Thread Miroslav Monkevic
Hi, All, Another option, using TEXT element: lib.code=TEXT lib.code { data = GPvar:tx_wecstaffdirectory_pi1|curstaff required = 1 wrap = {DB:tx_wecstaffdirectory_info:|:position_title} insertData = 1 } Peter Klein wrote: > Hi Valter. > It's not possible using the "DB:table:uid:field" set

Re: [TYPO3-english] unwanted cHash is generated in 50% links from USER_INT plugin

2008-10-13 Thread Dmitry Martynenko
Hi Dmitry, >> Links are generated from *one place* in plugin using this function call: >> >> $this->singlePageId = $GLOBALS["TSFE"]->id; >> $linkText = 'link text...'; >> $urlParameters = array('unid' => $rowData['code'], 'photo' => 1); >> $link = $this->pi_linkTP($linkText, $urlParameters, 1, $t

Re: [TYPO3-english] unwanted cHash is generated in 50% links from USER_INT plugin

2008-10-13 Thread Dmitry Martynenko
Hi Dmitry, >> Links are generated from *one place* in plugin using this function call: >> >> $this->singlePageId = $GLOBALS["TSFE"]->id; >> $linkText = 'link text...'; >> $urlParameters = array('unid' => $rowData['code'], 'photo' => 1); >> $link = $this->pi_linkTP($linkText, $urlParameters, 1, $t

Re: [TYPO3-english] RealURL configuration

2008-10-13 Thread Ronald Wiplinger (Lists)
Dmitry Dulepov wrote: > Hi! > > Ronald Wiplinger (Lists) wrote: > >> can't help to begin with, but I am now trying to do RealURL, ... how did >> you set it up? Which of the 100 documents did you follow? >> > > I wonder why do you need 100 if you have a single official manual inside the > e

Re: [TYPO3-english] RealURL configuration

2008-10-13 Thread Dmitry Dulepov
Hi! Ryan Bilesky wrote: > My current config is posted at: http://pastebin.com/m48bb88ca > > Thanks for your help. Please, read RealURL manual. Everything you need is there. Nothing is better than reading the documentation in this case. -- Dmitry Dulepov TYPO3 Core team My TYPO3 book: http://w

Re: [TYPO3-english] RealURL configuration

2008-10-13 Thread Dmitry Dulepov
Hi! Ronald Wiplinger (Lists) wrote: > can't help to begin with, but I am now trying to do RealURL, ... how did > you set it up? Which of the 100 documents did you follow? I wonder why do you need 100 if you have a single official manual inside the extension. Why choosing hard way when you alread

Re: [TYPO3-english] Special settings for TYPO3 localconf.php

2008-10-13 Thread Ronald Wiplinger (Lists)
Xavier Perseguers wrote: > Hi, > > >> I found a web site: >> http://www.aoline.com/typo3localconf.html >> >> which discusses special settings. >> >> Which of them would you recommend? >> > > Use the install tool if you are unsure or do not know what is available. > > Thank you for your t

Re: [TYPO3-english] RealURL configuration

2008-10-13 Thread Xavier Perseguers
Hi, > can't help to begin with, but I am now trying to do RealURL, ... how did > you set it up? Which of the 100 documents did you follow? Start with the documentation that comes with RealURL itself, it is always a good choice at beginning ;-) Then you'll see that most of the time, RealURL (in

Re: [TYPO3-english] RealURL configuration

2008-10-13 Thread Xavier Perseguers
Hi, > 2) before a page would be www.mysite.com/page.html and > www.mysite.com/page1/page2.html but now everything with without the .html, I > don't mind it being accessible via www.mysite.com/page but I want the links > to have tthe .html and I want it to be accessible with the .html as well,

Re: [TYPO3-english] Special settings for TYPO3 localconf.php

2008-10-13 Thread Xavier Perseguers
Hi, > I found a web site: > http://www.aoline.com/typo3localconf.html > > which discusses special settings. > > Which of them would you recommend? Use the install tool if you are unsure or do not know what is available. > I tried this one, but without any success, maybe it is not for 4.2.1 ???

[TYPO3-english] Special settings for TYPO3 localconf.php

2008-10-13 Thread Ronald Wiplinger (Lists)
I found a web site: http://www.aoline.com/typo3localconf.html which discusses special settings. Which of them would you recommend? I tried this one, but without any success, maybe it is not for 4.2.1 ??? $TYPO3_CONF_VARS['BE']['warning_email_addr'] = '[EMAIL PROTECTED]'; Is there an order you m

Re: [TYPO3-english] RealURL configuration

2008-10-13 Thread Ronald Wiplinger (Lists)
Ryan Bilesky wrote: > I have finally found out how to resolve some issues I had with RealURL, I > needed to utilize the speaking URL field after I did all the upgrades to the > newest typo3 and newest RealURL. I have 2 small issues though. > can't help to begin with, but I am now trying to d

[TYPO3-english] RealURL configuration

2008-10-13 Thread Ryan Bilesky
I have finally found out how to resolve some issues I had with RealURL, I needed to utilize the speaking URL field after I did all the upgrades to the newest typo3 and newest RealURL. I have 2 small issues though. 1) I use tt_news for news articles, and before all the upgrades the code I used

[TYPO3-english] Path in indexed_search results

2008-10-13 Thread Victor Livakovsky
Hello. There is "Path:" string, wich shows path to the document for each found record at indexed_search results page. The problem is, that it shows full path to the record. Example: I have pdf-document at page "Downloads" and path to it is: "Left Menu Bottom/about us/Downloads", but I don't want

[TYPO3-english] GIF image errors in error_log

2008-10-13 Thread Frank Sonck
Hi everybody, While checking out my error_log file I saw that I have a continuous flow of similar errors: identify: Missing an image file name identify: Not a GIF image file (typo3temp/pics/xx.gif) But there are no typo3temp/pics/xx.gif's on my page, only jpg / jpeg formatted images.

Re: [TYPO3-english] Dynamic Database query using TypoScript [solved]

2008-10-13 Thread Valter Rodrigues
It works! Thank you for this cool TypoScript study. Regargs, Valter O/H Peter Klein έγραψε: > Hi Valter. > It's not possible using the "DB:table:uid:field" setup, but you can do it > using a CONTENT element. > > Something like this. (Untested, as I don't have the ext you are using > installed

[TYPO3-english] "Resource" commerce extension recommendations

2008-10-13 Thread La Farge Douglas
Hi All, I have a new project that requires a commerce system. The "problem" is it's not requiring what I'd view as "typical" commerce system. The system needs to sell typo3 "resources". A registered FE_USER will be prompted to purchase various access points to the site. They might be requi

[TYPO3-english] TinyMCE port for TYPO3 (tinymce_rte) needs testing

2008-10-13 Thread Thomas Allmer
hey! We are currently trying to create another hopefully nice and usefully TinyMCE port for TYPO3. (some parts are based on tinyrte) It's main goal is to create an really easy approach to configure TinyMCE. It also come with a quite nice settings for the transformation. So you just need to ins

Re: [TYPO3-english] Bounces due to forwarding loop seems to be solved

2008-10-13 Thread ries van Twisk
On Oct 13, 2008, at 1:58 PM, Luc de Louw wrote: > Dear all, > > It seems that the unsubscription and banning of this person which have > been suspected to have a malicious configured mail server helped. > > Guess what? Its a Exchange Server! I tried to contact that person, but > the email is not

[TYPO3-english] Bounces due to forwarding loop seems to be solved

2008-10-13 Thread Luc de Louw
Dear all, It seems that the unsubscription and banning of this person which have been suspected to have a malicious configured mail server helped. Guess what? Its a Exchange Server! I tried to contact that person, but the email is not valid anymore. That was it what created the loop. Whatever.

Re: [TYPO3-english] Dynamic Database query using TypoScript

2008-10-13 Thread Peter Klein
Hi Valter. It's not possible using the "DB:table:uid:field" setup, but you can do it using a CONTENT element. Something like this. (Untested, as I don't have the ext you are using installed) -- cut -- lib.code = COA_INT lib.code { 10 = CONTENT 10.table = tx_wecstaffdirectory_info 10.selec

Re: [TYPO3-english] Idexed Search and PDF-files

2008-10-13 Thread Victor Livakovsky
> I need to give an opportunity for site users to search phrases in > pdf-files, linked somewhere on site or located in some specific > directory. Oops... Shame upon me... There is a "Path to PDF parsers" option at indexed_search configuration. Sorry for disturbing. I need to sleep, because I'm s

[TYPO3-english] sr_feuser_register update issue

2008-10-13 Thread Atul Shinh
Hi all, I am using "sr_feuser_register" (2.5.15) plugin for user registration. It is working fine. But when the logged user has to update his profile the after preview, when I click on update button it just hangs. I have also used xclass for the same plugin for restricting the number files that

Re: [TYPO3-english] Cannot login anymore

2008-10-13 Thread Ronald Wiplinger (Lists)
Bas v.d. Wiel wrote: > Hi Ronald, > You could try uploading the following PHP script (all warranties are > void) and loading it in your browser: > > Thank you. I could in the meantime manage it. In the Install tool is under Database Analyser the function Clear tables, which allowed me to clear

Re: [TYPO3-english] Cannot login anymore

2008-10-13 Thread Bas v.d. Wiel
Hi Ronald, You could try uploading the following PHP script (all warranties are void) and loading it in your browser: Hopefully you know how to deal with PHP a bit. You should exchange the placeholder values in the above script with the real values for your database. The 'TRUNCATE' SQL comman

[TYPO3-english] Idexed Search and PDF-files

2008-10-13 Thread Victor Livakovsky
Hello. I need to give an opportunity for site users to search phrases in pdf-files, linked somewhere on site or located in some specific directory. I've searched in list for answer and found only this thread: http://lists.netfielders.de/pipermail/typo3-project-dam/2006-August/000463.html A guy th

Re: [TYPO3-english] Cannot login anymore

2008-10-13 Thread Ronald Wiplinger (Lists)
Dmitry Dulepov wrote: > Hi! > > Ronald Wiplinger (Lists) wrote: > >> HOW can I clear the table cache_pages, sothat no further damages will occur? >> > > Man, you use TYPO3 :) Have you even seen "clear page cache"? :) > > Did I mention that I cannot login? I learned after I am logged out

Re: [TYPO3-english] Cannot login anymore

2008-10-13 Thread Dmitry Dulepov
Hi! Ronald Wiplinger (Lists) wrote: > HOW can I clear the table cache_pages, sothat no further damages will occur? Man, you use TYPO3 :) Have you even seen "clear page cache"? :) -- Dmitry Dulepov TYPO3 Core team My TYPO3 book: http://www.packtpub.com/typo3-extension-development/book In the blo

Re: [TYPO3-english] How can I get the number of pictures in a image-block?

2008-10-13 Thread Peter Klein
Hi Christopher. Take a look at how a standard Image CE is rendered using TS, by using the Typoscript Object Browser. Then you'll see a registervalue that might be usable for you. register : IMAGE_NUM_CURRENT Also take a look at how the original titleText/altText is defined. -- Peter Klein "Ch

Re: [TYPO3-english] Cannot login anymore

2008-10-13 Thread Ronald Wiplinger (Lists)
Valter Rodrigues wrote: > Hi, > You could reset a backend password using phpMyAdmin in table be_users. > Put a known hash in password field. > I came closer to the problem, but don't know how to solve it!!! The webhoster has a limit of 100 MB on the database. The table cache_pages has a size

Re: [TYPO3-english] [Typo3] Help! How to access config variables from TS

2008-10-13 Thread Peter Klein
10 = TEXT 10.data = GPvar:L 10.required = 1 -- Peter Klein On Mon, 13 Oct 2008 12:30:15 +0200, Joerg Wagner <[EMAIL PROTECTED]> wrote: > >10 = TEXT >10.value < config.language > > >Martin Kindler schrieb: >> Excuse me! I am too stupid! >> >> How can I access a configuration parameter in TS?

Re: [TYPO3-english] Ameos - Rss feed

2008-10-13 Thread Luc Muller
Could you please check if there's some file named somemd5name.xml in /uploads/tx_ameosformidablerssparser if not, I think it's a problem in the writing of the file. if the file is there and contains RSS, then it's a problem on parser RSS data. Can you give me this hint ? Luc Muller =:0) Per

Re: [TYPO3-english] RTE inline styles instead of classes

2008-10-13 Thread stefano cecere
check and ask in the t.p.rte newsgroup!! stefano Rudy Gnodde wrote: > Hello everyone, > > I recently upgraded a TYPO3 installation of a website which also has a > newsletter using direct mail to version 4.2.1. I noticed the RTE which > comes with 4.2.1 (version 1.7.5) uses classes to align text

Re: [TYPO3-english] Using start/stop for Contents in backend

2008-10-13 Thread stefano cecere
i would use a time programmed workspace to set/unset the "disable editing by non-admin" flag in the page. stefano Markus Bucher wrote: > Hi, > > is it possible to use the start/stop functionality to limit the > backendaccess to a content-element or page to a certain time? To expand > the Acces

Re: [TYPO3-english] Localisation value and locale_all value

2008-10-13 Thread Andreas Burg
hello Rupali, > i want to know how can i find the locale_all and htmlTag_langKey values for > any language? > page.config.locale_all = en_UK > page.config.htmlTag_langKey = en_UK the locale_all you can find on your server -> "; system("locale -a"); echo ""; ?> html attribute "lang" perh

Re: [TYPO3-english] RTE inline styles instead of classes

2008-10-13 Thread Walrick Bosch
Rudy Gnodde wrote: > If it's possible I'd like to get inline styles. But if that's not > possible, what am I missing in the configuration for the align attribute? I believe it's possible to revert the RTE to it's former behaviour, by using the Update Wizard of the Install Tool. Regards, Walrick

Re: [TYPO3-english] problem in typo3 4.2 [Attempt to modify record '' (tt_content:0) without permission]

2008-10-13 Thread Francois Suter
Hi, > after adding a new content element I get an error msg > > Attempt to modify record '' (tt_content:0) without permission I've had this kind of problems with tables that had no primary key for some reason. I would advise you to go to the Install Tool, in the Database Analyzer and run a "Co

Re: [TYPO3-english] special query

2008-10-13 Thread Markus Bucher
Hi Christian, Christian Tauscher schrieb: > This mail was already posted in direct-mail list, but unfortunatelly no > solution was found. what a pity ;o) > The cateory field ist a comma separated list of integers. > > Trying to bild a special query looks first simple, but I failed finally. > >

Re: [TYPO3-english] Apply a class to a tt_news item

2008-10-13 Thread Lamb, Brian
Any ideas? Your assistance would be greatly appreciated. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Lamb, Brian Sent: Thursday, October 09, 2008 8:40 AM To: TYPO3 English Subject: [TYPO3-english] Apply a class to a tt_news item Hello all, I am

[TYPO3-english] RTE inline styles instead of classes

2008-10-13 Thread Rudy Gnodde
Hello everyone, I recently upgraded a TYPO3 installation of a website which also has a newsletter using direct mail to version 4.2.1. I noticed the RTE which comes with 4.2.1 (version 1.7.5) uses classes to align text. This isn't a problem in the website itself, but in the newsletter it is a (

[TYPO3-english] Localisation value and locale_all value

2008-10-13 Thread Rupali Gupta
Hello List, i want to know how can i find the locale_all and htmlTag_langKey values for any language? page.config.locale_all = en_UK page.config.htmlTag_langKey = en_UK second i would like to know if there is way to set the Default value of Localisation setting under (page properties -> options

[TYPO3-english] Using start/stop for Contents in backend

2008-10-13 Thread Markus Bucher
Hi, is it possible to use the start/stop functionality to limit the backendaccess to a content-element or page to a certain time? To expand the Access-Module to use datetime as well as usergroups. Like "until August 2nd noone but admins may alter this page, but afterwards it is allowed"? Any

Re: [TYPO3-english] [Typo3] Help! How to access config variables from TS

2008-10-13 Thread Rupali Gupta
by typolink, smthing like this: 20 = HTML 20 { value = English value { wrap = | typolink.parameter.data = page:uid typolink.additionalParams = &L=2 } } 2008/10/13 Joerg Wagner <[EMAIL PROTECTED]> > > 10 = TEXT > 10.value < config.language > > > Martin Kindler schrieb: > > Excuse

Re: [TYPO3-english] Ameos - Rss feed

2008-10-13 Thread Per Inge Håland
Hi I want to show a feed on my webpage. I have installed Ameos Formidable 1.1.0, MagpieRSS 0.72 ver 1.0.1 and Ameos Formidable Rss Parser ver. 1.0.1 - included the static template. My typo3 environment is running on a virtual server (VMWare) and is hosting an intranet site. It resides inside a fi

Re: [TYPO3-english] sign up form code image

2008-10-13 Thread Achim Gerber
Hi Xavier, THANKS a lot - now I know what to look for!!! Achim > This is called a captcha, thus search for captcha in TER. > > ___ TYPO3-english mailing list TYPO3-english@lists.netfielders.de http://lists.netfielders.de/cgi-bin/mailman/listinfo/typ

Re: [TYPO3-english] switch to templavoila

2008-10-13 Thread Andreas Burg
>> Yes if it is XHTML valid (XHTML 1.0 transitional at least) >> > > How do I find out if it is? validate it, or use this config. doctype = xhtml_trans xhtmlDoctype= xhtml_trans xmlprologue = none doctypeSwitch = 0 htmlTag_dir = ltr xhtml_cleaning = al

Re: [TYPO3-english] switch to templavoila

2008-10-13 Thread Andreas Burg
> Many... Mainly you are not limited to 4 columns, you can have as many as > you want (from zero to infinity). I have 6 columns in my BE without TV and never heard about a limitation. Andreas ___ TYPO3-english mailing list TYPO3-english@lists.netfielde

Re: [TYPO3-english] switch to templavoila

2008-10-13 Thread Ronald Wiplinger (Lists)
Dmitry Dulepov wrote: > Hi! > > Ronald Wiplinger (Lists) wrote: > >> 1. can I just install templavoila and use it? >> > > Yes > > >> Can I use the template I >> have now continue use in templavoila? >> > > Yes if it is XHTML valid (XHTML 1.0 transitional at least) > How do I fin

Re: [TYPO3-english] Cannot login anymore

2008-10-13 Thread Valter Rodrigues
Hi, You could reset a backend password using phpMyAdmin in table be_users. Put a known hash in password field. Regards, Valter O/H Ronald Wiplinger (Lists) ??: > I start a new thread with it, ... > > I have installed two wec modules which were not working. After that I > got logged out (tim

Re: [TYPO3-english] switch to templavoila

2008-10-13 Thread Dmitry Dulepov
Hi! Ronald Wiplinger (Lists) wrote: > 1. can I just install templavoila and use it? Yes > Can I use the template I > have now continue use in templavoila? Yes if it is XHTML valid (XHTML 1.0 transitional at least) > 2. can the web editor easy adapt to that? Yes. It is even easier than with re

[TYPO3-english] Dynamic Database query using TypoScript

2008-10-13 Thread Valter Rodrigues
Hi! I 'm trying the following typoscript to make a db query: lib.code=TEXT lib.code.data=DB:tx_wecstaffdirectory_info:55:position_title Is there any way to replace the 55 with a dynamic value? For example lib.temp.data = GPvar:tx_wecstaffdirectory_pi1|curstaff and then replace the 55 with the li

[TYPO3-english] switch to templavoila

2008-10-13 Thread Ronald Wiplinger (Lists)
I got the idea that it would be time to switch to templavoila. 1. can I just install templavoila and use it? Can I use the template I have now continue use in templavoila? 2. can the web editor easy adapt to that? 3. what are the advantages over the normal style? (I believe there are many words a

[TYPO3-english] tt_prodcuts

2008-10-13 Thread Roberto Torresani
Hi all! I'm configuring a shop with tt_products and I have two question: - how do I show the related products in the single view? - I create a product and a article of this product. I can't list the article in product list (or article list); what I wrong? I set the parameter plugin.tt_products.u

Re: [TYPO3-english] problem in typo3 4.2 [Attempt to modify record '' (tt_content:0) without permission]

2008-10-13 Thread JoH asenau
> Here is a strange problem in typo3-4.2 > after adding a new content element I get an error msg > Attempt to modify record '' (tt_content:0) without permission > Could any one kindly suggest why is it happening and how can it be > fixed ? Currently your question is just like asking: I'm trying to

[TYPO3-english] problem in typo3 4.2 [Attempt to modify record '' (tt_content:0) without permission]

2008-10-13 Thread J. Bakshi
Hello All, Here is a strange problem in typo3-4.2 after adding a new content element I get an error msg Attempt to modify record '' (tt_content:0) without permission Could any one kindly suggest why is it happening and how can it be fixed ? thanks -- ~

[TYPO3-english] Re: [Typo3] Help! How to access config variables from TS

2008-10-13 Thread Joerg Wagner
10 = TEXT 10.value < config.language Martin Kindler schrieb: > Excuse me! I am too stupid! > > How can I access a configuration parameter in TS? > I want to add the current language as an URL parameter. > config.language is set in my template. > But how to retrieve it? > > I do not find any e

Re: [TYPO3-english] sign up form code image

2008-10-13 Thread Xavier Perseguers
Hello, > e.g. when you create a new yahoo email account there is this code > displayed in an image a human user can read to type it in. > > I would like to use such kind of an image in my extension. > > Is there some php / typo3 code I can reuse? This is called a captcha, thus search for captch

[TYPO3-english] sign up form code image

2008-10-13 Thread Achim Gerber
Hello all, e.g. when you create a new yahoo email account there is this code displayed in an image a human user can read to type it in. I would like to use such kind of an image in my extension. Is there some php / typo3 code I can reuse? Greetings Achim

Re: [TYPO3-english] [TYPO3] HELP: sr_feuser_register restrict username field to a-z

2008-10-13 Thread Larry
В 01:02 +0200 на 11.10.2008 (сб), stefano cecere написа: > Cray Flatline wrote: > > > > I have installed sr_feuser_register and all works well. But I want to > > restrict username field (i.e. login name) to A-Z,a-z,0-9. I found in > > core reference what i can set in TCA that field will evaluate

Re: [TYPO3-english] centralize content records for some part of the webpage

2008-10-13 Thread Walrick Bosch
Hello Jonas You can use the content type:"insert records". Which allows you to insert a record from another page (like a sysfolder) into a page. I use this for the purpose you describe: having the same content record on multiple pages which I only have to edit in one place (the orginal record in t

Re: [TYPO3-english] Ameos - Rss feed

2008-10-13 Thread Luc Muller
Hi I've developped the extension Ameos Formidable RSS parser. I've tested this feed : http://www.aftenbladet.no/rss/ I got those kind of output : Aftenbladet.no - Alle nyheter Nyheter fra Stavanger Aftenblad Aftenbladet.no - Alle nyheter * Vi er her!