[TYPO3-english] Re: Install using Oracle

2015-01-28 Thread Hans Wolf

Hi Olivier,

I found someone on the german Forum who's trying to help me.

If we manage to solve it, I'll add the solution here for others.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] How to render error messages for controller arguments?

2015-01-28 Thread Ivan Godorogea

Hi group,

I write an extension for a site based on TYPO3 v4.5.
When an error occurs on validating controller arguments, the previous 
action is called and in browser I get only this message:


An error occurred while trying to call 
Tx_Xx_Controller_MainController->searchAction()



No message specific to error that occurred...

In TYPO3 v 6.2 that work without any effort from myself. How can I make 
it work for v.4.5 too?


Here are Controller snippet:
  /**
 * @param string $shareholderId shareholderId
 * @param string $firstName Shareholder first name
 * @param string $lastName Shareholder last name
 * @validate $shareholderId NotEmpty, StringLength(minimum=12, 
maximum=13)

 * @validate $firstName NotEmpty
 * @validate $lastName NotEmpty
 * @return void
 */
public function searchAction($shareholderId = '', $firstName = '', 
$lastName = '') {



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


Re: [TYPO3-english] Install using Oracle

2015-01-28 Thread Jigal van Hemert

Hi,

On 27/01/2015 08:46, Hans Wolf wrote:

are the new versions still supporting an Oracle database (11g)? The
install guide in the wiki (wiki.typo3.org/Oracle) can not be used for 7
or 6.2.9.


DBAL (which supports Oracle) should still work in 6.2/7. There are not 
many people who actually use anything else but MySQL (or the drop-in 
replacement MariaDB), so there can easily be bugs which haven't been 
reported yet.



I'm also having problems installing 4.5.39 with Oracle. I get a Database
Error for tslib, although the connection  works and some typo3 tables
were created.


What is the actual error that is produced? If it's only the "Oops, an 
error occurred" type of error message you could activate more verbose 
error messages by setting the display errors options in the Install Tool.
These issues for 4.5 will most likely not be fixed anymore because 4.5 
has only a few months of support left.


--
Jigal van Hemert
TYPO3 CMS Active Contributor

TYPO3  inspiring people to share!
Get involved: typo3.org
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] upload of files fail

2015-01-28 Thread Jigal van Hemert

Hi,

On 27/01/2015 12:25, Peder Høy Kristensen wrote:

When I try to upload a file, I now get the error-message: "Unable to
determine path to entry script."

Which setting is causing this error?


TYPO3 tries to find the path on the server to the current installation 
(to calculate absolute and relative paths). It supports several server 
variables to find this path and in the end checks if the result is an 
actual file (the script you're calling must of course be a file).


If no correct path can be determined or if the webserver user does not 
have the rights to check if the current script is an actual file, the 
error you encountered is produced.


So, check if the webserver user has the rights to read the TYPO3 files 
and if at least one the server variables ORIG_PATH_TRANSLATED, 
PATH_TRANSLATED, ORIG_SCRIPT_FILENAME, SCRIPT_FILENAME is set with the 
correct value.
This is an issue with the server environment/settings, not something 
inside TYPO3.


--
Jigal van Hemert
TYPO3 CMS Active Contributor

TYPO3  inspiring people to share!
Get involved: typo3.org
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] Re: upload of files fail

2015-01-28 Thread Peder Høy Kristensen

Hi,
I found the error. safe_mode setting was wrong. Now everything works just fine.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Strange L-parameter

2015-01-28 Thread Tomas Havner

Hi,

From time to time my pages gets a very long L-parameter in the web 
browser. Eg: http://www.lth.se/mypage/mypage/mypage/?L=0%252252


Any thoughts?

Regards

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


Re: [TYPO3-english] Strange L-parameter

2015-01-28 Thread Christian Weiske
Hello Tomas,


> From time to time my pages gets a very long L-parameter in the web 
> browser. Eg: http://www.lth.se/mypage/mypage/mypage/?L=0%252252

This looks like double-encoding or triple-encoding of the L parameter.

- %25 is an URL-encoded % -> %2252
- %22 is an URL-encoded "

I would guess that your typoscript has a bug somewhere.

-- 
Regards/Mit freundlichen Grüßen
Christian Weiske

-= Geeking around in the name of science since 1982 =-

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

[TYPO3-english] I don't see the menu

2015-01-28 Thread Gema García

Hello, to create a new menu item on the web, I created a shortcut on page. And 
I do not see that believes on the web and not seen.

We must do more?

Thanks and best regards,

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

[TYPO3-english] Special treatment for a jfmulticontent plugin

2015-01-28 Thread Graham Knight

Hi,

I am using the jfmulticontent extension (V2.9.9) to display multiple pages in 
an accordion. For this particular accordion I want to pick up just the first 
content element of each page. I know the Typoscript line to give this behaviour:

plugin.tx_jfmulticontent_pi1.views.page.content.select.max = 1

What I can't figure is how to arrange that this behaviour applies only to 
selected accordion plugins. There don't seem to be any spare fields I can 
hijack to mark an accordion for special treatment. Has anyone any ideas?

Many thanks.

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


Re: [TYPO3-english] Strange L-parameter

2015-01-28 Thread Jan Bednarik

Hi,

just change your ts to

config.linkVars = L(0-9)

Jan

Dne 28. 1. 2015 v 13:37 Tomas Havner napsal(a):

Hi,

 From time to time my pages gets a very long L-parameter in the web
browser. Eg: http://www.lth.se/mypage/mypage/mypage/?L=0%252252

Any thoughts?

Regards

Tomas


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


Re: [TYPO3-english] I don't see the menu

2015-01-28 Thread Jan Bednarik

Hi,

you need to add more information. What is the Typoscript definition of 
the menu? Have you added the new page to the correct level?


Jan

Dne 28. 1. 2015 v 16:58 Gema García napsal(a):

Hello, to create a new menu item on the web, I created a shortcut on
page. And I do not see that believes on the web and not seen.

We must do more?

Thanks and best regards,

   Gema


___
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