Re: [TYPO3-english] Wrong confirm-user url in sr_feuser_register

2019-01-30 Thread jeppe

Page is hidden in menu.

The is linke this: 
domain.xxx/confirm-user/?tx_srfeuserregister_pi1%5BregHash%5D=f44a283ee5ea99444b1b


The page is empty beside the websites top and bottom.



Jeppe




Tonix - Antonio Nati skrev den 30.01.2019 12:54:

Default should be fine.
Page/plugin must be visible to all.

Tonino

Il 30/01/2019 12:44, je...@donslund.net ha scritto:

Hi

In the e-mail to the administrator where he/she should click a link to 
accept the subscription, the link leads to a blank page and the user 
is not activated.
What should that page contain? A sr_feuser_register element, but what 
type should I choose?




Jeppe
___
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] TYPO3-english Digest, Vol 184, Issue 2

2019-01-17 Thread jeppe

Something is still wrong

I can select "BEF Medlemsliste 3" as a plugin in TYPO3, but no flexform 
is showing.


\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
'Originalen.BEFMembers',
'BEF Medlemsliste 2',
'BEF Medlemsliste 3'
);

$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['befmembers_befmedlemsliste'] 
= 'select_key,pages,recursive';

// ['brfeedback_feedback‘] = extensionname_pluginname

$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['befmembers_befmedlemsliste'] 
= 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('befmembers_befmedlemsliste', 
'FILE:EXT:befmembers/Configuration/FlexForms/flexform.xml');




Jeppe



Birgit skrev den 17.01.2019 09:55:

Hi Jeppe,


\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
'Originalen.BefMembers',
'Medlemsliste',
'Medlemsliste'
);


try: ['befmembers_medlemsliste‘],
clear all caches and and typo3temp/

Clear all flexform configurations in your_extension/ext_tables.php and
your_extension/ext_localconf.php


Best regards Birgit




Am 17.01.2019 um 09:03 schrieb je...@donslund.net:

Hi Birgit

I think I need a little more help.

I guess I am getting confused about what is exntension key, exentsion 
name and plugin name, so maybe I am not using the right names in the 
code.

Can I find it somewhere?

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
'Originalen.BefMembers',
'Medlemsliste',
'Medlemsliste'
);

$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['befmembers_befmedlemsliste'] 
= 'select_key,pages,recursive';

// ['brfeedback_feedback‘] = extensionname_pluginname

$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['befmembers_befmedlemsliste'] 
= 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('befmembers_befmedlemsliste', 
'FILE:EXT:befmembers/Configuration/FlexForms/flexform.xml');



Jeppe




Birgit skrev den 16.01.2019 16:59:

Hi Jeppe,
this is a sample configuration for TYPO3 8.7.x:
File:
EXT:br_feedback/Configuration/TCA/Overrides/tt_content.php
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
   'BR.BrFeedback',
   'Feedback',
   'Feedback'
);
   /**
* Include Flexform
*/
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['brfeedback_feedback']
= 'select_key,pages,recursive‘;  // ['brfeedback_feedback‘] =
extensionname_pluginname
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['brfeedback_feedback']
= 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('brfeedback_feedback',
'FILE:EXT:br_feedback/Configuration/FlexForms/flexform_feedback_list.xml‘);
Best regards
Birgit

Am 16.01.2019 um 13:56 schrieb je...@donslund.net:
Unfortunately no. I have a copy of the flexform.xml in boht places.
Regards
Jeppe
David Bruchmann skrev den 16.01.2019 13:04:

Is it possible that the file-path is just wrong?
Instead of this:
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue($pluginSignature,
'FILE:EXT:'.$_EXTKEY.'/Configuration/flexform.xml');
it could be like this:
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue($pluginSignature,
'FILE:EXT:'.$_EXTKEY.'/Configuration/FlexForms/flexform.xml');
On Wed, Jan 16, 2019 at 6:00 PM 


wrote:

Send TYPO3-english mailing list submissions to
  typo3-english@lists.typo3.org
To subscribe or unsubscribe via the World Wide Web, visit
  
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

or, via email, send a message with subject or body 'help' to
  typo3-english-requ...@lists.typo3.org
You can reach the person managing the list at
  typo3-english-ow...@lists.typo3.org
When replying, please edit your Subject line so it is more 
specific

than "Re: Contents of TYPO3-english digest..."
Today's Topics:
 1. TYPO3 8.7 and Flexform (je...@donslund.net)
--
Message: 1
Date: Tue, 15 Jan 2019 13:40:22 +0100
From: je...@donslund.net
Subject: [TYPO3-english] TYPO3 8.7 and Flexform
To: Typo3 english 
Message-ID:
  
Content-Type: text/plain; charset=US-ASCII; format=flowed
Hi
I can seem to find a working tutorial on how to use Flexform in 
TYPO3

8.7.
I have tried with this:
$extensionName =
\TYPO3\CMS\Core\Utility\GeneralUtility::underscoredToUpperCamelCase($_EXTKEY);
$frontendpluginName = 'BEF Members';
$pluginSignature =
strtolower($extensionName).'_'.strtolower($frontendpluginName);
$TCA['tt_content']['types']['list']['subtypes_addlist'][$pluginSignature]
= 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue($pluginSignature,
'FILE:EXT:'.$_EXTKEY.'/Configuration/flexform.xml');
But the flexfrom doesn't show up.
Can anyone help me?
Re

Re: [TYPO3-english] TYPO3-english Digest, Vol 184, Issue 2

2019-01-17 Thread jeppe

Hi Birgit

I think I need a little more help.

I guess I am getting confused about what is exntension key, exentsion 
name and plugin name, so maybe I am not using the right names in the 
code.

Can I find it somewhere?

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
'Originalen.BefMembers',
'Medlemsliste',
'Medlemsliste'
);

$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['befmembers_befmedlemsliste'] 
= 'select_key,pages,recursive';

// ['brfeedback_feedback‘] = extensionname_pluginname

$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['befmembers_befmedlemsliste'] 
= 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('befmembers_befmedlemsliste', 
'FILE:EXT:befmembers/Configuration/FlexForms/flexform.xml');



Jeppe




Birgit skrev den 16.01.2019 16:59:

Hi Jeppe,

this is a sample configuration for TYPO3 8.7.x:


File:
EXT:br_feedback/Configuration/TCA/Overrides/tt_content.php


\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
'BR.BrFeedback',
'Feedback',
'Feedback'
);

/**
 * Include Flexform
 */

$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['brfeedback_feedback']
= 'select_key,pages,recursive‘;  // ['brfeedback_feedback‘] =
extensionname_pluginname

$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['brfeedback_feedback']
= 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('brfeedback_feedback',
'FILE:EXT:br_feedback/Configuration/FlexForms/flexform_feedback_list.xml‘);


Best regards
Birgit




Am 16.01.2019 um 13:56 schrieb je...@donslund.net:

Unfortunately no. I have a copy of the flexform.xml in boht places.


Regards
Jeppe


David Bruchmann skrev den 16.01.2019 13:04:

Is it possible that the file-path is just wrong?
Instead of this:
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue($pluginSignature,
'FILE:EXT:'.$_EXTKEY.'/Configuration/flexform.xml');
it could be like this:
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue($pluginSignature,
'FILE:EXT:'.$_EXTKEY.'/Configuration/FlexForms/flexform.xml');
On Wed, Jan 16, 2019 at 6:00 PM 


wrote:

Send TYPO3-english mailing list submissions to
   typo3-english@lists.typo3.org
To subscribe or unsubscribe via the World Wide Web, visit
   http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
or, via email, send a message with subject or body 'help' to
   typo3-english-requ...@lists.typo3.org
You can reach the person managing the list at
   typo3-english-ow...@lists.typo3.org
When replying, please edit your Subject line so it is more specific
than "Re: Contents of TYPO3-english digest..."
Today's Topics:
  1. TYPO3 8.7 and Flexform (je...@donslund.net)
--
Message: 1
Date: Tue, 15 Jan 2019 13:40:22 +0100
From: je...@donslund.net
Subject: [TYPO3-english] TYPO3 8.7 and Flexform
To: Typo3 english 
Message-ID:
   
Content-Type: text/plain; charset=US-ASCII; format=flowed
Hi
I can seem to find a working tutorial on how to use Flexform in 
TYPO3

8.7.
I have tried with this:
$extensionName =
\TYPO3\CMS\Core\Utility\GeneralUtility::underscoredToUpperCamelCase($_EXTKEY);
$frontendpluginName = 'BEF Members';
$pluginSignature =
strtolower($extensionName).'_'.strtolower($frontendpluginName);
$TCA['tt_content']['types']['list']['subtypes_addlist'][$pluginSignature]
= 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue($pluginSignature,
'FILE:EXT:'.$_EXTKEY.'/Configuration/flexform.xml');
But the flexfrom doesn't show up.
Can anyone help me?
Regards
Jeppe Donslund
--
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
End of TYPO3-english Digest, Vol 184, Issue 2
*

___
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 mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] TYPO3-english Digest, Vol 184, Issue 2

2019-01-16 Thread jeppe

Unfortunately no. I have a copy of the flexform.xml in boht places.


Regards
Jeppe


David Bruchmann skrev den 16.01.2019 13:04:

Is it possible that the file-path is just wrong?

Instead of this:
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue($pluginSignature,
'FILE:EXT:'.$_EXTKEY.'/Configuration/flexform.xml');

it could be like this:
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue($pluginSignature,
'FILE:EXT:'.$_EXTKEY.'/Configuration/FlexForms/flexform.xml');

On Wed, Jan 16, 2019 at 6:00 PM 
wrote:


Send TYPO3-english mailing list submissions to
typo3-english@lists.typo3.org

To subscribe or unsubscribe via the World Wide Web, visit
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
or, via email, send a message with subject or body 'help' to
typo3-english-requ...@lists.typo3.org

You can reach the person managing the list at
typo3-english-ow...@lists.typo3.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of TYPO3-english digest..."


Today's Topics:

   1. TYPO3 8.7 and Flexform (je...@donslund.net)


--

Message: 1
Date: Tue, 15 Jan 2019 13:40:22 +0100
From: je...@donslund.net
Subject: [TYPO3-english] TYPO3 8.7 and Flexform
To: Typo3 english 
Message-ID:

Content-Type: text/plain; charset=US-ASCII; format=flowed

Hi

I can seem to find a working tutorial on how to use Flexform in TYPO3
8.7.

I have tried with this:
$extensionName =

\TYPO3\CMS\Core\Utility\GeneralUtility::underscoredToUpperCamelCase($_EXTKEY);
$frontendpluginName = 'BEF Members';
$pluginSignature =
strtolower($extensionName).'_'.strtolower($frontendpluginName);
$TCA['tt_content']['types']['list']['subtypes_addlist'][$pluginSignature]
= 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue($pluginSignature,

'FILE:EXT:'.$_EXTKEY.'/Configuration/flexform.xml');

But the flexfrom doesn't show up.


Can anyone help me?


Regards
Jeppe Donslund


--

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

End of TYPO3-english Digest, Vol 184, Issue 2
*


___
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] TYPO3 8.7 and Flexform

2019-01-15 Thread jeppe

Hi

I can seem to find a working tutorial on how to use Flexform in TYPO3 
8.7.


I have tried with this:
$extensionName = 
\TYPO3\CMS\Core\Utility\GeneralUtility::underscoredToUpperCamelCase($_EXTKEY);

$frontendpluginName = 'BEF Members';
$pluginSignature = 
strtolower($extensionName).'_'.strtolower($frontendpluginName);
$TCA['tt_content']['types']['list']['subtypes_addlist'][$pluginSignature] 
= 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue($pluginSignature, 
'FILE:EXT:'.$_EXTKEY.'/Configuration/flexform.xml');


But the flexfrom doesn't show up.


Can anyone help me?


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


Re: [TYPO3-english] Getting images out of fe_users

2018-09-17 Thread jeppe
I am looking for the Frontend user image migration wizard in the Install 
tool, but I cannot find it.



Jeppe





Birgit skrev den 14.09.2018 15:47:

hallo Jeppe,

try



best regards
Birgit




Am 14.09.2018 um 14:19 schrieb je...@donslund.net:

Hi

I need to get the images out of the fe_users table.
I have an extension and all the other data is no problem, but in the 
database the value is just 1 if there is an image.
I have tried with treatIdAsReference="1" /> but it tries to dinf an image that is not 
there.


How is the right way to do it?



Jeppe Donslund
___
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

Re: [TYPO3-english] Getting images out of fe_users

2018-09-17 Thread jeppe

Hi Birgit

No of them is giving anything.

{befmember.0.image} is just giving me the numbers of 
image uploaded to a fe_user.




Jeppe


Birgit skrev den 14.09.2018 15:47:

hallo Jeppe,

try



best regards
Birgit




Am 14.09.2018 um 14:19 schrieb je...@donslund.net:

Hi

I need to get the images out of the fe_users table.
I have an extension and all the other data is no problem, but in the 
database the value is just 1 if there is an image.
I have tried with treatIdAsReference="1" /> but it tries to dinf an image that is not 
there.


How is the right way to do it?



Jeppe Donslund
___
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] Getting images out of fe_users

2018-09-14 Thread jeppe

Hi

I need to get the images out of the fe_users table.
I have an extension and all the other data is no problem, but in the 
database the value is just 1 if there is an image.
I have tried with treatIdAsReference="1" /> but it tries to dinf an image that is not 
there.


How is the right way to do it?



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


Re: [TYPO3-english] Extending tt_news

2018-09-01 Thread jeppe
But wouldn't the best solution not be to have the extending part in my own 
extension?
What if I need to update News at some point? Then I need to start over again if 
I extend News in the News code.


Jeppe

-Oprindelig meddelelse-
Fra: typo3-english-boun...@lists.typo3.org 
 På vegne af Christian Platt
Sendt: 1. september 2018 06:27
Til: TYPO3 English 
Emne: Re: [TYPO3-english] Extending tt_news

Ok,i guess, you will not find the new fields in the backend, when looking at an 
entry for for news.

But anyway, if you entend en extension with new fields, you also have to extend 
the model with setter and getter of your fields.

But you also have to extend the TCA of the model to have that data  stored.

https://docs.typo3.org/typo3cms/extensions/news/DeveloperManual/ExtendNews/AddCustomType/Index.html

Christian



> Am 31.08.2018 um 19:38 schrieb  :
> 
> The tutorial doesn't say anything about extending the TCA, but maybe that 
> part is missing.
> But no, I have not done anything with the TCA.
> 
> 
> Jeppe
> 
> -Oprindelig meddelelse-
> Fra: typo3-english-boun...@lists.typo3.org 
>  På vegne af Christian Platt
> Sendt: 31. august 2018 19:11
> Til: TYPO3 English 
> Emne: Re: [TYPO3-english] Extending tt_news
> 
> But the question for extending TCA remains….
> 
> Christian
> 
>> Am 31.08.2018 um 18:53 schrieb jeppe :
>> 
>> It was a miswriting. I meant news, not tt_news Jeppe
>> 
>> 
>> Sendt fra min Samsung Galaxy-smartphone.
>>  Oprindelig besked Fra: Jan Bartels 
>>  Dato: 31/08/2018  18.32  (GMT+01:00) Til: 
>> typo3-english@lists.typo3.org Emne: Re: [TYPO3-english] Extending tt_news Am 
>> 30.08.2018 um 20:10 schrieb je...@donslund.net:
>>> I have tried to extend tt_news with this tutorial 
>>> docs.typo3.org/typo3cms/extensions/news/2.2.1/Main/Tutorial/Extendin
>>> g News/In dex.html. But the fields doen't show up in backend.
>> tt_news != news
>> 
>> 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
> 
> 
> ___
> 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] Extending tt_news

2018-08-31 Thread jeppe
The tutorial doesn't say anything about extending the TCA, but maybe that part 
is missing.
But no, I have not done anything with the TCA.


Jeppe

-Oprindelig meddelelse-
Fra: typo3-english-boun...@lists.typo3.org 
 På vegne af Christian Platt
Sendt: 31. august 2018 19:11
Til: TYPO3 English 
Emne: Re: [TYPO3-english] Extending tt_news

But the question for extending TCA remains….

Christian

> Am 31.08.2018 um 18:53 schrieb jeppe :
> 
> It was a miswriting. I meant news, not tt_news Jeppe
> 
> 
> Sendt fra min Samsung Galaxy-smartphone.
>  Oprindelig besked Fra: Jan Bartels 
>  Dato: 31/08/2018  18.32  (GMT+01:00) Til: 
> typo3-english@lists.typo3.org Emne: Re: [TYPO3-english] Extending tt_news Am 
> 30.08.2018 um 20:10 schrieb je...@donslund.net:
>> I have tried to extend tt_news with this tutorial 
>> docs.typo3.org/typo3cms/extensions/news/2.2.1/Main/Tutorial/Extending
>> News/In dex.html. But the fields doen't show up in backend.
> tt_news != news
> 
> 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


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

Re: [TYPO3-english] Extending tt_news

2018-08-31 Thread jeppe
It was a miswriting. I meant news, not tt_news
Jeppe


Sendt fra min Samsung Galaxy-smartphone.
 Oprindelig besked Fra: Jan Bartels  Dato: 
31/08/2018  18.32  (GMT+01:00) Til: typo3-english@lists.typo3.org Emne: Re: 
[TYPO3-english] Extending tt_news 
Am 30.08.2018 um 20:10 schrieb je...@donslund.net:
> I have tried to extend tt_news with this tutorial
> docs.typo3.org/typo3cms/extensions/news/2.2.1/Main/Tutorial/ExtendingNews/In
> dex.html. But the fields doen't show up in backend.
tt_news != news

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


[TYPO3-english] Extending tt_news

2018-08-30 Thread jeppe
I have tried to extend tt_news with this tutorial
docs.typo3.org/typo3cms/extensions/news/2.2.1/Main/Tutorial/ExtendingNews/In
dex.html. But the fields doen't show up in backend.

I have compared the database and cleared the chache and also reinstalled my
extending extension a few times.

 

Is this tutorial old og should it work?

 

 

Jeppe Donslund

 

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


Re: [TYPO3-english] Labels missing at custom fields in TCA

2018-08-16 Thread jeppe

I changed it to use the xlf file and in that file the syntax was

trans-unit id="tx_befmembers_description">
Beskrivelse


Now it works, thank you all for your time.

Jeppe

Bernhard Kraft skrev den 16.08.2018 13:45:

Hi,

On 08/15/2018 11:14 AM, Mikel wrote:

I’m not sure, if xml files will be read. I guess so, but maybe you 
should try to add xlf as file ending.


Up to now there have been three language file formats: PHP, XML and 
XLF.


I guess all three should still work - but I am not sure about this.
Maybe the support for XML language files has been dropped completely
in favour of XLF language files. Which of course also have XML syntax
but are a commonly used format. The old XML language files of TYPO3
have been a format custom to TYPO3.

I am not sure about the PHP language files but I assume they are still
supported because the easy parsing by only including them. Would have
to check ...


greetings,
Bernhard
___
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] Labels missing at custom fields in TCA

2018-08-14 Thread jeppe

Hi Mikel

I really think that I did flush the cache but in TYPO3, in the Install 
tool and in the browser.


This is what I got in my TCA

'tx_befmembers_description' => array(
'exclude' => 0,
   		'label' => 
'LLL:EXT:befmembers/Resources/Private/Language/locallang_db.xml:tx_befmembers_description',

'config' => array(
'type' => 'text',
'cols' => 30,
'rows' => 10,
    ),
),


Jeppe




Mikel skrev den 13.08.2018 22:20:

Hi Jeppe,

have you flushed the caches? The caches are very strict regarding the
TCA and translations.

If so, have a referenced your translation file and identifier in the
TCA correct?

E.g.:
'title' => [
'label' =>
'LLL:EXT:foobar/Resources/Private/Language/locallang_db.xlf:your_property.title',
'config' => [
'type' => 'input',
'size' => 30,
'eval' => 'trim,required'
],
],
Mikel


Am 13.08.2018 um 15:25 schrieb je...@donslund.net:

Hi

I have added some some extra fields to fe_users with my own extension.
I the fe_user TCA he fields are shown, but there is no labels at the 
fields.


I have tried with both


Description


and

id="tx_befmembers_domain_model_befmembers.tx_befmembers_description">

Description


But it isn't working.


Where should I look for an answer?


BR
Jeppe Donslund
___
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] TYPO3 is adding chash to regular pages

2018-08-14 Thread jeppe
Why is TYPO3 adding cHash to regular pages? They are saved in RealUrl 
but when antoher user is visiting the pages, we get an error in RealUrl.

I am not sure whether it is an TYPO3 or a RealUrl thing.

When I am clicking sround the site, I can't find any links with cHash 
(only news pages are having cHashes) but suddenly they show up and we 
get the error.



Where should I look for a solution?



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


[TYPO3-english] Labels missing at custom fields in TCA

2018-08-13 Thread jeppe

Hi

I have added some some extra fields to fe_users with my own extension.
I the fe_user TCA he fields are shown, but there is no labels at the 
fields.


I have tried with both


 Description


and

id="tx_befmembers_domain_model_befmembers.tx_befmembers_description">

Description


But it isn't working.


Where should I look for an answer?


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


Re: [TYPO3-english] Custom CSS

2018-08-13 Thread jeppe

Hi Wieslaw

Try

page.includeCSS.myCss = fileadmin/intense/css/style.css

I think it need a "name"

Then you can include another css file with

page.includeCSS.anotherCss = fileadmin/intense/css/style.css


Regards
Jeppe Donslund


Wiesław Golsz skrev den 13.08.2018 14:28:

Hello,

I made a copy of the original "Introduction" template. The original one
was hidden.

I removed from the test template "includeCSSLibs" and "includeCSS" - 
was cleared.

I have includ the line to "Constant".
page.includeCSS = fileadmin/intense/css/style.css

But TYPO3 does not load customized css:
http://remax-prestige.pl/typo3/

It should be like here
http://remax-prestige.pl/htb/novi/projects/template/test2.html

The whole template record:

Constant

/[treeLevel = 0]//
//page.theme.navigationstyle = default-transition//
//page.theme.navigationtype = top//
//[end]//
//plugin.bootstrap_package.settings.less.brand-primary = #10a0cb//
//page.theme.copyright.text = Running with http://www.typo3.org; target="_blank">TYPO3 and https://github.com/benjaminkott/bootstrap_package;
target="_blank">Bootstrap Package.//
//page.theme.meta.enable = 0//
//page.logo.file = 
fileadmin/introduction/images/introduction-package.svg//

//page.logo.fileInverted =
fileadmin/introduction/images/introduction-package-inverted.svg//
//page.includeCSS = fileadmin/intense/css/style.css//
//plugin.bootstrap_package.settings.less.section-primary-link-color = 
#ff8//
//plugin.bootstrap_package_contentelements.menu_thumbnail.media.height 
=

170m//
//plugin.bootstrap_package_contentelements.menu_thumbnail.media.width = 
170/


Setup

/page.includeCSS. =//
//page.includeCSSLibs >//
//page.includeCSS >/

Regards,

___
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] updateLoginTimeStamp error in TYPO3 and fe_manager

2018-07-24 Thread jeppe

Hi

I get this error in my TYPO3 8.7.17 with fe_manager

Core: Exception handler (WEB): Uncaught TYPO3 Exception: Argument 1 
passed to 
TYPO3\CMS\Core\Authentication\AbstractUserAuthentication::updateLoginTimestamp() 
must be of the type integer, null given, called in 
/var/www/www.domain.dk/www/typo3/sysext/core/Classes/Authentication/AbstractUserAuthentication.php 
on line 903


I have no idea where to search for a solution.


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


[TYPO3-english] SimpleXLSX in Viewhelper

2018-05-13 Thread jeppe
Hi,

 

I need to include simplexlsx.class.php in a ViewHelper, but I can't figure
out how to include it.

 

Any ideas?

 

 

 

Jeppe DOnslund

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


[TYPO3-english] Upgrade BSDIST from 1.3.3 to 2.0.2

2018-01-25 Thread Jeppe Donslund

Is there anything that needs to be done when upgrading BSDIST from 1.3.3 to 
2.0.2?
The is no text editor in the backend after upgrading.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] t3s_headerslider blank after upgrade

2017-04-03 Thread Jeppe Donslund

After upgrade to newest version of t3s_headerslider, it doesn't show anything.

I include it as shown in the documentation:

page = PAGE
page {
..
10 = FLUIDTEMPLATE
10 {
..
variables {
headerslider < lib.t3sheaderslider
..
}
..
}}

and in the fluid template  {headerslider}

It worked before upgrade, but not now.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Calling through scheduler_http

2017-03-24 Thread Jeppe Donslund

No one that can help?


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


[TYPO3-english] Calling through scheduler_http

2017-03-05 Thread Jeppe Donslund

Calling the Scheduler using Scheduler_http works fine, when it is done manually 
in a browser.

But when I try to do it through another PHP script, it doesn't return anything 
and the Scheduler is not activated.

http://mydomain.dk/index.php?eID=scheduler_http works fine in a browser but not 
if I call it with cURL og file_get_contents
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Header alignment

2017-02-01 Thread Jeppe Donslund

Earlier I had the oppotunity to aelect the alignment of the header.
But in TYPO3 7.6.15 and fluid_styled_content the dropbown box is missing.

How can I get it back?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Scheduler is not allowed to execute script

2017-01-16 Thread Jeppe Donslund

Hi

It is a shared host so no SSH access.

My files are located in /var/www/

I have asked my host how to change te user rights.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Scheduler is not allowed to execute script

2017-01-15 Thread Jeppe Donslund
I really need som help on this one. 


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


[TYPO3-english] Scheduler is not allowed to execute script

2017-01-02 Thread Jeppe Donslund

Hi

I try to use the scheduler to import external data.

But when I use the Check Setup, the last box is read and the error  message is:

The script to execute the Scheduler from the command line is: 
"/var/www/www.MyDomain.dk/www/typo3/cli_dispatch.phpsh scheduler".
The webserver user is not allowed to execute this script.

My host tells me, that I should try to make an PHP file with this:

exec("_cli_scheduler /usr/local/bin/php 
/home/www.MyDomain.dk/www/typo3/cli_dispatch.phpsh scheduler -i 2");

But that is a different path. Should I change something in TYPO3?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] External Data Import and Automatic syncronization

2016-12-22 Thread Jeppe Donslund

Does anyone succeeded making External Import update data automatically.

I did make the cli- user and I have set up the schduler taks, but nothing 
happens.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] External Data Import and Automatic syncronization

2016-12-07 Thread Jeppe Donslund

I use External Data Import to import data from another system.
But the automatic setup doesn't work.
I have set up the script to run every 900 seconds / 15 minutes and I have made 
a user withe the username _cli_scheduler and if I login as that user, I am able 
to run the syncronization script, so the user rights should be right.

Syncronizing manually works perfect, but not automatically.

What can I have missed?

Is there an URL I can give to my hosting company and then let them do a 
Cron-job every 15 minutes?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Alternative to pbsurvey

2016-10-12 Thread Jeppe Donslund

What about Survey Monkey. I now it is outside TYPO3 then, but it could do the 
job.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Mandatory fields in PowerMail

2016-10-12 Thread Jeppe Donslund

I have a Powermail form with 5 pages.
Is it possible to check for mandatory fields in Powermail before change of page?


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


[TYPO3-english] Sum up in for/each-loop

2016-10-11 Thread Jeppe Donslund

In a for/each-loop in fluid I am calculating difference between to timestamps.
I would like to add these differences through the loop.
How is that possible?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Re: Error in shoAction()

2016-10-02 Thread Jeppe Donslund

This?

/**
* action show
*
* @param \Originalen\OrigCarinfo\Domain\Model\Car $car
* @return void
*/
   public function showAction(\Originalen\OrigCarinfo\Domain\Model\Car $car = 
NULL)
   {
   //print $car;
   $this->view->assign('car', $car);
   }
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Error in shoAction()

2016-09-29 Thread Jeppe Donslund

This is what is in the url

_origcarinfo_carinfo[car]=1_origcarinfo_carinfo[action]=show_origcarinfo_carinfo[controller]=Car=5053243dc4845b9e9d27ec5ba05f393b

So I don't get why it is empty.


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


[TYPO3-english] Error in shoAction()

2016-09-28 Thread Jeppe Donslund

I get this error when going from List view til single view in my own extension

Argument 1 passed to Namespace\Path\Controller\CarController::showAction() must be an instance of Namespace\Path\Domain\Model\Car, none given 



I have no idea what it means. Where should I start to debug?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: External Import and JSON

2016-09-23 Thread Jeppe Donslund

But if I just could get the value, then I'm glad.
But the value isn't inserted in the database.

I have en ordinary textarea and I just wan't the comma seperated list of file 
names.

'pictures' => array(
'exclude' => 1,
'label' => 
'LLL:EXT:orig_carinfo/Resources/Private/Language/locallang_db.xlf:tx_origcarinfo_domain_model_car.pictures',
'config' => array(
'type' => 'text',
'cols' => '40',
'rows' => '15',
'wrap' => 'off',
),
   'external' => array(
0 => array(
'field' => 'Pictures'
   )
)
),
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: External Import and JSON

2016-09-23 Thread Jeppe Donslund

What if a node has child nodes?
I do not get the values from "Pictures" into the database.

"Pictures": [
   "http://images.dk/images/4478.jpg;,
   "http://images.dk/images/4478_1.jpg;,
   "http://images.dk/images/4478_2.jpg;,
   "http://images.dk/images/4478_3.jpg;,
   "http://images.dk/images/4478_4.jpg;
 ],
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: External Import and JSON

2016-09-23 Thread Jeppe Donslund

I found the solution. The "External primary key" is not from the external 
source, it is the field name in the TYPO3 database.

So for now, thank you very much.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: External Import and JSON

2016-09-23 Thread Jeppe Donslund

Hi François

Yes, I did manage to import from my test file. I changed it back to JSON, 
because that is what I get directly from my test file.

But now, when I try to reimport to get data into new files, it won't update the 
records that is already there. I think I am missing something like a uniq id or 
something.
My test file has a number that is uniq for every record. It is a 10 digit 
number.
When I import the file TYPO3 still uses the uid.

Does it make any sense?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] Re: External Import and JSON

2016-09-21 Thread Jeppe Donslund

Hi

This from the TCA (domain is changed :-) ).
If I test yhe url in the csv connector it works fine.

'external' => array(
0 => array(
'connector' => 'csv',
'parameters' => array(
'filename' => 
'http://www.domain.dk/typo3conf/ext/orig_carinfo/syncronizecars.php',
'encoding' => 'utf-8'
),
'data' => 'array',
'referenceUid' => 'ID',
'priority' => 10,
'description' => 'Import of all company 
cars'
)
)
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: External Import and JSON

2016-09-20 Thread Jeppe Donslund

The connector test in the JSON connector is succesfull.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] External Import and JSON

2016-09-20 Thread Jeppe Donslund

I want to use the extension externalimport to import external data into my 
TYPO3.
I insert the path to an php file in the TCA as desrbed in the documentation. 
Taht php file returns valid JSON.
But I get this error: Data could not be fetched (connector error: No JSON data 
has been defined.)

Should the link end on ".json" or is it something else that is wrong?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Updating scss files

2016-09-20 Thread Jeppe Donslund

Thanks Mark

But why can I see the scss in the Chrome DevTools? 
I have tried to rename the scss file, but that doesn't change anything. I have clear the cahce in the Install tool

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


[TYPO3-english] Updating scss files

2016-09-20 Thread Jeppe Donslund

I am new to scss files, so please be gentle if this is a studip question.

I the bsdist distribution there is some scss files. I need to change them, but 
if I do that, nothing happens. I det devtools in Chrome, I can see that the 
values are the same as the originalen file, but if I click the filename, I can 
see my changes.

Should I do anything to the scss files to make the changes happen?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Import data to database from json file

2016-09-15 Thread Jeppe Donslund

Is it possible to import data from a JSON file with the extension "External Data 
Import"?
As I see it, it is only txt or csv file.


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


[TYPO3-english] Re: Re: Re: Romanian letters are replaced with ?

2016-03-08 Thread Jeppe Donslund

Hi

The collation was Latin_swedish_ci.
I changed it to utf8_generel_ci and now it works.

Thanks you so much for leading me ind the right direction.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Re: Romanian letters are replaced with ?

2016-03-07 Thread Jeppe Donslund

I get this error in TYPO3


1: These fields of record 266 in table "tt_content" have not been saved 
correctly: bodytext! The values might have changed due to type casting of the database.


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


[TYPO3-english] Re: Romanian letters are replaced with ?

2016-03-07 Thread Jeppe Donslund

After pressing Save in TYPO3 the letters are wrong in TYPO3 Backend and also in 
Frontend and in MySQL.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Romanian letters are replaced with ?

2016-03-07 Thread Jeppe Donslund

When inserting Romanian text in TYPO3 the special Romanian letters are 
converted to ?
Is it my MySQL settings that are wrong?

I have no problems with Danish letters as æ ø å.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] sr_feuser_register and Danish language

2016-01-28 Thread Jeppe Donslund

Hi,

I have just upgraded my sr_feuser_register to newest version.
But now It is no longer in Danish at FrontEnd.

In my TypoScript I have this:
config.language = da
config.language_alt = dk
config.locale_all = da_DK

Can I download the Danish language for sr_feuser_register somewhere.
If I use the language feature in TYPO3 is tells me that the extension is 
up-to-date.

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


[TYPO3-english] Re: tx_news and roq_newsevent

2016-01-22 Thread Jeppe Donslund

Thanks. It works. Your patch had a change to a file in the Hooks-folder. But I 
doesn't have a Hooks folder. It works anyway.

I wanna extend roq_newsevent with som new fields, but I can't find the TCA for 
it.
Event.php in the TCA-folder is almost empty. Do you know where it is hiding?



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


[TYPO3-english] tx_news and roq_newsevent

2016-01-21 Thread Jeppe Donslund

I am trying to migrate from tt_news and mbl_newsevent to tx_news and 
roq_newsevent.
Det migration went fine, but when I try to insert the Event Detail View, I get 
this message in frontend.

An action "eventDetailAction" does not exist in controller 
"GeorgRinger\News\Controller\NewsController".

I have included the static template for both tx_news and roq_newsevent.

Can I debug in any way?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Powermail embedded on other pages fail

2016-01-18 Thread Jeppe Donslund

Hi

I have a Powermail-form on my front page. Then I insert it on every other page 
with TypoScript. But these forms doesn't work. When hitting Submit the pages 
empties the fields and noting else happens.
Did I miss somethng or could it be a bug?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Access denied when trying to upgra from 6.2 to 7.6

2016-01-12 Thread Jeppe Donslund

After uploading files from TYPO3 7.6.2 I go to site.tld/typo3/install.
I have no problem logging in, but if I click on Upgrade Wizard, I get an almost blank 
page with the text "Access denied"

Is it a bug or what?

I have checked file permissions, they should be okay.

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


[TYPO3-english] Bootstrap_grids and accordion

2016-01-05 Thread Jeppe Donslund

Hi

I need to interact with the accordion element in Bootstrap_grids through jQuery.
The accordion is working fine, but if I try to find the active element with this:  var active = 
$('#accordion-50').accordion( "option", "active" ); I get the error saying that 
$(...).accordion is not a function

Doesn't bootstrap_grids use the bootstrap accordion function?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Cannot insert image files with capital letters JPG

2015-08-10 Thread Jeppe Donslund

I can upload files with the extension JPG and jpg to the filelist, but only 
files with extension jpg can be inserted in content elements.

Is that a bug or where did I miss to check something?

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


[TYPO3-english] No backend Layouts to choose from

2015-05-22 Thread Jeppe Donslund

I have an old TYPO3 installation which is updated to 6.2.
I have installed BSDIST, but I get no Backend layouts to choose from. 


I guess it is because my root page is not UID=1, but cannot find where to 
change it.

Or is it not that that is the problem?


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


[TYPO3-english] sg_layerslider and image paths

2015-05-12 Thread Jeppe Donslund

When using sg_layerslider on subpages the image paths are relative to the site 
url

server.dk/produkter-og-ydelser/sproejtestoebning/2k-og-3k/uploads/tx_sglayerslider/slider1_01.jpg

Image path is starting from uploads/...

How can I solve that. The images are not found when the image path is wrong.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Error after installing FluidContent

2015-05-12 Thread Jeppe Donslund

After installing Fluid_Contentelements, VHS and FluidContent I get this error:

Could not analyse class:Tx_Vhs_ViewHelpers_Extension_Path_ResourcesViewHelper 
maybe not loaded or no autoloader?

It is TYPO3 7.1 and maybe that could be the problem. The extensions are only 
testet on 6.99.

Does anyone know if that is the problem? 
___

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


[TYPO3-english] Re: Edit file after upload in TYPO3 backend

2015-03-19 Thread Jeppe Donslund

I have the PHP classes to edit the Excel-files. It is the TYPO3 upload part I 
can't figure out how to do.
I have a soultion where I upload the files and then parse the Xlsx before 
showing the data in frontend. But it is to slow. I need to convert it to csv 
wich I think is faster.

If it is too difficult inside TYPO3. I will make an upload script in an 
external folder on the server.

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


[TYPO3-english] Edit file after upload in TYPO3 backend

2015-03-18 Thread Jeppe Donslund

I need some suggestions on how to do the following

I need to make it possible for a backend user to upload an Excel file. Before 
the file is saved on the server I need to do several things to that file.

How would you do that?

Should I go for a back end module or what? 
___

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


[TYPO3-english] Re: Edit file after upload in TYPO3 backend

2015-03-18 Thread Jeppe Donslund

I need to split it up so that every sheet in the file is converted to csv-files 
that is saved on the server.
I know all this can be done before uploading the Excel-file, but it is much 
easier for the user if it is done when uploading the Excel file to TYPO3.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: TYPO3 6.2, host with safe_mode, ImageMagick troubles

2015-02-12 Thread Jeppe Donslund

Neither the .htacces or the php.ini works.

But why can't ImageMagick work with safe_mode on inside TYPO3 when it can 
outside TYPO3?


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


[TYPO3-english] Re: Words missing after update

2015-01-31 Thread Jeppe Donslund

Hi Markus

That work for det missing words in the menu. But the page titles in the page 
tree containing æ ø å is still missing. I now can select edit. The page title 
field is empty, and if I write the page title again with æ ø å, the field is 
still empty after I hit Save.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] Re: Words missing after update

2015-01-31 Thread Jeppe Donslund


   Server: Localhost via UNIX socket
   Servertype: MySQL
   Serverversion: 5.6.21 - MySQL Community Server (GPL)
   Protokolversion: 10
   Bruger: billundidra_dk@localhost
   Servers tegnsæt: UTF-8 Unicode (utf8)


What else do you need to know?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] Words missing after update

2015-01-30 Thread Jeppe Donslund

Hi

I just update a TYPO3 installation from 4.5.11 to 4.5.39.
But know a lot of words are missing in the backend.

In the pagetree titles with danish letters are missing.
If I wanne edit a page and click the icon nest to the page title, the options 
number 3 (Edit) and number 5 is missing the words.

I have compared the database
I have deleted temp-files

What else should I do?

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


[TYPO3-english] Will TYPO3 4.5.39 work on PHP 5.6?

2015-01-28 Thread Jeppe Donslund

The title is the question.

Will TYPO3 4.5.39 work on PHP 5.6?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Problems with multidomain site

2014-12-23 Thread Jeppe Donslund

I have a site with a domain for Danish and another domain for English.

In my RealUrl config I have this:

'_DOMAINS' = array(
'encode' = array(
array(
'GETvar' = 'L',
'value' = '',
'ifDifferentToCurrent' = TRUE,
'useConfiguration' = '_DEFAULT',
'urlPrepend' = 'http://www.restrategy.dk',
),
array(
'GETvar' = 'L',
'value' = '0',
'ifDifferentToCurrent' = TRUE,
'useConfiguration' = '_DEFAULT',
'urlPrepend' = 'http://www.restrategy.dk',
),
array(
'GETvar' = 'L',
'value' = '1',
'ifDifferentToCurrent' = TRUE,
'useConfiguration' = '_DEFAULT',
'urlPrepend' = 'http://www.restrategy.today',
),
),
'decode' = array(
'www.restrategy.dk' = array(
'GETvars' = array(
'L' = '0',
),
'useConfiguration' = '_DEFAULT',
),
'www.restrategy.today' = array(
'GETvars' = array(
'L' = '1',
),
'useConfiguration' = '_DEFAULT',
),
),
),

But when L=1 it doesn't put the .today domain in front of urls in the 
navigation.

I also try this in Constants:

BASEURL = http://www.restrategy.dk/
[globalString = ENV:HTTP_HOST=www.restrategy.today]
BASEURL = http://www.restrategy.today/
[global]

And the this in Setup:

config.baseURL = {$BASEURL}

with no luck eirther.

I use the Bootstrap Package, so maybe it is overruled somewhere.

Can someone point me in the right direction?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Problems with multidomain site

2014-12-23 Thread Jeppe Donslund

If I check TypoScript Object Browser, baseURL and absRefPrefix is set right.

the base meta tag is set right

But links is always prepended with restrategy.dk.

I did not check the box Always prepend this domain in links when setting up 
domains at root level.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Images in MultiShop

2014-10-20 Thread Jeppe Donslund

Hi

I have installed TYPO3Multishop and almost verything works fine, but I can't get 
it to show the scaled images. I have clicked the Resize-images in 
Web-Multishop, cleared cache, but it keeps showing the large images.

If I check the folders (50,100,200,300) all images has the same size, so the 
resize function doesn't resize them.

What can I have done wrong? 


Same question is asked her: 
https://www.typo3multishop.com/forum/list_post/show-is-not-showing-scaled-images-731/
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Images are missing in TYPO3 6.2

2014-08-01 Thread Jeppe Donslund

Alle my responsive images are missing.

I get this error:

TypeError: $(...).responsiveimages is not a function
..n-envelope/span')}),$(function(){if($(img.lazyload).responsiveimages({},fu...

and it is the only error in FireBug.

I use t3jquery for some other things. Could it conflict?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Error with TYPO3 6.2 and FTM 1.1.1

2014-03-27 Thread Jeppe Donslund

Hi

I have installed TYPO3 6.2 and FTM, but when clicking the Fluid Template 
Manager and the my root page, I get this error.

Fatal error: Call to undefined method 
TYPO3\CMS\Extbase\Persistence\Generic\Typo3QuerySettings::setRespectEnableFields()
 in 
/var/www/donslund.net/marked/typo3conf/ext/ftm/Classes/Domain/Repository/PagesRepository.php
 on line 74


I do not know where to look for a solution.

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


[TYPO3-english] Re: Getting data from sys_category in Fluid

2013-10-11 Thread Jeppe Donslund

Hi Søren

I don't think the two subjects has anything with each other to do, but maybe 
I'am wrong.

I have answered the other thread and closed it.


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

[TYPO3-english] Re: Getting data from sys_category in Fluid

2013-10-09 Thread Jeppe Donslund

Hi

Is my question stupid or is the solution obvious since no one has answered my 
question.

Or is the use of sys_category not the best way of categorizing your elements?


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


[TYPO3-english] Getting data from sys_category in Fluid

2013-10-02 Thread Jeppe Donslund

Hi

How do I get the values from sys_category in Fluid?

element.category.title doesn't seem to work.

I have tried to debug my elements but I can't find a way to get the category 
title.



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


[TYPO3-english] Re: Compare strings in fluid

2013-10-01 Thread Jeppe Donslund

After some time with google I think that groupedFor could solve my problem, but 
the field that I want to groud by is a category field and it doesn't seem to 
work. I have read that groupedFor doesn't work with objects. Is that my problem?

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


[TYPO3-english] Re: Compare strings in fluid

2013-09-30 Thread Jeppe Donslund

Hi Alexander

Yes, it is possible to compare strings, but can't figure it out if it it is 
possible to compare between elements.

if I run through my elements setting iteration=d I get the valye d.cycle.

What I would like to compare is if(d.cycle.string != d.cycle-1.string)

Is that possible? And does it make sense?


Kind regards
Jeppe


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


[TYPO3-english] Compare strings in fluid

2013-09-26 Thread Jeppe Donslund

Hi

I would like to run through my elements in List.html
If a string changes somthing should happen.

for each
   if( newstring != oldstring)
do something
   end id
end for

is that possible?



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


[TYPO3-english] How to get the L variable in Fluid

2013-08-28 Thread Jeppe Donslund

Hi

How do I get the L variable in fluid so that I know what language is chosen?

In public function showAction( in the DesignController.php where I have 
$this-view-assign('design', $design);


I try this: $this-view-assign(L, $GLOBALS['TSFE']-sys_language_uid);
And in Properties.html: f:debug title=Sprog-L{L}/f:debug

But it doesn't work.

Is it the wrong places to write it or it is the wrong piece of code?

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


[TYPO3-english] Get data related to what showAction() finds

2013-08-14 Thread Jeppe Donslund

Hi

I am trying to write my own extension and everything goes fine until I 
need to get more out of the database than the show action gets.


My showAction() gets data from one table, but I need to get related data 
out of another table.


How do I get the relations between the two tables?


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


[TYPO3-english] Crop subheader in newscalendar

2013-06-27 Thread Jeppe Donslund

Hi

I have inherited a TYPO3 website and trying to find my way through it.

Newscalndar is installed and there is at tip popup on certain days. It 
shows the news title and the subheader.


I would like to crop this subheader, but I can't get the right syntax.
My best shot is this

plugin.tx_newscalendar_pi1.tip.subheader_stdWrap.crop = 100| ...

But it is not right.

What should I write to get it to work.


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


[TYPO3-english] Perfectlightbox doesn't put the right text in links title

2013-06-14 Thread Jeppe Donslund

Hi

When using Perfectlightbox with tt_news it doesn't put the right text in 
the link title.
It puts the first line from the title field in every link. It doesn't 
split it up.


Does anyone know how to fix that?


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


[TYPO3-english] Different Title-text for each image in tt_news

2013-06-10 Thread Jeppe Donslund

Hi

How can I split up the ImageCaption field so that I get a different 
title text for each image in tt_news single view?


I thought than if I wrote one line for each image it would work out of 
the box as it does other places in TYPO3, but i doesn't.


Can anybody help me?


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


[TYPO3-english] Error after upgrading to 6.1

2013-05-01 Thread Jeppe Donslund

Hi

After upgrading form 6.0.4 to 6.1 I get this error:


Fatal error: Call to a member function getContentObject() on a 
non-object in 
/var/www/www.domain.com/typo3/sysext/extbase/Classes/Configuration/ConfigurationManager.php 
on line 101


And when I try to edit a page I get an error telling me that username 
and password for the database is not valid


I cannot open Extension Manager either.


Any advice?


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


[TYPO3-english] Error: spl_autoloader

2013-03-27 Thread Jeppe Donslund

Hi

I get an awful lot of errors concerning spl_autoloader

Unable to access tx_flux_service_content.php
Unable to access tx_flux_provider_configurationservice.php
Unable to access tx_flux_provider_configurationservice.inc
Unable to access tx_extbase_reflection_service.php

and many others.

TYPO3 is version 6.0.4 and every extension is up to date.

What can I do?

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


[TYPO3-english] mail2ttnews and external cron service

2013-02-05 Thread Jeppe Donslund

Hi

My web host doesn't provide cron jobs. But there are a lot of external 
services providing cron jobs.


But what address should I use for importing emails to tt_news?

I have installed and configured mail2ttnews, but in the documentation it 
says that I should use this:


10 * * * * /path/typo3/cli_dispatch.phpsh getmail_cli  
/path/fileadmin/cron.log 21


That won't work. Isn't there a normal url I can use for the cron jobs?

I know that  should be replaced with the website address.


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


[TYPO3-english] textarea as extra field in sr_feuser_register won't show up

2013-01-18 Thread Jeppe Donslund
I am adding extra fileds to sr_feuser_register nd with regular INOPUT 
fields there are no problems, but TEXTAREAs won't show up.


This I have inserted in my html

!-- ###SUB_INCLUDED_FIELD_tx_origfeuserlist_description### --
dt
label for=tx-srfeuserregister-pi1-tx_origfeuserlist_description
###LABEL_TX_ORIGFEUSERLIST_DESCRIPTION###
/label
span class=tx-srfeuserregister-pi1-required
###REQUIRED_TX_ORIGFEUSERLIST_DESCRIPTION###
/span
/dt
dd
!-- ###SUB_ERROR_FIELD_tx_origfeuserlist_description### --
p class=tx-srfeuserregister-pi1-error
###EVAL_ERROR_FIELD_tx_origfeuserlist_description###
/p
!-- ###SUB_ERROR_FIELD_tx_origfeuserlist_description### --
!-- ###SUB_REQUIRED_FIELD_tx_origfeuserlist_description### --
p class=tx-srfeuserregister-pi1-error
###MISSING_TX_ORIGFEUSERLIST_DESCRIPTION###
/p
!-- ###SUB_REQUIRED_FIELD_tx_origfeuserlist_description### --
###TCA_INPUT_tx_origfeuserlist_description###
/dd
!-- ###SUB_INCLUDED_FIELD_tx_origfeuserlist_description### →

and this is what is rendered to frontend

dt
label for=tx-srfeuserregister-pi1-tx_origfeuserlist_description
/label
span class=tx-srfeuserregister-pi1-required/span
/dt
dd



/dd

The fields are created as in a small extension using the Kickstarter and 
as I told, there are no problems with the INPUT fields



What could be wrong?

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

[TYPO3-english] Start time of day in week view

2012-12-19 Thread Jeppe Donslund

Hi

I use Extended Calendar
In week view the calendar shows the whole day from 00 am to 12 pm. Is it 
possible to let the view start at 7 am?


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


[TYPO3-english] Fluid templating creates extra p-tags

2012-11-25 Thread Jeppe Donslund

Hi

I am working on my first website using Fluid templating.

In frontend i looks like it creates som ekstre p-tags. Where do they 
come from, do you think?


div id=content_main
p class=bodytextnbsp;/p---  EXTRA
p class=bodytext	!--  CONTENT ELEMENT, uid:4/text 
[begin]--/p---  EXTRA

p class=bodytextnbsp;/p  ---  EXTRA
div id=c4 class=csc-defaultp class=bodytextnbsp;/p   --- 
EXTRA

p class=bodytext!--  Header: [begin] --/p   ---  EXTRA
p class=bodytextnbsp;/pdiv class=csc-header csc-header-n1h1 
class=csc-firstHeader ---  Here starts my content.



Why all these extra p-tags?

I have used this tutorial: 
http://thomas.deuling.org/2011/06/create-a-complete-typo3-website-by-using-the-fluid-template-engine/



Kind regards

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


[TYPO3-english] make links secure in content_stdWrap

2012-09-24 Thread Jeppe Donslund

In tt_news I use this

plugin.tt_news.displaySingle.content_stdWrap.wrap =  |br /Ring 2399 
1550 eller skriv til linki...@mydomain.dk/link


to add tekst in the bottom of every tt_news element.

How can I make TYPO3 read the emailaddress and write info(at)mydomain.com?

I found this

plugin.tt_news.displaySingle.content_stdWrap.parseFunc.makelinks.mailto.keep 
= 1


But that is not the right way.


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


Re: [TYPO3-english] Admin cannot create Content Elements

2012-08-21 Thread Jeppe Donslund

Hi Rutger

I thank you so much. Why couldn't I find that solution anywhere? I can't 
be the first one having that problem.


Thank you again.

Jeppe D.



Den 20/08/12 16.45, Rutger Mik | Zeeman Reclamegroep skrev:

ALTER TABLE pages ADD t3ver_swapmode tinyint(4) NOT NULL default '0'



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


Re: [TYPO3-english] Admin cannot create Content Elements

2012-08-21 Thread Jeppe Donslund

Adding year to the search is a nice trick, thanks.

Jeppe

Den 21/08/12 08.32, Andreas Becker skrev:

Sorry, you didn't have proper permissions to perform
this change. 2012



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


[TYPO3-english] Admin cannot create Content Elements

2012-08-20 Thread Jeppe Donslund

Hi

When trying to insert regular content elements I get this error: Sorry, 
you didn't have proper permissions to perform this change.


The log says: Attempt to insert record on page '[root-level]' (0) where 
this table, tt_content, is not allowed (msg#1.1.11)


TYPO3 version 4.7.2, we have same problem in 4.7.4.
TemplaVoila version 1.7.0


What can be the problem?


Kind regards
Jeppe Donslund

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


[TYPO3-english] Two menu elements with seperate domains

2012-07-05 Thread Jeppe Donslund

Hi

I have a lib.mainMenu and a lib.subMenu. I wold the first one to use 
www.domain1.com and the other www.domain2.com


Is that posible.

A small part of my website has its own domain, and lib.subMenu is the 
subpages to that part, but the mainMenu should keep the domain from the 
main site.


Any ideas?

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


Re: [TYPO3-english] Images gets very dark

2012-05-25 Thread Jeppe Donslund
GraphicsMagick is not an option, unfortunately. The host is considering 
it ...


I have googlet TYPO3 and strip_profile but with no luck.
I have tried to put $TYPO3_CONF_VARS['GFX']['im_stripProfileCommand'] = 
''; into localconf, but with no luck.


Anything else to try?

Regards
Jeppe D.


Den 22/05/12 14.54, Tony Lush skrev:

If this is a recent change, your provider has upgraded ImageMagick. IM
has changed some behaviors. You might check to see if an older version
is available, or, better yet, see if you can use GraphicsMagick.

Best regards -- Tony

On 5/22/2012 8:24 AM, Jeppe Donslund wrote:

Hi

When I let TYPO3/ImageMagick resize my pictures, they get very dark.
I use the standard TYPO3 configuration of ImageMagick.

What ould be wrong? Should I speak to my hosting company to check their
IM-configuration?


Kind regards
Jeppe Donslund




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


Re: [TYPO3-english] Images gets very dark

2012-05-25 Thread Jeppe Donslund

Hi Björn.

In Photoshop I use Save for web and the Convert to sRGB is set, so I do 
not think it is adobeRGB.


Regards
Jeppe D.


Den 22/05/12 14.35, Björn Pedersen skrev:

On 22.05.2012 14:24, Jeppe Donslund wrote:

Hi

When I let TYPO3/ImageMagick resize my pictures, they get very dark.
I use the standard TYPO3 configuration of ImageMagick.

What ould be wrong? Should I speak to my hosting company to check their
IM-configuration?


Kind regards
Jeppe Donslund

Hi,

This sounds like a colour management problem ( your source images are in
AdobeRGB, right?) . Google for strip-Profile and TYPO3, that should give
a solution.

Björn




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

[TYPO3-english] Images gets very dark

2012-05-22 Thread Jeppe Donslund

Hi

When I let TYPO3/ImageMagick resize my pictures, they get very dark.
I use the standard TYPO3 configuration of ImageMagick.

What ould be wrong? Should I speak to my hosting company to check their 
IM-configuration?



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


[TYPO3-english] Blank video in html5videoplayer

2012-05-14 Thread Jeppe Donslund

Hi

When using html5videoplayer the videoarea is empty. It only shows a 
black screen, but the time bar moves and the counter shows that the 
video is 1:41 minutes long.


I use a mp4 file.

Could it be the codec or why won't the player work?

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


[TYPO3-english] Exclude from speaking URL won't work.

2012-04-17 Thread Jeppe Donslund

Hi

I use RealURL, but when I try to set Exclude from speaking URL on a page 
i won't work.

The page title is still a part of the url.

I have tried to clear the RealURL path cache, but it seems to be empty.

If I go to Web - Info - RealURL Management, everything seems empty.

tx_realurl_pathcache in the database is also empty.

What should I do to make it work?


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


Re: [TYPO3-english] Exclude from speaking URL won't work.

2012-04-17 Thread Jeppe Donslund

That makes sence.

http://www.domain.com/web2012/news/single-news/archive/a-story.html

This is what I get out of tt_news.

single-news is the page title. I would like to hide as much as posible.

I would like to do something likes this: 
http://www.domain.com/web2012/news/a-story.html


Jeppe

Den 17/04/12 11.42, Jigal van Hemert skrev:

Hi,

On 17-4-2012 11:28, Jeppe Donslund wrote:

I use RealURL, but when I try to set Exclude from speaking URL on a page
i won't work.
The page title is still a part of the url.


You cannot exclude the last part of the page path in a speaking URL.
Otherwise it would have the same URL as the parent and then it would not
be unique any more.

this
*- is -- exclude from speaking URL
*- it

would result in:
/this
/this/is
/this/it



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


  1   2   >