[TYPO3] how to disable li links opening a new window?

2007-08-01 Thread dave typo
When a user clicks on a link within a element, the page loads in a new window - how do I disable this, so that the new page loads in the same browser? -dave ___ TYPO3-english mailing list TYPO3-english@lists.netfielders.de http://lists.netfielders.de/c

Re: [TYPO3] RealURL and .htaccess

2007-08-01 Thread Jan Bednarik
Hey, > I have some problems with RealURL configuration and redirections. I need > place some redirects into my .htaccess file, but now RealURL has > priority. How can I do this, I mean how to make priority for .htaccess. > I need to read .htaccess settings first then RealURL settings. .htacce

[TYPO3] RealURL and .htaccess

2007-08-01 Thread Alexander
Hello list. I have some problems with RealURL configuration and redirections. I need place some redirects into my .htaccess file, but now RealURL has priority. How can I do this, I mean how to make priority for .htaccess. I need to read .htaccess settings first then RealURL settings. Regards,

[TYPO3] extendedshop single view

2007-08-01 Thread Katja Lampela
Hello folks, I'm sorry if this is too stupid a question, but I just can't seem to find a way to connect extendedshops list view to single view. Everything else seem to work fine. Anyone uses the latest version 2.0.6 and has this working and is a kind soul to tell me what obvious thing I have miss

[TYPO3] TYPO3 Security Bulletin 20070801-1: Multiple vulnerabilities in extension ve_guestbook

2007-08-01 Thread Lars Houmark
Dear users of TYPO3, It has been discovered that the extension ve_guestbook is vulnerable to SQL Injection attacks. Also, a Cross Site Scripting issue has been detected. Component Type Third party extension. This extension is not part of the TYPO3 default installation. Affec

[TYPO3] DB Integration, search form, custom template

2007-08-01 Thread Mik B. Shvets
Hello all. It's possible use custom template for searck form created with DB Integration extension? I know how to create and use custom template for search result and insert form. Is any way to do this for search form? If any, show me some example please. Thx. -- primus inter pares ___

Re: [TYPO3] RTEmagicC: can i disable that?

2007-08-01 Thread Tapio Markula
Antonio Willybiro kirjoitti: > Hi, > > Is it possible to disable RTEmagic? I don't want the RTE to create > duplicates of pictures. > > Cheers > Antonio > > that doesn't disable duplicates if you use text with imges. Concerning editor disable image magic images. RTE.default.blindImageOptions=

[TYPO3] RTEmagicC: can i disable that?

2007-08-01 Thread Antonio Willybiro
Hi, Is it possible to disable RTEmagic? I don't want the RTE to create duplicates of pictures. Cheers Antonio ___ TYPO3-english mailing list TYPO3-english@lists.netfielders.de http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3] migrating custom extensions from 3.7.0 setup to 4.1.1 - how?

2007-08-01 Thread Christopher Torgalson
Hi, On 8/1/07, Oliver Rowlands <[EMAIL PROTECTED]> wrote: > Hi Tomasz, > > I've done a number upgrades from Typo3 3.6, 3.7 & 3.8 to 4.x, here are a > few tips: > > - Use a clean version of the latest dummy install (4.1.2) and copy over > all of your assets (fileadmin, typo3conf, uploads) rather th

Re: [TYPO3] migrating custom extensions from 3.7.0 setup to 4.1.1 - how?

2007-08-01 Thread Oliver Rowlands
Hi Tomasz, I've done a number upgrades from Typo3 3.6, 3.7 & 3.8 to 4.x, here are a few tips: - Use a clean version of the latest dummy install (4.1.2) and copy over all of your assets (fileadmin, typo3conf, uploads) rather than reusing the old structure. - Once you've installed the latest so

Re: [TYPO3] Memory limit

2007-08-01 Thread Jan Bednarik
> try in localconf.php ini_set(... This function is forbidden. Fortunately, the webhoster was willing to raise memory limit to 24MB, so it works now. -- Jan Bednarik www.bednarik.org - web about Typo3 in czech ___ TYPO3-english mailing list TYPO3-engl

Re: [TYPO3] Memory limit

2007-08-01 Thread Tapio Markula
Jan Bednarik kirjoitti: >> use htaccess to increase the memory to 32MB. Typo3 Ext. require 32 or >> more >> memory limit to run. > > Can't do. If I could set memory limit I would and wouldn't ask you here. > > And until now 16MB was OK. Even Install tool says that 16MB is enough. > try in local

Re: [TYPO3] how to generate link

2007-08-01 Thread ries van Twisk
On Aug 1, 2007, at 9:53 AM, Jan Bednarik wrote: >> I think Elmar instantiates cObject because it's more the OO way of >> doing >> things. > > That's right. But since there's no singleton I'd prefer not to do this > this way. In my projects (see CoolUri) I use singleton and therefore I > can "ma

Re: [TYPO3] how to generate link

2007-08-01 Thread Elmar Hinz
> > I think adding Singleton pattern to t3lib_div::makeInstance would be > quite simple. I've tried it once, but Typo3 didn't work then. I guess, > only a few chosen classes could be singleton. > I have that in mind since the beginning for tx_div::makeInstance, one reason to wrap t3lib_div::make

Re: [TYPO3] how to generate link

2007-08-01 Thread Jan Bednarik
> I think Elmar instantiates cObject because it's more the OO way of doing > things. That's right. But since there's no singleton I'd prefer not to do this this way. In my projects (see CoolUri) I use singleton and therefore I can "makeInstance" whenever I want without wasting resources. I thi

Re: [TYPO3] how to generate link

2007-08-01 Thread Elmar Hinz
Jan Bednarik wrote: > Sorry for off topic, but I can't help myself. > >> http://t3flyers.wordpress.com/2007/08/01/using-the-typolink-function/ > > why do you need to create always new tslib_cObject instance? > > $cObject = t3lib_div::makeInstance('tslib_cObject'); > > I don't wonder that Typo3

Re: [TYPO3] TMENU - gifbuilder

2007-08-01 Thread Christopher Torgalson
Hi, On 7/31/07, Patrik <[EMAIL PROTECTED]> wrote: > I have a problem about the TMENU, which has an image (before of text), is > generated with GIFBUILDER. > The image must have a class ("imgmenu"). How add a class in typoscript of > the menu? > > Code: > 1 = TMENU > 1 { > NO.allWrap =

Re: [TYPO3] how to generate link

2007-08-01 Thread ries van Twisk
Hey, I think Elmar instantiates cObject because it's more the OO way of doing things. You are right about resources of course, although PHP is very efficient with creating objects. Ries > Sorry for off topic, but I can't help myself. > >> http://t3flyers.wordpress.com/2007/08/01/using-the-

Re: [TYPO3] how to generate link

2007-08-01 Thread Jan Bednarik
Sorry for off topic, but I can't help myself. > http://t3flyers.wordpress.com/2007/08/01/using-the-typolink-function/ why do you need to create always new tslib_cObject instance? $cObject = t3lib_div::makeInstance('tslib_cObject'); I don't wonder that Typo3 consumes that much memory. Isn't it b

Re: [TYPO3] Advanced userFunc Condition

2007-08-01 Thread Vikram Mandal
See the following link http://typo3.org/documentation/document-library/tutorials/doc_tut_frontend/0.0.1/view/3/1/ regards, Vikram -- http://www.fivee.in ___ TYPO3-english mailing list TYPO3-english@lists.netfielders.de http://lists.netfielders.de/cgi-bi

Re: [TYPO3] Checking https server variable

2007-08-01 Thread Tyler Kraft
Hi I had tried [globalString = _SERVER|HTTPS = 1] but no dice. This on the other hand works perfectly. Thanks. Ty Oliver Rowlands wrote: > Hi Tyler, > > This should do the trick: > > [globalString = _SERVER|HTTPS=on] > # Your TS > [end] > > Best regards, > > Oliver > > Tyler Kraft wrote

Re: [TYPO3] Checking https server variable

2007-08-01 Thread Oliver Rowlands
Hi Tyler, This should do the trick: [globalString = _SERVER|HTTPS=on] # Your TS [end] Best regards, Oliver Tyler Kraft wrote: > Hi > > I want to do a check to see if the page being served is a https page and > then do something different in my output. I belive I have my condition > corre

Re: [TYPO3] RealURL configuration skipping levels in the page tree

2007-08-01 Thread Morten Kjems
OK. Thanks to both of you for helping. I will have to look at the page three structure instead only this will affect my menu so I will need to make changes here as well. But now I am on safer ground and know my direction. Thanks /Morten ___ TYPO3-eng

Re: [TYPO3] how to generate link

2007-08-01 Thread Elmar Hinz
Jan Bednarik wrote: > Hi, > >> From my TS template I call some user functions located in >> user_function class. Is there any function/method in TYPO3 API to >> generate correct (RealURL, CoolURI...) link to page specified with ID >> (plus optional get parameters)? > > Try > > $GLOBALS['TSFE']-

Re: [TYPO3] RealURL configuration skipping levels in the page tree

2007-08-01 Thread Tomas Mrozek
> If I understand the documentation correctly both 'category' and > 'categoryname' are prevars. No. If I understand you correctly 'category' and 'categoryname' are pages, not prevars. 'en' is a prevar. > In that case it should be possible to skip 'category' in the URL. If 'category' and 'categ

Re: [TYPO3] RealURL configuration skipping levels in the page tree

2007-08-01 Thread Dmitry Dulepov
Morten Kjems wrote: > The URL: > http://mydomain.com/en/category/categoryname/articletype/pagetitle.html > > If I understand the documentation correctly both 'category' and > 'categoryname' are prevars. They are normal pages and the and the URL > reflects the hierarchy of the page three. In that

Re: [TYPO3] macina searchbox ignores search query

2007-08-01 Thread Christoph Pönighaus
Christoph Pönighaus schrieb: > Hi! > I added the macina searchbox on all pages by using a marker and set the > searchpage-pid to the well working indexed_search. Entering a search > query into the macina searchbox brings me to the searchpage. > Unfortunately the search query is not delivered. >

[TYPO3] Checking https server variable

2007-08-01 Thread Tyler Kraft
Hi I want to do a check to see if the page being served is a https page and then do something different in my output. I belive I have my condition correct but it seems to have no effect when I try it. Can anyone let me know if this would be the correct way for this condition and if not what wo

[TYPO3] macina searchbox ignores search query

2007-08-01 Thread Christoph Pönighaus
Hi! I added the macina searchbox on all pages by using a marker and set the searchpage-pid to the well working indexed_search. Entering a search query into the macina searchbox brings me to the searchpage. Unfortunately the search query is not delivered. Any help? Thanks Christoph _

Re: [TYPO3] RealURL configuration skipping levels in the page tree

2007-08-01 Thread Morten Kjems
Thanks for helping out Dmitry. English is not the default language so I guess it will have to stay. Then you write: >If 'categoryname' is a postVar, you cannot skip 'category', you > ca only give it shorter name in configuration. The URL: http://mydomain.com/en/category/categoryname/articletype

Re: [TYPO3] Advanced userFunc Condition

2007-08-01 Thread Vikram Mandal
Hi, Nick Weisser wrote: > Hi there, > > I'm trying to use the following TypoScript condition in my TypoScript setup: > > # submenu only shows if more than one subpage > # exists on the next level of the page tree > [userFunc = user_match(checkLevels)] > lib.submenu2 = HMENU > [...] > [end] >

[TYPO3] migrating custom extensions from 3.7.0 setup to 4.1.1 - how?

2007-08-01 Thread Tomasz Chmielewski
As I'm making a totally new layout for a website, I thought it would be a good time to migrate it from TYPO3 3.7.0 to 4.1.1. Most easy parts are done, but I'm not sure how I can migrate some custom extensions from 3.7.0 to 4.1.1. Obviously, copying the data from typo3conf/ext/* is not enough, a

Re: [TYPO3] how to generate link

2007-08-01 Thread Elmar Hinz
Dominik Smatana wrote: > Hello, > I need a help... > > From my TS template I call some user functions located in > user_function class. Is there any function/method in TYPO3 API to > generate correct (RealURL, CoolURI...) link to page specified with ID > (plus optional get parameters)? > > Thank

Re: [TYPO3] how to generate link

2007-08-01 Thread Jan Bednarik
> $this->cObj->getTypoLink_URL($id, $urlParameters, $target) This is what you can use in extension. You can't use it this way in user functions called via PHP_SCRIPT. > It generates page url I need, but it don't work with RealURL enabled > (maybe problem is in my configuration, I don't know...).

Re: [TYPO3] how to generate link

2007-08-01 Thread Dominik Smatana
Hello Jan, thanks for help. I checked typolink() function and I've found this method: $this->cObj->getTypoLink_URL($id, $urlParameters, $target) It generates page url I need, but it don't work with RealURL enabled (maybe problem is in my configuration, I don't know...). Dominik Smatana PS: Than

Re: [TYPO3] sr_freecap in typo3 standard form

2007-08-01 Thread Jung New Media
Hi Fabian, I have got this problem last week too. See how the Problem was dissolved. Ich habe das gleiche Problem gehabt. Hier ist die Lösung. http://www.blog.jung-newmedia.de/typo3/typo3-standard-formular-gegen-spam-schuetzen/ Bei Fragen einfach melden es grüßt Dich Balazs www.jung-new

[TYPO3] 404 when I want to edit plugin content

2007-08-01 Thread Pawe� Stanis�awczuk
Hi, After moving my TYPO3 to new serwer something went wrong and now I can't edit any plugin content, when I click on edit icon I get 404 page. Anyone had this? Regards Pawe³ Stanis³awczuk ___ TYPO3-english mailing list TYPO3-english@lists.netfie

Re: [TYPO3] add id to body tag with TS

2007-08-01 Thread Tyler Kraft
Try this - I think it should work for you. page = PAGE page.typeNum = 0 page.bodyTag > page.bodyTagCObject = HTML page.bodyTagCObject.value.field = alias//uid page.bodyTagCObject.value.wrap = Cray Flatline wrote: > > I need to add to every page's body tag it's own id. I try to make