Re: [TYPO3-english] Problem with sr_email_subscribe - and I have absolutely no idea what I'm doing

2010-09-09 Thread bernd wilke
Am Tue, 07 Sep 2010 10:12:36 +0800 schrieb Cameron: I saw some documentation for the module in question that says When you upgrade from an older version to version 1+, you need to add a static template to your TS template, otherwise the extension will not work., but I have literally no idea

[TYPO3-english] FE edition of a BE record : what strategy?

2010-09-09 Thread David ARNOULT - Edition Internet Operations
Hello TYPO3 Mailing list I have a quick question: I have developed an FE extension that manages resellers to display on FE as lists. Every reseller is a record added on the BE, very classic. Example here: http://www.topsolid.com/resellers/find-a-var.htm?no_cache=1 I would like to

[TYPO3-english] wec_staffdirectory and wec_map - only the 1st address in map is shown

2010-09-09 Thread De Contardi Riccardo
Please, I need an help, very urgent! I use Typo3 4.3.5 and I'd like to use wec_staffdirectory and wec_map to show some addresses. I've installed the 2 extensions and added the following static templates: WEC Staff Directory WEC Map Api WEC Simple Map I added to a page the plugin

[TYPO3-english] Page content types not displaying

2010-09-09 Thread Theo Kotey
Hi List, I have recently just installed Typo3 on my hosted account. After creating the page tree and created the templates using TemplaVoila, I tried to insert a page content element but the list of content types do not display at all. I am using Typo3 4.3.3. I upgraded to 4.4.2 but the

[TYPO3-english] Hide a field in BE list view using TSconfig

2010-09-09 Thread David ARNOULT - Edition Internet Operations
Hello Everyone, A simple question: Do you know how to hide a field defined in the TCA in BE list view for a group of users ? I couldn't find it in TSconfig doc. Thanks! David ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org

Re: [TYPO3-english] FE edition of a BE record : what strategy?

2010-09-09 Thread Sergey Alexandrov
Use sr_feuser_register, customize fields -Original Message- From: typo3-english-boun...@lists.typo3.org [mailto:typo3-english-boun...@lists.typo3.org] On Behalf Of David ARNOULT - Edition Internet Operations Sent: Thursday, September 09, 2010 4:20 AM To: 'TYPO3 English'; 'List for

Re: [TYPO3-english] Hide a field in BE list view using TSconfig

2010-09-09 Thread Sergey Alexandrov
Edit a group, 'Access list' tab, scroll down to 'Allowed excludefields', mark/unmark whatever you want. -Original Message- From: typo3-english-boun...@lists.typo3.org [mailto:typo3-english-boun...@lists.typo3.org] On Behalf Of David ARNOULT - Edition Internet Operations Sent: Thursday,

[TYPO3-english] chained selectbox in typo3 backend (ajax)

2010-09-09 Thread Jochem Nabuurs
Hi List, I have an extension which allows editors to add employees. Editors must fill in fields like name, address, etc but also the selectboxes unit, main departement, departement and subdepartement. When a unit is selected, the selectboxes with main departement, departement and

[TYPO3-english] [TYPO3-v4] TYPO3 4.5 alpha 2 in two weeks

2010-09-09 Thread Ernesto Baschny [cron IT]
Hi dear developers, with excitement I observe teams working on issues for our new release 4.5. I can feel by the communication on the mailing lists and in our meetings that there is a general awareness that 4.5 as a long term support release [1] is a very important milestone, and that we all want

Re: [TYPO3-english] chained selectbox in typo3 backend (ajax)

2010-09-09 Thread Sergey Alexandrov
Ok, 1. add to ext_localconf.php something like this: $TYPO3_CONF_VARS['BE']['AJAX']['your_ext::getDepartments'] = 'EXT:your_ext/class.ajax_response.php:tx_yourext_ajax-_ajax_get_departments '; 2. Create class.ajax_response.php, something like: class tx_yourext_ajax { function

Re: [TYPO3-english] chained selectbox in typo3 backend (ajax)

2010-09-09 Thread Sven Juergens
Am 09.09.10 18:49, schrieb Sergey Alexandrov: Ok, 1. add to ext_localconf.php something like this: $TYPO3_CONF_VARS['BE']['AJAX']['your_ext::getDepartments'] = 'EXT:your_ext/class.ajax_response.php:tx_yourext_ajax-_ajax_get_departments '; 2. Create class.ajax_response.php, something like:

[TYPO3-english] fe_user notification when his account is disabled or timed out

2010-09-09 Thread Kristian Søgaard
Hi all brave typo3 dev people. I am looking for an extension that can send an email to frontend users when their accounts time out. I have alot of fe_users in my system, and they all have been setup with start and stop times, to prevent them from logging in when their subscription is not

Re: [TYPO3-english] fe_user notification when his account is disabled or timed out

2010-09-09 Thread Sergey Alexandrov
Why don't you just create a php script and run it via cron (CLI mode) without ANY extensions? -Original Message- From: typo3-english-boun...@lists.typo3.org [mailto:typo3-english-boun...@lists.typo3.org] On Behalf Of Kristian Søgaard Sent: Thursday, September 09, 2010 1:58 PM To:

Re: [TYPO3-english] chained selectbox in typo3 backend (ajax)

2010-09-09 Thread Sergey Alexandrov
Actually, you don't need to assign IDs, you can always pass this as a parameter to figure out which element called a function :) -- hi, i like the idea of ajax based selectboxes too and your tip is very interesting :). But how it's possible to give that specific