download notification

View: New views
6 Messages — Rating Filter:   Alert me  

download notification

by horace3d@gmail.com :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

hi,

is it possible that the administrator gets an notification email if a
frontend user downloads a file which is offered on a page? does anyone know
an extension which allows something like this or does anyone have any other
ideas how this could be solved?

cheers,
horace
_______________________________________________
TYPO3-english mailing list
TYPO3-english@...
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: download notification

by Francois Suter-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,

> is it possible that the administrator gets an notification email if a
> frontend user downloads a file which is offered on a page? does anyone know
> an extension which allows something like this or does anyone have any other
> ideas how this could be solved?

I don't think there's anything to achieve that out of the box. There are
extensions that can be used to manage downloads. I never used any, but
just search for "download" in the TER. Maybe one has a mail mechanism.
Or it can be added to one.

Alternately, there are extensions that manipulate TYPO3-generated links,
like rsgoogleanalytics, to add JavaScript to each link for follow-up by
Google Analytics. A similar system could be use to add an AJAX call to
each file link, that triggers a mail.

HTH

--

Francois Suter
Cobweb Development Sarl - http://www.cobweb.ch
_______________________________________________
TYPO3-english mailing list
TYPO3-english@...
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: download notification

by horace3d@gmail.com :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Wed, Nov 4, 2009 at 10:26 PM, Francois Suter <fsu-lists@...> wrote:

> Hi,
>
>  is it possible that the administrator gets an notification email if a
>> frontend user downloads a file which is offered on a page? does anyone
>> know
>> an extension which allows something like this or does anyone have any
>> other
>> ideas how this could be solved?
>>
>
> I don't think there's anything to achieve that out of the box. There are
> extensions that can be used to manage downloads. I never used any, but just
> search for "download" in the TER. Maybe one has a mail mechanism. Or it can
> be added to one.
>
> Alternately, there are extensions that manipulate TYPO3-generated links,
> like rsgoogleanalytics, to add JavaScript to each link for follow-up by
> Google Analytics. A similar system could be use to add an AJAX call to each
> file link, that triggers a mail.
>


thanks for your fast answer!

is it possible to figure out the data (name,...) of a currently logged in
frontend user in typoscript, so that i can add it as parameters to an AJAX
call? if yes, can you give some hints?



>
> HTH
>
> --
>
> Francois Suter
> Cobweb Development Sarl - http://www.cobweb.ch
>
> _______________________________________________
> TYPO3-english mailing list
> TYPO3-english@...
> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
>
_______________________________________________
TYPO3-english mailing list
TYPO3-english@...
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: download notification

by Thasmo :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Try this:

        10 = TEXT
        10.data = TSFE:fe_user|user|username
        10.wrap = Username: |

This way you can access (all) TSFE objects
with typoscript, especially the FE user object.

To check if a user is logged in just use:

        [usergroup = *]
        <TS goes here>
        [global]

Greatings!

horace grant schrieb:

> On Wed, Nov 4, 2009 at 10:26 PM, Francois Suter <fsu-lists@...> wrote:
>
>> Hi,
>>
>>  is it possible that the administrator gets an notification email if a
>>> frontend user downloads a file which is offered on a page? does anyone
>>> know
>>> an extension which allows something like this or does anyone have any
>>> other
>>> ideas how this could be solved?
>>>
>> I don't think there's anything to achieve that out of the box. There are
>> extensions that can be used to manage downloads. I never used any, but just
>> search for "download" in the TER. Maybe one has a mail mechanism. Or it can
>> be added to one.
>>
>> Alternately, there are extensions that manipulate TYPO3-generated links,
>> like rsgoogleanalytics, to add JavaScript to each link for follow-up by
>> Google Analytics. A similar system could be use to add an AJAX call to each
>> file link, that triggers a mail.
>>
>
>
> thanks for your fast answer!
>
> is it possible to figure out the data (name,...) of a currently logged in
> frontend user in typoscript, so that i can add it as parameters to an AJAX
> call? if yes, can you give some hints?
>
>
>
>> HTH
>>
>> --
>>
>> Francois Suter
>> Cobweb Development Sarl - http://www.cobweb.ch
>>
>> _______________________________________________
>> TYPO3-english mailing list
>> TYPO3-english@...
>> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
>>
_______________________________________________
TYPO3-english mailing list
TYPO3-english@...
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: download notification

by horace3d@gmail.com :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Wed, Nov 4, 2009 at 10:55 PM, Thomas "Thasmo" Deinhamer <thasmo@...
> wrote:

> Try this:
>
>        10 = TEXT
>        10.data = TSFE:fe_user|user|username
>        10.wrap = Username: |
>
> This way you can access (all) TSFE objects
> with typoscript, especially the FE user object.
>
> To check if a user is logged in just use:
>
>        [usergroup = *]
>        <TS goes here>
>        [global]
>
> Greatings!
>


thanks a lot! that was very helpful. i will try this AJAX solution...

cheers!




>
> horace grant schrieb:
>
>  On Wed, Nov 4, 2009 at 10:26 PM, Francois Suter <fsu-lists@...>
>> wrote:
>>
>>  Hi,
>>>
>>>  is it possible that the administrator gets an notification email if a
>>>
>>>> frontend user downloads a file which is offered on a page? does anyone
>>>> know
>>>> an extension which allows something like this or does anyone have any
>>>> other
>>>> ideas how this could be solved?
>>>>
>>>>  I don't think there's anything to achieve that out of the box. There
>>> are
>>> extensions that can be used to manage downloads. I never used any, but
>>> just
>>> search for "download" in the TER. Maybe one has a mail mechanism. Or it
>>> can
>>> be added to one.
>>>
>>> Alternately, there are extensions that manipulate TYPO3-generated links,
>>> like rsgoogleanalytics, to add JavaScript to each link for follow-up by
>>> Google Analytics. A similar system could be use to add an AJAX call to
>>> each
>>> file link, that triggers a mail.
>>>
>>>
>>
>> thanks for your fast answer!
>>
>> is it possible to figure out the data (name,...) of a currently logged in
>> frontend user in typoscript, so that i can add it as parameters to an AJAX
>> call? if yes, can you give some hints?
>>
>>
>>
>>  HTH
>>>
>>> --
>>>
>>> Francois Suter
>>> Cobweb Development Sarl - http://www.cobweb.ch
>>>
>>> _______________________________________________
>>> TYPO3-english mailing list
>>> TYPO3-english@...
>>> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
>>>
>>>  _______________________________________________
> TYPO3-english mailing list
> TYPO3-english@...
> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
>
_______________________________________________
TYPO3-english mailing list
TYPO3-english@...
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: download notification

by horace3d@gmail.com :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Wed, Nov 4, 2009 at 11:03 PM, horace grant <horace3d@...> wrote:

> On Wed, Nov 4, 2009 at 10:55 PM, Thomas "Thasmo" Deinhamer <thasmo@...
>> wrote:
>
>> Try this:
>>
>>        10 = TEXT
>>        10.data = TSFE:fe_user|user|username
>>        10.wrap = Username: |
>>
>> This way you can access (all) TSFE objects
>> with typoscript, especially the FE user object.
>>
>> To check if a user is logged in just use:
>>
>>        [usergroup = *]
>>        <TS goes here>
>>        [global]
>>
>> Greatings!


does anyone know how to manipulate the links of a uploads content element?

tt_content.uploads.20.linkProc.parameter

i have experimented with this but with no result. the link never changed.

how would i change the default links to a javascript function call
with some specified parameters?
_______________________________________________
TYPO3-english mailing list
TYPO3-english@...
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english