Re: [TYPO3-english] Re alURL problem.. Alternating friendly and non-friendly URLS..

2011-09-30 Thread Victor Livakovsky
Hi, Roel. I remember same problem with old RealURL versions. Are you using the latest TYPO3 source and latest RealURL version? If no, update and clear all the caches- that should help you ;) ___ TYPO3-english mailing list

Re: [TYPO3-english] TemplaVoila: Background of container for element

2011-09-30 Thread Victor Livakovsky
Hi, Jaco. -AT - field_background - this has to map to the CO - field_infopanel style:background lib.infoPanelContainer = COA lib.infoPanelContainer{ 10 = TEXT 10.field = field_backgroundimage 10.wrap = background-image:url(/uploads/tx_templavoila/|) } 10 = TEXT 10.field =

Re: [TYPO3-english] typoscript: count_HMENU_MENUOBJ count_menuItems

2011-09-22 Thread Victor Livakovsky
Hi, Jaco. I can test the current object number in the linear/1 dimensional array of menu items - in other words - independant of its level by using {register:count_HMENU_MENUOBJ} I can get the amount of items in a particular level by using {register:count_menuItems} but how do I get the

Re: [TYPO3-english] tt_news strange behavior

2011-09-14 Thread Victor Livakovsky
Hi, Igor. Sounds like you forgot to include static TS template. Did you? ___ 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

Re: [TYPO3-english] RealUrl multilanguage with and without country PathSegments

2011-09-09 Thread Victor Livakovsky
Hi, Basti. Default ist german: #1 config.linkVars = L # Standardsprache config.sys_language_uid = 1 config.language = de config.locale_all = de_DE select.languageField = sys_language_uid I may be wrong, but shouldn't default language have config.sys_language_uid = 0 ? And all non-default

Re: [TYPO3-english] User Registration

2011-09-07 Thread Victor Livakovsky
Hi, A client of mine wanted to have *multiple registration pages* with different fields. When I click on Next of the first page, the validations of the entered fields are done and then if it succeeds, user is taken to page 2 of the registration. You can use powermail for this purpose -

Re: [TYPO3-english] DAM and file access permissions for fe_users

2011-09-05 Thread Victor Livakovsky
Hi, Martin. Have a look at dam_frontend extension - I'm currently implementing almost same scheme, and it works great for this purpose ;) ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org

[TYPO3-english] SOLVED: Powermail sends email and logs entry twice

2011-09-05 Thread Victor Livakovsky
I faced really weird problem. I have usual TYPO3 4.5.3 setup with default powermail 1.6.3 settings. I cretaed a simple form with input field, textarea and submit button. All works nice, except fact, that after correct validation and user submit the mail is sent two times as well as two db

[TYPO3-english] Few questiuons about dam + dam_frontend

2011-09-03 Thread Victor Livakovsky
Hi, List. I need to make a categorized downloads for FE user. Searching among TER extensions, I found, that best option is combination of dam and dam_frontend extensions. I implemented them, but still have a couple of questions: 1. I have categories with 2 levels of subcategories, every file

Re: [TYPO3-english] RealURL, multilanguage with _DOMAIN and incorrect root page URL

2011-08-18 Thread Victor Livakovsky
Hi, Dmitry. RealURL configuration looks ok. Often such problems happen in extensions when they prepend URLs without analyzing the URL first. This problem exists in many extensions, even popular ones. Are you sure wrong links come from typolink and not from the badly coded extension? Thank

[TYPO3-english] RealURL, multilanguage with _DOMAIN and incorrect root page URL

2011-08-15 Thread Victor Livakovsky
Hi, List. I have a multilanguage website, where each language has it's own domain. Everything is cool, but the problem on a root page appears: any link, generated with typolink to this page (id=1) looks like this: a href=http://www.german-domain.com/http://www.german-domain.com/;. Language

Re: [TYPO3-english] Function to get content of a page (to be used inuserFunc)

2011-08-11 Thread Victor Livakovsky
Hi, Joel. Surely, you can do it with TS: lib.all_content = CONTENT lib.all_content { table = tt_content select { pidInList = 3,87,24 where = (colPos=0) orderBy = sorting } } At 'pidInList ' you can provide your comma-separated list of page ids. If you want to do it with userFunc,

Re: [TYPO3-english] realURL defaultToHTMLsuffixOnPrev isn't recognized

2011-08-10 Thread Victor Livakovsky
Hi. Check your root page domain record and also check, if your domain is configured at RealURL configuration (avoid using of '_DEFAULT' configuration). ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org

[TYPO3-english] Powermail sends email and logs entry twice

2011-07-14 Thread Victor Livakovsky
Hi, List. I faced really weird problem. I have usual TYPO3 4.5.3 setup with default powermail 1.6.3 settings. I cretaed a simple form with input field, textarea and submit button. All works nice, except fact, that after correct validation and user submit the mail is sent two times as well as

Re: [TYPO3-english] Powermail sends email and logs entry twice

2011-07-14 Thread Victor Livakovsky
A note: just copied a website to my local server and email is sent only once... So, this is a server-side problem, but what it may be? ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org

Re: [TYPO3-english] Category tree view for custom extension in BE

2011-07-08 Thread Victor Livakovsky
Hi, Philipp I think news2 uses it: http://git.typo3.org/TYPO3v4/Extensions/news.git?a=blob;f=Configuration/Tca/category.php;h=1088a268b2755484d8d07b46f5c66685aff0a59d;hb=HEAD line 175: 'parentcategory' = array( Yes, that is exactly, what I was looking for. Thank you :)

Re: [TYPO3-english] Category tree view for custom extension in BE

2011-07-08 Thread Victor Livakovsky
Hi, Jigal My goal is a category tree-view instead of simple multiple selection list at record editing at BE. Same as tt_news has for news categories. It was added in 4.5; the core API documentation is not yet up-to-date for this feature, but you can find more info in the bug tracker [1]

Re: [TYPO3-english] Problem with rss2_import

2011-07-07 Thread Victor Livakovsky
Hi, Since all the CLI actions are done from _cli_scheduler user, you need to allow him a possibility to edit and add new entries to required tables, as for normal BE user. ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org

[TYPO3-english] Category tree view for custom extension in BE

2011-07-07 Thread Victor Livakovsky
Hi, list. My goal is a category tree-view instead of simple multiple selection list at record editing at BE. Same as tt_news has for news categories. I know, that I can reuse the code from tt_news, but... I 'm sure, that I've read somewhere (yeah, I can't find where exactly) about TYPO3 new

Re: [TYPO3-english] understanding the order of things

2011-07-04 Thread Victor Livakovsky
Hi, Katja. 1. powermail css: I add default powermail css with template statics and if I add my own css rules with my own css file which I want to overrule the default ones it seems, the default extension css is anyway read after my css file so it's always on top of the rules. So my question

Re: [TYPO3-english] USER/USER_INT switch

2011-06-05 Thread Victor Livakovsky
Hi, Patrick I think this is the way to go when using the same plugin. I don't see cHash as an alternative here and I would guess the usage of a second plugin pi2 ist way to much overhead ;-) Okay then. Thank you for your suggestion :) ___

Re: [TYPO3-english] USER/USER_INT switch

2011-06-05 Thread Victor Livakovsky
Hi, Dmitry. I suggest doing the opposite: plugin.tx_myext_pi1 = USER [globalVar = GP:tx_myext_pi1|uid = /\d+/ ] plugin.tx_myext_pi1 = USER_INT [global] Wow! Didn't know, that I can use regexp in globalVar conditions! Thank you :) But why then you think it is best to make non-cached ext for

[TYPO3-english] Page content as part of tt_news

2011-05-31 Thread Victor Livakovsky
Hi, list. I have a question: is there any extension or some possibility to add any page content into tt_news body? The problem is, that tt_news perfectly fits the website owner's requirements, except the fact, that there is only one standard way to show SINGLE view. And the owner wants it to

Re: [TYPO3-english] question about editing in typo3

2011-05-29 Thread Victor Livakovsky
I should clear the cache in my browser after I have done some changes in typo3 backend EVERYTIME? Check if you have 'config.sendCacheHeaders = 1' at TS template setup and set it to 0, then it, probably, will help you. ___ TYPO3-english mailing

Re: [TYPO3-english] FElogin redirect with getpost variables of own extension

2011-05-29 Thread Victor Livakovsky
i'm adding the felogin to a page with TS: 20 plugin.tx_felogin_pi1 20 { storagePid = {$styles.content.loginform.pid} redirectMode redirectPageLogin redirectMode = login redirectPageLogin = 24 preserveGETvars = All redirectMode = login redirectDisable = 0 } my login page is:

Re: [TYPO3-english] GIFBUILDER multiline

2011-05-04 Thread Victor Livakovsky
Hi, Enrique. value = Lorem|Ipsum|Temet I wonder, why it even works at all, since GIFBUILDER TEXT object doesn't have 'value' property. It should be text = Lorem|Ipsum|Temet Also you may try 'split' stdWrap property: text.split { token = , cObjNum = 1 |*| 2 |*| 3 2.current = 1 2.wrap =

Re: [TYPO3-english] Standard Search Form Search Box TS object path

2011-04-20 Thread Victor Livakovsky
Standard Search Form content element. This is only CE, that displays a form - not a search engine. You should use it in combination with indexed_search. ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org

Re: [TYPO3-english] Language Selection and Menu on Typo3_452

2011-04-20 Thread Victor Livakovsky
Hi, Tobias. As a different approach, you can create a menu with TS only. Here is my usual setup for this: lib.lang_menu = HMENU lib.lang_menu { special = language special.value = 0,1 special.normalWhenNoLanguage = 0 1 = TMENU 1 { NO = 1 NO.linkWrap = span|/span NO.ATagBeforeWrap = 1

Re: [TYPO3-english] Change sender in Form tt_content

2011-03-31 Thread Victor Livakovsky
Hi, How can I change the email sender of the mailform included with TYPO3 now it is apa...@mymail.com If you're using 4.5, it is probably in localconf.php - you may change it with Install Tool - setting [MAIL][defaultMailFromAddress] = ___

Re: [TYPO3-english] How to reply to a message on this forum?

2011-03-30 Thread Victor Livakovsky
For Windows Live Mail you should use News Groups section and press Reply to Group ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] tt_news subhead/bodytext into meta descriptionfield?

2011-03-25 Thread Victor Livakovsky
the problem I'm still having is if the article doesn't have a short/subheader then the meta description isn't populated. How can I get register:newsSubheader to populate with bodytext? To get a little more fancy, if this is possible, how might I do a crop on the (new) register? Well, haven't

Re: [TYPO3-english] tt_news subhead/bodytext into meta descriptionfield?

2011-03-25 Thread Victor Livakovsky
page.headerData.999.local.description.ifEmpty.field = bodutext Sorry, 'bodytext' should be here instead of 'bodutext' ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] tt_news subhead/bodytext into meta descriptionfield?

2011-03-23 Thread Victor Livakovsky
Hi, Douglas. we do not want to populate the description field for each news article. we'd like a way to automate populating meta description= from the bodytext of the article so that when facebook gets the meta description from typo3 something useful is returned. does anyone have any

Re: [TYPO3-english] REALURL - No hashcode/parameters passed --Exclude Page from url

2011-03-21 Thread Victor Livakovsky
Hi, Tobias. /* The very last segment can never be excluded. */ That’s what I know too. But it is the last segment before Parameters of extension. In this case it should be the middle. Or does it mean the segment before extension parameters is not in the middle? When it is, then it doesn’t work.

Re: [TYPO3-english] RealURL and shortcuts

2011-03-14 Thread Victor Livakovsky
Hi, Michael. I'm wondering if it's because your rootpage_id isn't set. $TYPO3_CONF_VARS['EXTCONF']['realurl']['example.com']['pagePath']['rootpage_id'] = X; No - I have it set. You can see it in the conf, that I provided: 'rootpage_id' = '1', Also, don't forget the www.example.com

Re: [TYPO3-english] RealURL and shortcuts

2011-03-14 Thread Victor Livakovsky
Hi, Lorenz. I don't know if that's best practice but I always enter a / to the Speaking URL paths segment field of the home page. That way I have domain.tld/ instead of domain.tld/home/ Internal links to such sites work correct, too. Just tried to set '/' to my shortcut page's Speaking URL

Re: [TYPO3-english] Replacement for sr_email_subscribe?

2011-03-14 Thread Victor Livakovsky
Hi, Martin. I've been using 'ods_ajaxmailsubscription' in last my project. Quite simple and easy to use + uses AJAX. ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] RealURL and shortcuts

2011-03-11 Thread Victor Livakovsky
Hi, List and hello, Dmitry. Most of websites, that I made long time ago had such a structure: Home (root) | -- Home (shortcut to root) -- Page 1 -- Page 2 ... The advantage of such structure was, that links in menus were generated this way: http://example.com/

[TYPO3-english] make tt_news keep own piVars in links

2011-03-08 Thread Victor Livakovsky
Hi, List. I have a such structure of a page: AMENU, LIST (shows non-archieved by default), SINGLE. After selecting some period in AMENU, I get a list of entries from that period in my LIST view - that is good. But after selection of any single article, LIST view shows again default

Re: [TYPO3-english] Normal User in Backend don't see any page treeat all

2011-03-08 Thread Victor Livakovsky
*Have you checked the permissions! How do I check this? Its a fresh install with 2 pages created, I'm not using a module, I don't have even a template installed. Have a look at 'Web'-'Access' module. You can see, what are permissions for owner, group and everybody for all of your pages.

Re: [TYPO3-english] Hide non-translated elements

2011-03-07 Thread Victor Livakovsky
Hi, Jeppe. How can I hide nontranslated elements? I guess it is something about content fallback, but I can't get it to work. For pages you may use this setting in localconf.php: $TYPO3_CONF_VARS['FE']['hidePagesIfNotTranslatedByDefault'] = ’1′;

Re: [TYPO3-english] Hide non-translated elements

2011-03-07 Thread Victor Livakovsky
Yes I know, but it is not for pages, it is for elements. On the German page I don't want to get Danish elements shown. So if an element not is translated, it should be hidden. Ah, I see now. Usually I set sombination: config.sys_language_mode = content_fallback config.sys_language_overlay =

Re: [TYPO3-english] Translate strings in template

2011-03-05 Thread Victor Livakovsky
Hi, Boris. For now I'm doing it by replacing this strings with markers and replacing markers by localized content from llxml file inside TypoScript template. It looks like this: FE_NEWS.data = LLL:fileadmin/user_upload/design/locallang.xml:feNews Is there any other (better) way? Have a

Re: [TYPO3-english] How to extend RTE ?

2011-03-03 Thread Victor Livakovsky
Hi, Gregory. What do you mean by uses the TYPO3 link tag ? There is a TYPO3 internal link tag - when you save, f.e. normal tt_content record with a link to some page, it is not stored as a href=...whatever/a, but as link page_id - saving it like this guarantees normal processing of a link

Re: [TYPO3-english] tt_news - wrap elements

2011-03-03 Thread Victor Livakovsky
Hi, Milan. Sören thank you. It is working at least partial :) I did it this way plugin.tt_news.altLayoutsOptionSplit = 1 |*| 0 |*| 2 and it use NEWS_1 and NEWS markers, but never use NEWS_2 marker at the end. Check plugin.tt_news.alternatingLayouts TS setting of tt_news [1] Bu default it

Re: [TYPO3-english] 4.5 makes wrong position for newly created tt_content translations

2011-03-03 Thread Victor Livakovsky
Fired a bug report for this issue: http://bugs.typo3.org/view.php?id=17862 ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] multi domain site, domain records are ignored

2011-03-02 Thread Victor Livakovsky
Hi, Alexander. Check, if you have 'root'-flag set for every of your root pages. I remember same issue with one of my multidomain installations. ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org

[TYPO3-english] 4.5 makes wrong position for newly created tt_content translations

2011-03-02 Thread Victor Livakovsky
Hi, List. Maybe it should be like that, but I think this is a bug: 1. I have a multilingual 4.5.2 installation. 2. First I create content element in default language, then in 'Languages' view of 'Page' module I press 'Copy default content elements' and unhide a copy. So far so good. 3. Next I

Re: [TYPO3-english] HTML5 Boilerplate with TYPO3

2011-03-01 Thread Victor Livakovsky
Hi, Martin. !--[if lt IE 7 ] html class=no-js ie6 lang=en ![endif]-- !--[if IE 7 ] html class=no-js ie7 lang=en ![endif]-- !--[if IE 8 ] html class=no-js ie8 lang=en ![endif]-- !--[if (gte IE 9)|!(IE)]!-- html class=no-js lang=en !--![endif]-- Any ideas on how to do this via Typoscript or

Re: [TYPO3-english] Grid system with cells split

2011-02-28 Thread Victor Livakovsky
Hi, Rik. As far the FCEs are concerned. You can try extension wec_contentelements. It introduces a nice API to make TCE like elements. Oh, didn't know about it! Thank you for a hint :) ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org

Re: [TYPO3-english] felogin - A Difference between the originally installed...

2011-02-28 Thread Victor Livakovsky
Hi, Katja. Why are you thinking, that it shouldn't be the case? You may run diff on current trunk and your files and see the difference. If there is no difference, then it should be a bug. ___ TYPO3-english mailing list

[TYPO3-english] Grid system with cells split

2011-02-25 Thread Victor Livakovsky
Hi, List. After long time of using TV templating system, I decided to give a try to a newly introduced grid system in 4.5. My impression - it is really cool, and I can use it for further projects! The only thing, that I missed: is there any possibility to split the cell in two parts in a grid

Re: [TYPO3-english] Grid system with cells split

2011-02-25 Thread Victor Livakovsky
Hi, Tomas. The only thing, that I missed: is there any possibility to split the cell in two parts in a grid view editor? It's possible to merge some, thus getting the same result. Well, yes, but if page structure is complex (let's imagine some 5 columns, 8 rows and all of them are somehow

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

Re: [TYPO3-english] preprocess hook

2011-02-21 Thread Victor Livakovsky
Hi, Dawid. Just a suggestion: what about using a workspaces and restricting editors to only custom workspace? ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] Extension developer helpers or speeders

2011-02-15 Thread Victor Livakovsky
Hello, List. Can't say, that I'm new to extension development, but also I'm not really experienced one :) I have developed a number of various extensions and every time learned something new about development. Most of the time my extensions were quite simple and 'kickstarter' was my only

Re: [TYPO3-english] Extension developer helpers or speeders

2011-02-15 Thread Victor Livakovsky
Thank you very much guys for your time :) Now I have a direction to move on! And since I'm a bookworm, I'll wait for English release of TYPO3 Extensions with Extbase Fluid and buy it, as soon, as it become available. ___ TYPO3-english mailing list

Re: [TYPO3-english] Advanced Sitemaps and tt_news

2011-02-11 Thread Victor Livakovsky
Hi, Sebastiaan. Thank you for a quick reaction and new release :) Regards. ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] Some problems with Templavoila

2011-02-08 Thread Victor Livakovsky
Hi, Elena. What I need is a simple content element in every page: if it is empty, it has to show the same content of the parent page. Have a look at these two extensions: http://typo3.org/extensions/repository/view/ad_tvcontentslide/current/

Re: [TYPO3-english] Multicolumn

2011-01-31 Thread Victor Livakovsky
Hi. I guess, 'multicolumn' ext uses li-tags for every column, so it is a question of CSS - check styles of columns and change 'list-style-type' property to 'none'. ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org

Re: [TYPO3-english] Hiding multilanguage menu item

2011-01-31 Thread Victor Livakovsky
Hi, Constantin. If I understood you correctly, you need to set: config.sys_language_overlay = hideNonTranslated Then non-translated pages, will not appear in the menus. ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org

Re: [TYPO3-english] Best practice -- multiple domains with localization

2011-01-24 Thread Victor Livakovsky
Is there a best practice for implementing a family of web sites in TYPO3? They will have similar looks, perhaps with shared HTML templates, but different style sheets. Several will be localized. Domain1.tlc English and German Domain2.tlc English Domain2.tlc English and Spanish Domain4.tlc

Re: [TYPO3-english] tt_news : Cannot see links in list mode

2011-01-19 Thread Victor Livakovsky
Hello, I have a problem in LIST mode with tt_news ! I'd like to show the field links and bodytext in LIST mode, but with link processed, I mean with the a href. I've tried many way, but none of all work, I can see the links in text, but there are not processed. Here are some way I've tried:

Re: [TYPO3-english] tt_news : Cannot see links in list mode

2011-01-19 Thread Victor Livakovsky
Forgot to add a link to bug: [1] http://bugs.typo3.org/view.php?id=16944 ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] dynamic content snippets

2011-01-17 Thread Victor Livakovsky
Hi, Mario. I've changed my extension for your case. It does really simple task: substitutes defined markers in content with text. 1. Get and install an extension [1] 2. Create a mapping in your TS template this way: config.fe_hooks.mapping { headmaster = Jon Bauer opening_hours = 13:00 -

Re: [TYPO3-english] A wich for new TER

2011-01-15 Thread Victor Livakovsky
Yeah, I agree! Also it would be nice to have a possibility of sorting search results by date :) ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] A wich for new TER

2011-01-15 Thread Victor Livakovsky
Yes, last update is the best option :) Very useful, when searching for some galleries, slideshows, tt_news additional extensions and so on. You mean by latest update date or by release date. I think latest update date would be best! Andi ___

Re: [TYPO3-english] Realurl and the _DEFAULT array - how to avoid this deprecated key ?

2011-01-14 Thread Victor Livakovsky
Hi, Christoph. That warning is not about ‘_DEFAULT’ keyword in postVarSets, but about domain name. Typical RealURL configuration is done this way: $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl'][‘_DEFAULT’] = array( ... config comes here ... ) And should be:

Re: [TYPO3-english] tt_news SEARCH and LIST in different containers (feature request?)

2011-01-10 Thread Victor Livakovsky
Well, a good sleep helped :) Since, the form is just an HTML, we can use normal TEXT objects of TS. Here is, what I've got: lib.news_search = COA_INT lib.news_search.10 = TEXT lib.news_search.10 { typolink.parameter = {$newsSearchUid} typolink.no_cache = 1 typolink.returnLast = url wrap =

Re: [TYPO3-english] tt_news single view with link to same record butdifferent page

2011-01-06 Thread Victor Livakovsky
Hi, Bert. I have a page (pid) which shows a tt_news record in a single view. On this page I want to add a link to the same tt_news record but in a different page (pid). In other words: I want a read more link to a page with the same record but with different html and different typoscript.

[TYPO3-english] tt_news SEARCH and LIST in different containers (feature request?)

2011-01-06 Thread Victor Livakovsky
Hi, List. Maybe, I need a good sleep, but I can't find a good way to make tt_news search form appear in different container, than search results list. What I'm doing now is inserting a lib.news_search with code SEARCH in desired place, but set LIST template to nothing: lib.news_search =

Re: [TYPO3-english] List of registers

2010-12-17 Thread Victor Livakovsky
Hi, François, Unfortunately only a few are documented. This a well-known shortcoming of the current manuals. We would be glad if anyone helped filling this gap actually. Sorry for not being more helpful. Okay, I see now. Anyway, thank you for an answer :)

Re: [TYPO3-english] List of registers

2010-12-17 Thread Victor Livakovsky
For anyone, who will search for same topic, I've made a research by simple search of '$GLOBALS['TSFE']-register' ($TSFE-register gave 0 results) in content of all PHP files in TYPO3 4.4. Here is a list with some my explanations: class.tx_cssstyled_content_pi1.php function

[TYPO3-english] List of registers

2010-12-16 Thread Victor Livakovsky
Hi, list. Can someone tell me where can I find list of all registers, provided by TYPO3 core? I'm talking about such as register:count_MENUOBJ and register:count_HMENU_MENUOBJ Thank you in advance. ___ TYPO3-english mailing list

[TYPO3-english] BE csv export

2010-12-06 Thread Victor Livakovsky
Hello, list. It is possible to download a CSV file of any records in 'List' module of BE. But is it possible to define length of imported fields? Currently field is cut after approximately 95 symbols (TYPO3 4.4). Can I expand this value somewhere? Thank you in advance.

Re: [TYPO3-english] Upload file extension tutorial

2010-11-22 Thread Victor Livakovsky
Hi, Brian. There is nothing special in creating upload forms. function displayUploadForm(){ $content = $this-cObj-cObjGetSingle($this-conf['uploadformcObject'],$this-conf['uploadformcObject.']); $content = str_replace(###STATUS###,(empty($this-status) ? : array_pop($this-status)),$content);

Re: [TYPO3-english] Redirect af registering with sr_feuser_register

2010-11-19 Thread Victor Livakovsky
Hi, Jeppe. You may enable auto-login on account creation 'plugin.tx_srfeuserregister_pi1.enableAutoLoginOnCreate' and set 'plugin.tx_srfeuserregister_pi1.autoLoginRedirect_url', if that helps you. ___ TYPO3-english mailing list

Re: [TYPO3-english] Show Powermail Records in Frontend

2010-11-19 Thread Victor Livakovsky
Hi, Janosch. Another approach is using powermail_frontend extension. It works perfect with XML data stored by default at powermail - so no db mapping needed. Also it allows editing of records, search, list and latest listings. ___ TYPO3-english

Re: [TYPO3-english] remove whitespaces and newlines from frontend output

2010-11-19 Thread Victor Livakovsky
Hi. There is a 'sourceopt' [1] extension, that does such things, if you not afraid of parsing the whole FE content by it ;) [1] http://typo3.org/extensions/repository/view/sourceopt/current/ ___ TYPO3-english mailing list

[TYPO3-english] cObjGetSingle don't work as expected and only once

2010-10-26 Thread Victor Livakovsky
Hi, list. I'm developing an extension and I've found, that cObjGetSingle method works really strange. I'm using it in usual way: 1) calling $this-cObj-start to make my data row as current content and make possible to use 'field' in TS 2) creating object via

Re: [TYPO3-english] cObjGetSingle don't work as expected and only once

2010-10-26 Thread Victor Livakovsky
Hi, list. I found an issue. $this-cObj-start was called with another parameters by second developer right after first call of cObjGetSingle in my code. Sorry. ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org

Re: [TYPO3-english] typo3-english@lists.typo3.org

2010-10-25 Thread Victor Livakovsky
Hi. Can you be a more specific? Give us your configs, TYPO3 and extension versions, describe, what is going instead of your expectations. ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org

[TYPO3-english] Powermail and dynamic number of text fields

2010-10-22 Thread Victor Livakovsky
Hi, List. I have such a question: is it possible to create powermail form, where you can select a dynamic number of text fields from FE? A situtaion: there is a drop-down with values 1|2|3|4|5. FE user selects, f.e. '3' - after that 3 input fields should appear on a form. Possible out of the

Re: [TYPO3-english] Strange behavior of felogin and custom template

2010-10-21 Thread Victor Livakovsky
Hi. If I change something in this template, this changes will not be reflected in CMS output until I remove template in extension properties and set it agein. Why felogin works with template so strange? If I change template for formhandler extension I can see this changes in output

Re: [TYPO3-english] Show every page of the navigation

2010-10-08 Thread Victor Livakovsky
You can always use 'wrap' for it: lib.mainMenu.1.wrap = div id=mainmenu | /div lib.mainMenu.2.wrap = div id=submenu | /div But that is not possible I think, because, the to mejnu parts should be surounded by div id=mainmenucontaing all main item/div and div id=submenucontaining all sub menu

Re: [TYPO3-english] File uploads with admin review

2010-10-05 Thread Victor Livakovsky
Hm... That might be a good idea! Thank you for the point! :) hello the best solution IMO would be to let the users upload to directory X, then the Admins review them and move them to directory Y, which gets listed. greetings pharno ___

[TYPO3-english] File uploads with admin review

2010-10-04 Thread Victor Livakovsky
Hello, list. I'm looking to an extension, that is almost similar to DAM Frontend - FE users can upload files to some shared folder and assign a file to an existing category, the file listing (with optional description) is shown at FE, so other users can download them. The only one thing, that

Re: [TYPO3-english] Feature Request: better usergroup representation in 'Access' list of page properties

2010-09-21 Thread Victor Livakovsky
Well, thank you both anyway for a hint and suggestion. Now I have at list a way to move :) Hi, So, here are my questions: 1. Is there any way to show the hierarchy of groups (tree-view would be perfect)? take a look at tt_news, modify the tree view for select and modify the tca for table

[TYPO3-english] Getting rid of dl, dt, dd at module_sys_dmail_category in sr_feuser_register

2010-09-21 Thread Victor Livakovsky
Hi, list. I want to make custom wrap for input checkboxes at registration form. As I saw from documentation, it is possible, but I can't turn it to live. I have this in TS: plugin.tx_srfeuserregister_pi1.select.input.module_sys_dmail_category.item.wrap = b|/b

[TYPO3-english] Feature Request: better usergroup representation in 'Access' list of page properties

2010-09-15 Thread Victor Livakovsky
Hi list. We have a web with complicated hierarchy of FE usergroups. We have quite big number of groups, some of them are children of others. Every content element is restricted to a small number of groups. And it is annoying and hard for editors to scroll that small list-box to find needed

[TYPO3-english] Preserve spaces in wrap

2010-08-16 Thread Victor Livakovsky
Hi, List. As documentation says: even though there are spaces between the wrap-parts and the divider (|), each wrap part is trimmed. Is there any way to preserve a spaces? We have such structure for fetching css class-name, that is stored in a 'Page'. lib.main_menu.1 {

Re: [TYPO3-english] Preserve spaces in wrap

2010-08-16 Thread Victor Livakovsky
Hi, Christopher. ATagParams has .stdWrap capability [1], so you can replace the line with lib.main_menu.1.ACT.ATagParams.noTrimWrap = |class=| active| -- Christopher Torgalson http://www.typo3apprentice.com/ [1]

Re: [TYPO3-english] Login user

2010-08-12 Thread Victor Livakovsky
Hi. Maybe, it'll be useful to know, that if you pass such an url: http://www.example.com/index.php?id=1logintype=loginuser={login}pass={password}pid={pid} TYPO3 core will take care about authentication. Felogin uses such a possibility, passes parameters via POST by it's login form and just

Re: [TYPO3-english] LLL: and template

2010-08-04 Thread Victor Livakovsky
Hi. I'm writing my own extension for internal use. It has HTML template and supports localisation (it has locallang.xml in pi1 folder). To localize static text in template I'm using substituteMarkerArrayCached and getLL. Is there any way to write something like LLL:labelname in template and

Re: [TYPO3-english] FE loginbox, redirect errors

2010-08-03 Thread Victor Livakovsky
Hi, Try the system 'felogin' ext - it doesn't have such problems with redirection in 4.4 version. ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] CONFIRMED: Powermail bug #7806

2010-07-30 Thread Victor Livakovsky
For those, ho may have same problem, have a look at forge: http://forge.typo3.org/issues/7806 Hi, List. I have an issue with powermail: when someone submits the form with wrong captcha (sr_freecap) or wrong e-mail, the form is submitted, but an errors are shown (about wrong captcha code and

Re: [TYPO3-english] Gifbuilder - GIFs for IE6 and PNG for all other browsers ?

2010-07-21 Thread Victor Livakovsky
Hi, What about using of conditions: http://typo3.org/documentation/document-library/references/doc_core_tsref/4.3.2/view/1/4/#id2314976 In your case that would be: [browser = msie] [version = 6] Also here you can read about how to create proper png with masks by GIFBUILDER:

Re: [TYPO3-english] content_fallback not to default language

2010-07-21 Thread Victor Livakovsky
Hi, But you haven't described your problem. What behaves wrong? ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] Sr_feuser_register: Send password problem

2010-07-15 Thread Victor Livakovsky
Hi, Karin. 'felogin' extension has nothing to do with user registration, and 'forgotten password' feature is part of 'felogin'. In 4.3 the password is no longer emailed to user, but he has to reset it by his own (after clicking confirmation link in mail). Have a look at 'felogin' template and

<    1   2   3   >