Re: [TYPO3-english] Powermail dynamic recipient

2011-08-25 Thread N³
I found the problem, there were empty emails in the query. This modified
query solves it:

plugin.tx_powermail_pi1.email.recipient_mail {
email_query = TEXT
email_query.value = SELECT email FROM fe_users WHERE
find_in_set(###UID5###,usergroup)  0 AND deleted = 0 and trim(email) != ''
and POSITION('@' in email)  0
}

 -Ursprüngliche Nachricht-
 Von: typo3-english-boun...@lists.typo3.org [mailto:typo3-english-
 boun...@lists.typo3.org] Im Auftrag von N3
 Gesendet: Donnerstag, 25. August 2011 18:09
 An: 'TYPO3 English'
 Betreff: [TYPO3-english] Powermail dynamic recipient
 
 Hello,
 
 I am experiencing trouble with Powermail and dynamic recipients. I have a
 Powermail form with a field named recipient. It is a drop-down box, the
 values are as follows
 
 Test|1
 More Test|2
 
 Its UID is 5.
 
 I would like this drop-down to be used by my visitors to choose the
 recipient of their e-mail. Therefore I added the following to the
 typoscript:
 
 plugin.tx_powermail_pi1.email.recipient_mail {
 email_query = TEXT
 email_query.value = SELECT email FROM fe_users WHERE
 find_in_set(###UID5###,usergroup)  0 AND hidden = 0 AND deleted = 0
 }
 
 But this ends in an error by TYPO3:
 Oops, an error occured!
 Address in mailbox given [] does not comply with RFC 2822, 3.6.2.
 
 Since Powermail usually works when I give it a static e-mail address I
don't
 think this is a problem with the mailing engine but rather that no correct
 e-mail addresses is selected by my query. I have double checked the user
 group ID, it's correct.
 
 I tried putting the query into my main TS and into the page TS. no result
on
 either end.
 
 Does anyone out there have this working with Powermail?
 
 I am using TYPO3 4.5.4 and Powermail 1.6.4.
 
 Thank you very much
 Jan
 
 
 
 ___
 TYPO3-english mailing list
 TYPO3-english@lists.typo3.org
 http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] tt_news menu display current article

2011-10-27 Thread N³
Brilliant, I must have overlooked that setting. Thank you. I also achieved
the marking of the current entry with two simple lines of jQuery. #myMenu is
the id of the ul of the tt_news list, #rtitle is the id of the h1 in the
single

$(document).ready(function(){
var h1text = $('h1#rtitle').html();
$('#myMenu').find('a:contains('+h1text+')').parent().addClass('bold');
});

 -Ursprüngliche Nachricht-
 Von: typo3-english-boun...@lists.typo3.org [mailto:typo3-english-
 boun...@lists.typo3.org] Im Auftrag von Michael Cannon
 Gesendet: Mittwoch, 26. Oktober 2011 10:23
 An: TYPO3 English
 Betreff: Re: [TYPO3-english] tt_news menu display current article
 
 In tt_news's default template setup,
 `plugin.tt_news.excludeAlreadyDisplayedNews = 1`, is set.
 
 For the page you want to combine the list and single views,
 set `plugin.tt_news.excludeAlreadyDisplayedNews = 0`
 
 excludeAlreadyDisplayedNews
 # exclude news from display in a plugin, if they've been displayed
 already by another plugin on the same page.
 
 From

http://typo3.org/extensions/repository/view/tt_news/current/info/pi%252Fstat
ic
 %252Fts_new%252Fsetup.txt/
 
 Michael
 --
 Michael Cannon
 The TYPO3 Vagabond http://typo3vagabond.com @ in2code.de
 Been there, done that, 25 years of coding
 Germany +49 (0)160 574 1973
 US +1 617 539 6072
 http://typo3vagabond.com
 
 
 
 
 
 On Tue, Oct 25, 2011 at 4:49 PM, N3 i...@netzhochdrei.net wrote:
 
  Hi,
 
 
 
  I have a page that has two tt_news Content Elements: List (as a menu)
and
  Single. Works fine but the current article shown in the single element
  always disappears from the list element. I need it to be shown and, if
  possible, marked (bold or something).
 
 
 
  Any ideas?
 
 
 
  Thanks a lot
 
 
 
  ___
  TYPO3-english mailing list
  TYPO3-english@lists.typo3.org
  http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
 
 ___
 TYPO3-english mailing list
 TYPO3-english@lists.typo3.org
 http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Powermail error div positioning

2011-11-04 Thread N³
Hi everyone,

I’m trying to give the powermail .error div a better positioning. I found this 
snippet (see below) and put it to the end of my Typoscript Setup but 
unfortunately it has no effect whatsoever on my page. Anyone else with a 
solution?

I'm using Powermail 1.6.4, T3jQuery 2.0.5 and TYPO3 4.5.7

Thank you
Jan

---

lib.powermailjs.10 {
  value = position: 'center right', offset: [0,0], message: 'div/div'
}

[userFunc = user_powermailOnCurrentPage]  [userFunc = 
user_powermailCheckT3jquery(false)]
  page.jsFooterInline.10  lib.powermailjs
[end]

[userFunc = user_powermailOnCurrentPage]  [userFunc = 
user_powermailCheckT3jquery(true)]
  page.31320.40.jsdata.cObject  lib.powermailjs
[end]​




___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] Powermail error div positioning

2011-11-04 Thread N³
Hey,
Found it myself -.-

plugin.powermail.template.frontendJsTemplatePath = ...

Powermail 1.6.4 introduced a js template. Didn't see that before. This allows 
to edit the offset (around line 140). Still this is not ideal, in IE (9) its 
about 15px lower than in Firefox, so a good positioning is not possible. Shame 
...

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Title issue, and adding records issue

2011-04-05 Thread Rickard N

Hi! 

To begin with, I'm new to Typo3 and I don't know how to access html editing in 
typo3.
I have two issues, one with the showing title on the webpage I'd like to adjust 
and the other about adding records in several languages. 

On the search engines each side of my web site right now show up with company 
name and menu titel. I don't want that as I want each site to show the side 
title. For instance the index side show up as Nordic Discovery - Home. The 
meaning is that the page should show the side title which is Nordic Discovery - 
Rent of canoes and kayaks in Sweden. Beaver and moose safaris 
The thing is that Rent of canoes and kayaks in Sweden. Beaver and moose safaris 
is written in the Titel - Tag field in the SEO manager. 
Looking at the html document I can see that both the sides menu title and the 
sides title is written as side title on two different places. Please check the 
first and the last sentence in the cut from the attached document below. (Taken 
from view source)


titleNordic Discovery - Home/title  link rel=stylesheet 
href=typo3conf/ext/sb_config/fileadmin/css/main.css type=text/css 
media=screen, projection, print / 
!--[if IE] 
  link rel=stylesheet href=typo3conf/ext/sb_config/fileadmin/css/ie.css 
type=text/css media=screen, projection, print / 
![endif]-- 
!--[if lte IE 6 ] 
link rel=stylesheet 
href=typo3conf/ext/sb_config/fileadmin/css/ie6.css type=text/css 
media=screen, projection, print / 
![endif]-- 
  link rel=stylesheet href=typo3conf/ext/sb_config/fileadmin/css/print.css 
type=text/css media=print / 
  link rel=stylesheet type=text/css media=screen 
href=typo3conf/ext/sb_config/fileadmin/js/superfish/css/superfish.css / 
link rel=stylesheet type=text/css media=screen 
href=typo3conf/ext/sb_config/fileadmin/js/superfish/css/superfish-vertical.css
 / 
  
  
!-- (en) Add your meta data here -- 
!-- (de) Fuegen Sie hier ihre Meta-Daten ein -- 
  
!--[if lte IE 7] 
  
![endif]-- 
script type=text/javascript 
src=http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js;/script 
script type=text/javascript 
src=typo3conf/ext/sb_config/fileadmin/js/menu.js/script 
script type=text/javascript 
src=typo3conf/ext/sb_config/fileadmin/js/superfish/js/superfish.js/script 
titleRent of canoes and kayaks in Sweden. Beaver and moose 
safaris/title 


In all pages it has been changed in the metadata but as you can see above there 
is smth that overrides it. 
 
The second problem: I have made translations of a page and copied content. How 
do I add new records on the translated pages so it only shows there? (which 
should'nt show on the original language or others) (and making the record in 
original language then hiding didnt work for me either)
 
I'm aware of that this might be foolish questions but I didnt have much luck 
reading and searching info on the net about it at all. All help with sorting 
out the problems would be much appreciated. 

Regards 
Rickard




  
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Typo 3 core update - showing wrong version number?

2017-02-04 Thread Daniel N .

Hello everyone,

i just installed Typo 7.6.10 for testing purposes (as shown in [1]) and tried to upgrade it to the latest version (7.6.15) through the core updater. Everything seemed to be successful, but TYPO3 still claims to be at 7.6.10 (although I already did the database analyzer changes, etc...). 


Is this an actual issue or just a display error?
How can I verify, if the installation was successful? (the updater still wants 
to update, but skips most of the steps)
Is there a way to fix this?
Did I miss something through the upgrade process?

I already checked the symlink, which is pointing to the new version: typo3_src 
-> ../typo3_src-7.6.15/

Any hint would be greatly appreciated

Thanks in advance

Daniel

[1] 
docs.typo3.org/typo3cms/InstallationGuide/QuickInstall/GetAndUnpack/Index.html
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Typo 3 core update - showing wrong version number?

2017-02-05 Thread Daniel N .

Hello Michael,

apparently it was a caching issue, restarting apache2 completely solved it.

But thanks for the answer, it helped me getting a little insight on TYPO3's 
general structure.

Have a nice day

Daniel
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] redirect mobile user

2012-02-08 Thread T o n

Hello,

Besides my standard website, I want to create a mobile website in TYPO3.

For that purpose I made a separate tree in in TYPO3 and installed extension 
cwmobileredirect to detect any mobile device which moves the visitor to the 
other tree.
This works perfectly with my first provider. There I can make a subdomain 
m.mydomainname.com through a cpanel and redirect the visitors to the correct 
http://m.mydomainname.com/index.php?id=74 page.

My other provider allows unlimited subdomains, by simply creating a new folder 
in the root of my page, using ftp. That provider does not have a cpanel so I 
cannot add a redirect url. Therefore I tried an html page with (meta 
http-equiv=REFRESH 
content=0;url=http://www.mydomainname.com/index.php?id=74/;/HEAD). But what 
happens is, that when a mobile device is detected, it is sent to this index 
page and this index page sends him back to TYPO3. So I end up in an endless 
loop.
The same happens when I place a .htaccess file in the subdomain folder.

What do I have to do to get this working with this provider?

I do have access to some DNS settings where I can change the A, , CNAME, MX 
TXT and SRV.
Adding the 'm' subdomain as an A record to my website's IP-address does not 
help either.

Thnx,
Ton
  
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] redirect mobile user

2012-02-08 Thread T o n

Yes, Thanks. I have had that suggestion too in the Dutch mailing list. I 
absolutely like the idea, and will implement that too (but on a different site).
On this site I do not want to share the same information on a mobile. Only some 
basic info and a contact form. And I do not have the knowledge to get it 
running :-(

Thnx again, nevertheless!
Ton


 From: i...@ursbraem.ch
 Date: Wed, 8 Feb 2012 21:56:23 +0100
 To: typo3-english@lists.typo3.org
 Subject: Re: [TYPO3-english] redirect mobile user

 Hi

 it's not what you asked, but why not just use a mediaqueries and other
 responsive techniques to adapt the website's CSS? Content reduced (aka
 dumbed down) separate mobile versions are a little bit a thing of the
 past.

 If you're not familiar with the concept, check out
 http://mediaqueri.es/
 or
 http://www.abookapart.com/products/responsive-web-design

 Cheers
 Urs


 Am 08.02.12 21:47, schrieb T o n:
 
  Hello,
 
  Besides my standard website, I want to create a mobile website in TYPO3.
 
  For that purpose I made a separate tree in in TYPO3 and installed extension 
  cwmobileredirect to detect any mobile device which moves the visitor to the 
  other tree.
  This works perfectly with my first provider. There I can make a subdomain 
  m.mydomainname.com through a cpanel and redirect the visitors to the 
  correct http://m.mydomainname.com/index.php?id=74 page.
 
  My other provider allows unlimited subdomains, by simply creating a new 
  folder in the root of my page, using ftp. That provider does not have a 
  cpanel so I cannot add a redirect url. Therefore I tried an html page with 
  (meta http-equiv=REFRESH 
  content=0;url=http://www.mydomainname.com/index.php?id=74/;/HEAD). But 
  what happens is, that when a mobile device is detected, it is sent to this 
  index page and this index page sends him back to TYPO3. So I end up in an 
  endless loop.
  The same happens when I place a .htaccess file in the subdomain folder.
 
  What do I have to do to get this working with this provider?
 
  I do have access to some DNS settings where I can change the A, , 
  CNAME, MX TXT and SRV.
  Adding the 'm' subdomain as an A record to my website's IP-address does not 
  help either.
 
  Thnx,
  Ton
 


 --
 Urs Bräm
 macht Websites
 ---
 Certified Typo3 Integrator
 CH-3011 Bern
 www.ursbraem.ch
 ___
 TYPO3-english mailing list
 TYPO3-english@lists.typo3.org
 http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
  
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] redirect mobile user

2012-02-14 Thread T o n

Thx Katja,

I am using cwmobileredirect! Problem is that I can't get it to work with my 
second provider.
And secondly I just found out that when I type in the domain.com address, 
without the www, the user of a desktop is also guided to the mobile site. I 
don't want that of course.
The level 3 :-) answers I read did not work out for me. I do not have enough 
knowledge for that. 
Can you explain me low level how to get it running?

Best regards,
Ton


 From: katja.lamp...@lieska.net
 Date: Tue, 14 Feb 2012 14:35:53 +0200
 To: typo3-english@lists.typo3.org
 Subject: Re: [TYPO3-english] redirect mobile user

 Hi Ton,
 You might want to check this extension: cwmobileredirect

 I use it just for recognizing the mobile device - so that I don't
 necessarily redirect but with this I can give conditions if the visitor
 is browsing with mobile device. (There is a core condition for this too,
 but I'm not sure how updated that data is. This ext is updated regurlarly).

 I thought also to check if I could use the layout property of content
 elements and have that in my conditions, so that every time I choose for
 a content element layout3 (for example) it will not be rendered for the
 mobile device. This combined with media querys would be ideal, you
 wouldn't need to have a separate site for mobile devices.

 Good mobiling :) Katja


 8.2.2012 22:47, T o n kirjoitti:
 
  Hello,
 
  Besides my standard website, I want to create a mobile website in TYPO3.
 
  For that purpose I made a separate tree in in TYPO3 and installed extension 
  cwmobileredirect to detect any mobile device which moves the visitor to the 
  other tree.
  This works perfectly with my first provider. There I can make a subdomain 
  m.mydomainname.com through a cpanel and redirect the visitors to the 
  correct http://m.mydomainname.com/index.php?id=74 page.
 
  My other provider allows unlimited subdomains, by simply creating a new 
  folder in the root of my page, using ftp. That provider does not have a 
  cpanel so I cannot add a redirect url. Therefore I tried an html page with 
  (meta http-equiv=REFRESH 
  content=0;url=http://www.mydomainname.com/index.php?id=74/;/HEAD). But 
  what happens is, that when a mobile device is detected, it is sent to this 
  index page and this index page sends him back to TYPO3. So I end up in an 
  endless loop.
  The same happens when I place a .htaccess file in the subdomain folder.
 
  What do I have to do to get this working with this provider?
 
  I do have access to some DNS settings where I can change the A, , 
  CNAME, MX TXT and SRV.
  Adding the 'm' subdomain as an A record to my website's IP-address does not 
  help either.
 
  Thnx,
  Ton
 
 ___
 TYPO3-english mailing list
 TYPO3-english@lists.typo3.org
 http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
  
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] BE CSV export - semi-colon

2012-03-21 Thread T o n

start
control panel
clock language and region
region and language
additinal settings
change the list separator from ; to ,
if that does not work, then simply change the main format to English

 From: i...@bednarik.org
 Date: Thu, 22 Mar 2012 06:40:33 +0100
 To: typo3-english@lists.typo3.org
 Subject: [TYPO3-english]  BE CSV export - semi-colon
 
 Hi all,
 
 is it possible to configure CSV export from BE to separate fields with 
 semi-colon? Windows' Excel is not able to open CSV with commas.
 
 Or is there a way to force Excel to open it correctly?
 
 Thanks
 
 Jan
 ___
 TYPO3-english mailing list
 TYPO3-english@lists.typo3.org
 http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
  
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english