[TYPO3-english] xclass TestSetup class

2016-03-27 Thread Tomasz Krawczyk
Hi list, I make changes to Imagickimg extension (graphics processing where exec() is disabled). I'm trying to xclass TestSetup $GLOBALS['TYPO3_CONF_VARS']['SYS']['Objects']['TYPO3\\CMS\\Core\\Imaging\\GraphicalFunctions'] = array( 'className' =>

Re: [TYPO3-english] Repository problem

2016-03-19 Thread Tomasz Krawczyk
W dniu 2016-03-14 o 10:58, Nicole Cordes pisze: Hi Tomasz, Am 13.03.2016 um 12:49 schrieb Tomasz Krawczyk: The method "findCurrent" is not supported by the repository. This method is defined in my repository. Did I miss some changes in Extbase? Can you give some more information

[TYPO3-english] Repository problem

2016-03-13 Thread Tomasz Krawczyk
Hi! My site was upgraded from 6.2 to 7.6. My simple extension doesn't work. I see such an error: The method "findCurrent" is not supported by the repository. This method is defined in my repository. Did I miss some changes in Extbase? cheers Tomek

Re: [TYPO3-english] translation server

2015-09-27 Thread Tomasz Krawczyk
W dniu 2015-09-25 o 08:54, Xavier Perseguers pisze: Hi, locallang.1415814788.xlf locallang.1415814789.xlf Which should be translated and which will be available to download in BE? Everyone should be translated. We switched from the actual name (locallang.xlf, locallang_db.xlf, ...) to this

Re: [TYPO3-english] translation server

2015-09-22 Thread Tomasz Krawczyk
W dniu 2015-09-22 o 14:03, Xavier Perseguers pisze: Hi Tomasz, How long does it take to publish translation since all translations has been done? zip files are recreated nightly, if a change was done in a given language. It is then synchronized to the main t3o website until the end of the

[TYPO3-english] translation server

2015-09-20 Thread Tomasz Krawczyk
Hi list, As typo3.translation.general is not read I'm asking here. How long does it take to publish translation since all translations has been done? What are numbers in translated extensions? Which is taken for publication? -- regards Tomek ___

Re: [TYPO3-english] random 503 errors

2015-07-15 Thread Tomasz Krawczyk
W dniu 2015-07-12 o 17:59, Tomasz Krawczyk pisze: Hi list, My site shows lots of 503 errors. It is random behaviour. A few clicks on links and site appears correctly, and then 503 errors. I had TYPO3 version 6.2.9. I upgraded to 6.2.12 but with no full success. My ISP has InnoDB disabled

Re: [TYPO3-english] suhosin.request.max_vars and others

2015-06-25 Thread Tomasz Krawczyk
W dniu 2015-06-05 o 18:25, Tomasz Krawczyk pisze: Hi List! I'm neither a PHP nor Suhosin expert. TYPO3 Install Tool says that suhosin.request.max_vars = 0 is not enough, should be 400. But my ISP says that 0 means no limit. So, who is right? regards Tomek Hi list! Does

[TYPO3-english] suhosin.request.max_vars and others

2015-06-05 Thread Tomasz Krawczyk
Hi List! I'm neither a PHP nor Suhosin expert. TYPO3 Install Tool says that suhosin.request.max_vars = 0 is not enough, should be 400. But my ISP says that 0 means no limit. So, who is right? regards Tomek ___ TYPO3-english mailing list

[TYPO3-english] Install tool forces FirstInstall

2015-05-23 Thread Tomasz Krawczyk
Hi List! I'm trying to move site to new hosting. DB set, imported and LocalConfiguration.php updated, files copied, rights to files set but IT forces First install. What could I miss? regards Tomek ___ TYPO3-english mailing list

Re: [TYPO3-english] Install Tool Oops!

2015-05-18 Thread Tomasz Krawczyk
Mybe I could add apc_clear_cache() somewhere in the /typo3/install/ to have cache cleared on every hit in Install Tool? That do you think? regards Tomek W dniu 2015-05-17 o 13:33, Markus Klein pisze: Hi! That should be independent of the webserver, since PHP is already running your code. I

[TYPO3-english] Install Tool Oops!

2015-05-17 Thread Tomasz Krawczyk
Hello! I have such error when I go to Install Tool - Important actions Oops, an error occurred! Could not analyse class:TYPO3\CMS\Install\Service\CoreUpdateService maybe not loaded or no autoloader? I noticed this when I was updating 6.2.9 to 6.2.12. It happens on hosting with LiteSpeed

[TYPO3-english] fluid 3x f:for iterator

2015-05-06 Thread Tomasz Krawczyk
Hi! I make list of players of hockey team. I divided that list in three parts attackers, defenders and goalkeepers. I have playerss in one model. So I simply walk through players selecting player position. f:for each={players} as=player iteration=iterator0 f:if

Re: [TYPO3-english] PHP OpenSSL extension not working

2015-01-05 Thread Tomasz Krawczyk
W dniu 2015-01-03 21:00, TSniper pisze: Hello, an error message show that openssl don't run PHP OpenSSL extension not working Something went wrong while trying to create a new private key for testing. Please check the integration of the PHP OpenSSL extension and if it is installed correctly.

Re: [TYPO3-english] TS image from resources

2015-01-03 Thread Tomasz Krawczyk
W dniu 2015-01-01 o 20:51, Tomasz Krawczyk pisze: Hi! I upgraded site from TYPO3 6.1 to 6.2. Everything works except banner image from page resources. Works in default language but not for other languages. This is my TypoScript lib.pageBanner = COA lib.pageBanner { cache.key = pageBanner_

[TYPO3-english] TS image from resources

2015-01-01 Thread Tomasz Krawczyk
Hi! I upgraded site from TYPO3 6.1 to 6.2. Everything works except banner image from page resources. Works in default language but not for other languages. This is my TypoScript lib.pageBanner = COA lib.pageBanner { cache.key = pageBanner_{page:uid}_{TSFE:sys_language_uid}

Re: [TYPO3-english] showAction uid for model object

2014-11-23 Thread Tomasz Krawczyk
W dniu 2014-11-22 23:25, Jigal van Hemert pisze: Hi, You also don't retrieve records from the database, but you get objects from the repository. For your purpose you inject the repository object for the model you want to use in your controller class. Then you query the repository, get the

[TYPO3-english] showAction uid for model object

2014-11-22 Thread Tomasz Krawczyk
Hi list! I'm writing an extension which extbase. My controller will have showAction without listAction. So, I will not pass ID for my model record. I'll get it from the database but I don't know How to send this ID to model class. /** * action show * * @return void */ public function

Re: [TYPO3-english] xlf file for BE module

2014-11-07 Thread Tomasz Krawczyk
W dniu 2014-11-06 13:52, bernd wilke pisze: Am 04.11.14 20:49, schrieb Tomasz Krawczyk: Isn't really possible to tell fluid template to use specific xlf file for all labels? In case of my BE module I would have to use such instructions f:translate key=LLL:EXT:MyExtension/Resources/Private

Re: [TYPO3-english] xlf file for BE module

2014-11-04 Thread Tomasz Krawczyk
Tomek W dniu 2014-10-29 21:03, Tomasz Krawczyk pisze: Hi list, In my ext I would like to use different xlf files for BE and for FE. I thought I will achieve that selecting locallang_mod.xlf in the registerModule method (6-th parameter - labels). But this is used only for a module name. Fluid uses

Re: [TYPO3-english] Fatal error after cancelled install of extension captcha

2014-11-02 Thread Tomasz Krawczyk
Remove everything from typo3temp/Cache/ directory. cheers Tomek W dniu 2014-11-01 23:07, Hofer Christoph pisze: Hi Philipp Thank you for your answer! I removed the following bit from the typo3conf/PackageStates.php file:

[TYPO3-english] xlf file for BE module

2014-10-29 Thread Tomasz Krawczyk
Hi list, In my ext I would like to use different xlf files for BE and for FE. I thought I will achieve that selecting locallang_mod.xlf in the registerModule method (6-th parameter - labels). But this is used only for a module name. Fluid uses locallang.xlf for labels by default. I don't

[TYPO3-english] ter question

2014-09-17 Thread Tomasz Krawczyk
Hi list, I can't see in TER the extension static_info_tables_pl on the typo3.org website. I see on the forge that dependencies are filled. I wonder why. regards Tomek ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org

Re: [TYPO3-english] ter question

2014-09-17 Thread Tomasz Krawczyk
W dniu 2014-09-17 13:37, Xavier Perseguers pisze: Hi Tomasz, I can't see in TER the extension static_info_tables_pl on the typo3.org website. I see on the forge that dependencies are filled. I wonder why. You see the banner regarding outdated extensions on TER? When you manually enter the

Re: [TYPO3-english] ter question

2014-09-17 Thread Tomasz Krawczyk
W dniu 2014-09-17 15:51, Xavier Perseguers pisze: Hi, I guess then that's caused by a wrong format of the dependency line. It should read: 'typo3' = '4.5.0-4.7.99' it must have been turned down while batch marking as outdated extensions without proper dependency. Nowadays such a dependency

Re: [TYPO3-english] bug in realurl, tx_news or pagebrowser?

2013-11-27 Thread Tomasz Krawczyk
W dniu 2013-10-06 16:02, Muriel le Pair pisze: Hi, I am experiencing a very strange bug. But I don't know if it's a bug in tx_news, realurl or pagebrowser. The index page contains the tx_news plugin (set to list), when you click on an number from the pagebrowser this will produce a 404 error

Re: [TYPO3-english] my ext spamProtectEmailAddresses

2013-11-21 Thread Tomasz Krawczyk
W dniu 2013-11-21 08:59, Tomasz Krawczyk pisze: W dniu 2013-11-20 22:32, Markus Klein pisze: How are you rendering the email in FE? Kind regards Markus This is a part of list and single view of fluid template: e-mail: f:link.email email={members.email}{members.email}/f:link.email regards

Re: [TYPO3-english] my ext spamProtectEmailAddresses

2013-11-21 Thread Tomasz Krawczyk
W dniu 2013-11-21 09:17, Xavier Perseguers pisze: Hi Tomek, The documentation of the viewhelper helps you: /** * Email link view helper. * Generates an email link incorporating TYPO3s spamProtectEmailAddresses-settings. * * = Examples * * code title=basic email link *

Re: [TYPO3-english] fluid list

2013-11-20 Thread Tomasz Krawczyk
W dniu 2013-11-19 10:40, Markus Klein pisze: Hi! Quick and dirty solution: div class=list h2f:translate key=tx_kbbteam_domain_model_members.employer //h2 f:for each={memberss} as=members f:if condition={members.relationship} div class=short-text/div /f:if /f:for /div div

Re: [TYPO3-english] fluid list

2013-11-20 Thread Tomasz Krawczyk
W dniu 2013-11-20 21:33, Markus Klein pisze: Hi! Why a lookp? It does not need 2 DB lookups. You're doing the lookups in the repository which is called by your controller. The resultset is then forwarded (assigned) to Fluid. So the foreach and if tags in the code only operate on memory.

Re: [TYPO3-english] my ext spamProtectEmailAddresses

2013-11-20 Thread Tomasz Krawczyk
W dniu 2013-11-09 19:53, Tomasz Krawczyk pisze: Hi list, I wrote simple extension with Extension Builder. One of my model fields is email address. I noticed that in the FE my extension applies config.spamProtectEmailAddresses but don't apply config.spamProtectEmailAddresses_atSubst

[TYPO3-english] fluid list

2013-11-18 Thread Tomasz Krawczyk
Hi list! I'm working on my first site based on fluid templates. I made and extension with company employers and employees list. They are in one table containing whole team. I would like to list employers and then employees. The problem is that I want to add headers Employers and Employees

Re: [TYPO3-english] fluid list

2013-11-18 Thread Tomasz Krawczyk
W dniu 2013-11-18 22:10, Markus Klein pisze: Hi! Please post your fluid template and the variables you assign in the controller. Kind regards Markus Currently my template prints Employers/Employees for every member f:for each={memberss} as=members div class=listh2

[TYPO3-english] xclassing tx_news

2013-11-11 Thread Tomasz Krawczyk
Hi list! How can I XClass tx_news? I'm currently working on moving tt_news to tx_news on TYPO3 4.5. regards Tomek ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] xclassing tx_news

2013-11-11 Thread Tomasz Krawczyk
W dniu 2013-11-11 11:37, Xavier Perseguers pisze: Hi Tomasz, How can I XClass tx_news? Exactly as with other extensions: http://docs.typo3.org/TYPO3/CoreApiReference/ApiOverview/Xclasses/Index.html I'm currently working on moving tt_news to tx_news on TYPO3 4.5. If you tell us *what*

[TYPO3-english] my ext spamProtectEmailAddresses

2013-11-09 Thread Tomasz Krawczyk
Hi list, I wrote simple extension with Extension Builder. One of my model fields is email address. I noticed that in the FE my extension applies config.spamProtectEmailAddresses but don't apply config.spamProtectEmailAddresses_atSubst and config.spamProtectEmailAddresses_lastDotSubst global

Re: [TYPO3-english] makeCategorizable options

2013-11-05 Thread Tomasz Krawczyk
Does anybody know what are makeCategorizable() parameter $options available values? Take a look at the API [1]. I suggest you take a look into the related code of the category registry. [1]

Re: [TYPO3-english] makeCategorizable options

2013-11-04 Thread Tomasz Krawczyk
W dniu 2013-11-01 08:23, Tomasz Krawczyk pisze: Hi list, I would like to add this option to my extension. I would like to only add selection possibility and hide all editing icons (in the BE). What are available options? cheers Tomek Does anybody know what are available makeCategorizable

Re: [TYPO3-english] extension builder sql error

2013-11-03 Thread Tomasz Krawczyk
W dniu 2013-10-31 20:49, Tomasz Krawczyk pisze: I enabled query logging in mysql. I found this: 15 QueryINSERT INTO tx_kbbteam_domain_model_members (starttime,endtime,category,sorting,pid,sys_language_uid,hidden,category,first_name,last_name,title,phone,phone_extension,email,description

[TYPO3-english] categories in FE

2013-11-03 Thread Tomasz Krawczyk
Hi! I would like to put category names on the FE. I created extension with Extension Builder. I named relationship field but makeCategorizable added categories field to the table. After I added a few records to that table I realized that both relationship and categories are filled with

[TYPO3-english] makeCategorizable options

2013-11-01 Thread Tomasz Krawczyk
Hi list, I would like to add this option to my extension. I would like to only add selection possibility and hide all editing icons (in the BE). What are available options? cheers Tomek ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org

Re: [TYPO3-english] extension builder sql error

2013-10-31 Thread Tomasz Krawczyk
Hi list! I'm creating an extension with extension_builder. I tried to add one record in the BE but I see such an error message: '2: SQL error: 'Column count doesn't match value count at row 1...' It looks amount of fields doesn't match with amount of values. How can I find what is wrong in the

[TYPO3-english] extension builder sql error

2013-10-30 Thread Tomasz Krawczyk
Hi list! I'm creating an extension with extension_builder. I tried to add one record in the BE but I see such an error message: '2: SQL error: 'Column count doesn't match value count at row 1...' It looks amount of fields doesn't match with amount of values. How can I find what is wrong in

Re: [TYPO3-english] Zend Opcode Cache php 5.5.2 Cant Install Ext. in EM

2013-08-31 Thread Tomasz Krawczyk
W dniu 2013-08-22 02:33, Matthias Eberlein pisze: Hello TYPO3 Forum, i have activated Zend opcache on PHP 5.5.2 with TYPO3 6.1.4dev. The EM dont let me install or uninstall extensions. Here my opcache setup: [opcache] opcache.enable=0 opcache.enable_cli=1 opcache.memory_consumption=128

[TYPO3-english] sr_freecap on T3 v6.1.3

2013-08-05 Thread Tomasz Krawczyk
Hi list, does this ext works on TYPO3 v 6.1.3 ? I have strange error in my log file: PHP Fatal error: require_once() [a href='function.require'function.require/a]: Failed opening required 'D:/wamp/www/dev.site.local/typo3conf/ext/sr_freecap/pi2/class.tx_srfreecap_pi2'

Re: [TYPO3-english] sr_freecap on T3 v6.1.3

2013-08-05 Thread Tomasz Krawczyk
W dniu 2013-08-05 08:03, Tomasz Krawczyk pisze: Hi list, does this ext works on TYPO3 v 6.1.3 ? I have strange error in my log file: PHP Fatal error: require_once() [a href='function.require'function.require/a]: Failed opening required 'D:/wamp/www/dev.site.local/typo3conf/ext/sr_freecap/pi2

Re: [TYPO3-english] sr_freecap on T3 v6.1.3

2013-08-05 Thread Tomasz Krawczyk
W dniu 2013-08-05 08:04, Tomasz Krawczyk pisze: W dniu 2013-08-05 08:03, Tomasz Krawczyk pisze: Hi list, does this ext works on TYPO3 v 6.1.3 ? I have strange error in my log file: PHP Fatal error: require_once() [a href='function.require'function.require/a]: Failed opening required 'D

Re: [TYPO3-english] Typo3 6.0: GD library functions fails

2013-07-18 Thread Tomasz Krawczyk
W dniu 2013-07-15 15:54, Andi pisze: Hi, testing 5. GD library functions in the install-tool tab ImageProcessing Image Magick crashes with der error message ImageMagick Studio library and utility programs funktioniert nicht mehr. Detailed errormessage: Name der fehlerhaften

[TYPO3-english] extension table for caching

2013-04-09 Thread Tomasz Krawczyk
I wrote an extension and it works well. It uses Caching Framework to cache plugin output. I added tables for older T3 versions. I did this basing on an example from http://wiki.typo3.org/Caching_Framework . In the Extension Manager there is update database fields functionality. I tried many

[TYPO3-english] T3 v.6 and TER upload

2013-04-09 Thread Tomasz Krawczyk
Hi list! I red somewhere that I should use extdeveval to upload my ext to TER. But how can I do this? -- cheers Tomek ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] Re: extension table for caching

2013-04-09 Thread Tomasz Krawczyk
Yes, but T3 wants me to update, then I do it and it wants an update again, and again... -- cheers Tomek ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] Re: Re: extension table for caching

2013-04-09 Thread Tomasz Krawczyk
Upper case db field types were the problem. Thank you! -- cheers Tomek ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] Re: Re: extension table for caching

2013-04-09 Thread Tomasz Krawczyk
Funny thing! Wiki page explaining CF is correct (edit mode). Wiki formats the output which leaded to my problem ;-) -- cheers Tomek ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org

[TYPO3-english] Re: Problem with Various Contents plugin after Windows update

2013-04-08 Thread Tomasz Krawczyk
I have one site working on the same IIS version and the same TYPO3 version, but I didn't have Windows specific problems for a long time. I suspected that you use jquery on google, yahoo or other down site but I clicked on uploads/tx_t3jquery/jquery-1.6.1-1.8.13.js in the source and I saw a 404

[TYPO3-english] Re: RealUrl dependencies

2013-04-01 Thread Tomasz Krawczyk
Dmitry, Support for TYPO3 4.6 and 4.7 ends this year. Support for 4.5 ends in October 2014. Because of short support of 4.6 and 4.7 many sites was not upgraded. Version 6 brought us breaking changes and many extensions do not work correctly. So, again, administrators stay with 4.5. Could

Re: [TYPO3-english] XClassing again

2013-03-29 Thread Tomasz Krawczyk
xclasses. Ensure a proper ext_autoload file! Regards Kay Am 28.03.13 20:49, schrieb Tomasz Krawczyk: is it possible to XClass a class which takes some parameters in its constructor? Most times, yes, but the interface must be equal! ___ TYPO3-english

[TYPO3-english] XClassing again

2013-03-28 Thread Tomasz Krawczyk
Hi list, is it possible to XClass a class which takes some parameters in its constructor? -- regards Tomasz ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] XClassing again

2013-03-28 Thread Tomasz Krawczyk
is it possible to XClass a class which takes some parameters in its constructor? Most times, yes, but the interface must be equal! Regards Kay Could you tell me where I can see this? I have a problem XClassing LocalPreviewHelper class... cheers Tomasz

[TYPO3-english] RealUrl dependencies

2013-03-26 Thread Tomasz Krawczyk
Hi! Is latest RealUrl v4.5 compatible? Upload comment says no but em_extconf.php says 4.5 is the oldest supported. The same with PHP. http://typo3.org/extensions/repository/view/realurl Anybody knows which is correct? -- cheers Tomek ___

[TYPO3-english] thumbnails in TYPO3 v.6.0.4

2013-03-22 Thread Tomasz Krawczyk
Hi list, I see that class ThumbnailView is used on few files. - thumbs.php - that will be deleted in 6.2, - ClassAliasMap - not for thumbs generation, - LegacyClassesForIde - also not for thumbs generation. So, how thumbnails are created ? ___

Re: [TYPO3-english] thumbnails in TYPO3 v.6.0.4

2013-03-22 Thread Tomasz Krawczyk
W dniu 2013-03-22 18:20, Benjamin Mack pisze: Hey Tomasz, what exactly do you want to do? ThumbnailView() is the successor for the thumbs.php external script, and can be used directly in your code as well. Check out BackendUtility::thumbNailCode() to see how you can use other use-cases. All

[TYPO3-english] Re: Re: New Xclassing

2013-03-19 Thread Tomasz Krawczyk
Thanks Jigal. I managed to make it working. -- cheers Tomek ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] v.6 and graphics

2013-03-19 Thread Tomasz Krawczyk
Dear Core Developers, I'm working on an extension imagickimg (image processing with PHP ext imagick). I would like to ask some questions about images processing. There are classes LocalPreviewHelper, LocalCropScaleMaskHelper and LocalImageProcessor in TYPO3 v.6. All of them do some small

Re: [TYPO3-english] TER zips

2013-03-16 Thread Tomasz Krawczyk
/sorenmalling On Thu, Mar 14, 2013 at 10:22 AM, Søren Malling soren.mall...@gmail.comwrote: Add it as a ticket on forge.typo3.org - that's the place to save great ideas like this one :-) Søren Malling Twitter: twitter.com/sorenmalling On Thu, Mar 14, 2013 at 8:50 AM, Tomasz Krawczyk tomkr

Re: [TYPO3-english] New Xclassing

2013-03-14 Thread Tomasz Krawczyk
W dniu 2013-03-10 08:38, Jigal van Hemert pisze: Two examples (extension key removed): // XCLASS for Page module $GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['ext/cms/layout/db_layout.php'] = t3lib_extMgm::extPath('ext_key') . 'Classes/class.ux_db_layout.php'; // Namespace XCLASS

[TYPO3-english] Re: New Xclassing

2013-03-09 Thread Tomasz Krawczyk
I don't know what I'm doing wrong. Neither namespaced nor not namespaced my xclass do not work. Is there any extension using new xclassing method I could use as example? -- cheers Tomek ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org

Re: [TYPO3-english] Problem in Extension manager on localhostWAMP

2013-03-09 Thread Tomasz Krawczyk
W dniu 2013-03-08 09:39, TSniper pisze: It's the version 4.7.4. the error log doesn't have an errors about extensions manager or else. i have cheked the database and the table cache_extensions was FULL. Try to debug with FireBug. Try to upgade to the newest 4.7 version.

[TYPO3-english] htmlspecialchars error in class.tslib_content.php

2013-03-08 Thread Tomasz Krawczyk
I have lots of such errors in my PHP error log: PHP Warning: htmlspecialchars() expects parameter 1 to be string, array given in D:\Sites\www.mysite.pl\typo3_src\typo3\sysext\cms\tslib\class.tslib_content.php on line 5891 It started at the end of August. If I add this:

[TYPO3-english] Re: New Xclassing

2013-03-08 Thread Tomasz Krawczyk
I don't know if I'm not messing something. I used wiki and dbal as examples. This are my ext_localconf.php and class. ext_localconf.php: $GLOBALS |TYPO3_CONF_VARS | SYS | Objects | TYPO3\\CMS\\Core\\Imaging\\GraphicalFunctions | = array('className' =

[TYPO3-english] Exceptions in Windows php_errorlog

2013-03-07 Thread Tomasz Krawczyk
Hi! I use Windows as development platform. In my log file I see very very long error messages. I think rows are not broken. (...) does not exist!br /\nbr /\nAdditionally, (...) \\TypoScriptFrontendController.php:1952\nStack trace:\n#0 (...) Can anyone confirm this behavior?

[TYPO3-english] New Xclassing

2013-03-07 Thread Tomasz Krawczyk
I'm verry new to typo3 v6. I would like to make my ext TYPO3 v6 compatible. I'm not sure if Wiki example is correct: http://wiki.typo3.org/XCLASS#XCLASS_registration_since_TYPO3_CMS_6.0 I will not provide ext_autoload.php file. $GLOBALS= array( 'className' =

[TYPO3-english] Re: Problem in Extension manager on localhostWAMP

2013-03-07 Thread Tomasz Krawczyk
I'm guessing it is TYPO3 older than 6.0. Do you have any errors in the PHP error_log ? -- cheers Tomek ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] multilanguage sites

2012-12-05 Thread Tomasz Krawczyk
Hi! On the old typo3.org we had great description of the multi language sites (http://typo3.org/documentation/tips-tricks/multi-language-sites-in-typo3/). Where is now that page? -- regards Tomek ___ TYPO3-english mailing list

Re: [TYPO3-english] hints

2012-11-27 Thread Tomasz Krawczyk
W dniu 2012-11-26 12:44, Stefan Reichelt pisze: Clear cache and reload. Tooltips should be gone now. Use with caution though, I do not know what other repercussions this could have/create. Though I don't think it will. As far as I remember the TCA_DESCR arrays only purpose were these tooltips?

[TYPO3-english] hints

2012-11-21 Thread Tomasz Krawczyk
Can I disable yellow help boxes visible on the second screenshot on the page http://typo3.org/download/release-notes/typo3-4-5-release-notes/ ? It is great for new users but annoying for experienced. Is there any user TS option to turn it off/on ? cheers Tomek

[TYPO3-english] CF my backend

2012-10-20 Thread Tomasz Krawczyk
Hi list! I'm writing an extension which adds my own caching backend. Backend uses WinCache. Best opcode cacher for IIS. I added it in ext_autoload.php ?php $extensionPath = t3lib_extMgm::extPath('wincache'); return array( 'tx_wincache_cache_backend_WinCacheBackend' = $extensionPath .

Re: [TYPO3-english] CF my backend

2012-10-20 Thread Tomasz Krawczyk
W dniu 2012-10-20 11:23, Andreas Kiessling pisze: Hi Tomasz, not really an answer to your question, but maybe updating to/waiting for 6.0 is an option? http://forge.typo3.org/issues/35818 Regards, Andreas Thanks! I didn't know that WinCache will be included. I have to stay with TYPO3 4.5.

Re: [TYPO3-english] Password expiry for be_users

2012-10-18 Thread Tomasz Krawczyk
W dniu 2012-10-18 15:35, Tony Lush pisze: reminded to change it. It does not force them to change, but the constant reminders are annoying enough to encourage changing. Unfortunately there are people that used to the remainder. ;-( This is why I suggested to add grace logins to

Re: [TYPO3-english] Performance under windows?

2012-10-07 Thread Tomasz Krawczyk
W dniu 2012-10-05 18:52, Gorosito Gonzalo pisze: This is why I'd like if is there someone that is running windows with typo3, It can't be that slow! :( I have one site running on windows. Most cached pages I can see in a half of second. eAccelerator has an option where uses shared memory

[TYPO3-english] TER

2012-10-07 Thread Tomasz Krawczyk
Hi! Is TER working properly? For the last a few days I had an impression that download counters are not updating. Now I can't browse the TER in 4 browsers. cheers Tomek ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org

[TYPO3-english] translation for excluded extensions

2012-10-03 Thread Tomasz Krawczyk
Hi list! When I was downloading extension translations I noticed that EM was trying to download translation of the extension with excludeFromUpdates state. I think that the class tx_em_Translations doesn't pay attention to that. I think it it is incorrect. Can anyone confirm that? cheers

[TYPO3-english] translation list

2012-09-29 Thread Tomasz Krawczyk
Hi list! Is typo3.translation.general list still the only place where we can ask for adding extensions to the translation server ? I'm waiting for over 4 weeks so, I wonder if something changed and wiki page is not up to date... cheers Tomasz ___

Re: [TYPO3-english] Realurl: Moving of pages

2012-09-28 Thread Tomasz Krawczyk
W dniu 2012-09-27 19:38, Steffen Gebert pisze: Hi, I guided a bigger client through the update to TYPO3 4.5. Additionally few other things were introduced, e.g. Caching Framework activation + a hand full of performance-related patches (one of them is a back-ported rootline cache from 6.0).

[TYPO3-english] tslib_cObj-image_effects

2012-09-26 Thread Tomasz Krawczyk
Hi list, My extension has to add some image effects to standard CE elements. I added fields to the tslib_cObj-image_effects array. Now I would like to add some labels. I'm adding to ext_localconf.php such rows: $GLOBALS['TCA']['tt_content']['columns']['image_effects']['config']['items'][]

Re: [TYPO3-english] tslib_cObj-image_effects

2012-09-26 Thread Tomasz Krawczyk
W dniu 2012-09-26 19:55, Tomasz Krawczyk pisze: Hi list, My extension has to add some image effects to standard CE elements. I added fields to the tslib_cObj-image_effects array. Now I would like to add some labels. I'm adding to ext_localconf.php such rows: $GLOBALS['TCA']['tt_content

[TYPO3-english] gif_compress

2012-09-02 Thread Tomasz Krawczyk
Hi list! I wonder why methods gif_compress() png_to_gif_by_imagemagick() are defined in t3lib_div instead of t3lib_stdGraphic. It is a problem to me cause I work on extension ImagickImg and I would like to overload them but t3lib_div is defied as final. Should I make future request on the

Re: [TYPO3-english] E-Accelerator bug when configuring extension

2012-09-02 Thread Tomasz Krawczyk
W dniu 2012-07-19 10:29, Oliver Klee pisze: Hi, Am 19.07.2012 08:01, schrieb Tomasz Krawczyk: Is eAccelerator still maintained? Its last version is from 2010. I can't create an account on its trac. The forum on the Google is dead. I may be wrong but it looks a father has abandoned baby

Re: [TYPO3-english] E-Accelerator bug when configuring extension

2012-07-19 Thread Tomasz Krawczyk
W dniu 2012-07-18 23:02, Oliver Klee pisze: Hi, Am 18.07.2012 21:47, schrieb Loek Hilgersom: We recently had stubborn segmentation fault errors with APC on a project running TYPO3 4.6. Now switched to Xcache with no problems since - for what it's worth, YMMV. I had exactly the same

[TYPO3-english] tug Poland

2012-06-05 Thread Tomasz Krawczyk
Hi list! Can anybody tell me who could be nice enough to add an information about TYPO3 user group from Poland to the page http://typo3.org/community/typo3-user-groups/ ? I have prepared a few words about us. -- regards Tomasz Krawczyk tom...@typo3.pl www.typo3.pl

[TYPO3-english] new TYPO3 site and TER

2012-04-17 Thread Tomasz Krawczyk
Hi list! I have published in the TER an extension that I can't find. I haven't got any email from Security Team, so It should be visible in the TER. I've also reserved a key for another extension but haven't published it yet. I can't see this reserved key and can't reserve it again. TER says

Re: [TYPO3-english] new TYPO3 site and TER

2012-04-17 Thread Tomasz Krawczyk
W dniu 2012-04-17 15:53, Georg Ringer pisze: Hi, would be helpful to now those ext keys .. georg tk_mobiledetector - reserved published wincache - reserved but not published Tomek ___ TYPO3-english mailing list TYPO3-english@lists.typo3.org

Re: [TYPO3-english] new TYPO3 site and TER

2012-04-17 Thread Tomasz Krawczyk
W dniu 2012-04-17 16:04, Kay Strobach pisze: Hi, have you used the button on: http://typo3.org/extensions/extension-keys/ = the end of the page? Missing some of your keys? Extension keys without any uploaded version have not been migrated from the old typo3.org. If you still wish to use

Re: [TYPO3-english] Mobile detection in pure TS

2012-04-17 Thread Tomasz Krawczyk
W dniu 2012-04-12 16:31, Éric Thibault pisze: Hello to all! I want to use de devise condition in Typo3 to redirect visitors of a particular page to its mobile version… The conditions I use don’t work at all! The browser conditions function correctly but devise not! [device = wap, pda]

Re: [TYPO3-english] tt_news: no news id given

2012-02-07 Thread Tomasz Krawczyk
W dniu 2012-02-07 15:33, Tom Gillis pisze: Hello list, im using the newest version of tt_news and typo3 4.5 everything was working a while ago, even after the latest updates to typo3 and tt_news. recently there were errors when looking at the single view of a news item error: no news_id given.

Re: [TYPO3-english] Strange RealUrl multiple domain problem

2011-12-14 Thread Tomasz Krawczyk
W dniu 2011-12-14 09:00, Marieke de Bruin pisze: Hi! What is it for? $TYPO3_CONF_VARS[ (...) 1.com']['init']['rootPageID'] = 1; I've never used this and I can't find it in the realurl manual v.1.11.2. cheers Tomek ___ TYPO3-english mailing list

Re: [TYPO3-english] Convert all tables to InnoDB

2011-12-03 Thread Tomasz Krawczyk
W dniu 2011-12-01 16:50, yanagik...@netscape.net pisze: Thanks for those that replied. Barring the fulltext search comment, am I to gather this engine issue has to do with performance and not so much with It's gonna crash Typo3 and it won't work? I've inherited this Typo3 install where tables

Re: [TYPO3-english] custom TS conditions

2011-11-28 Thread Tomasz Krawczyk
W dniu 2011-11-25 14:28, Xavier Perseguers pisze: Hi, I have simple question, I hope ;-) From TS syntax in-depth study I know that I can parse my TS and add custom conditions like [TYPO3 IS GREAT]. The problem is that I don't know how to tell TYPO3 about my class. Such conditions looks more

Re: [TYPO3-english] custom TS conditions

2011-11-25 Thread Tomasz Krawczyk
W dniu 2011-11-24 09:01, Tomasz Krawczyk pisze: Hi list, I have simple question, I hope ;-) From TS syntax in-depth study I know that I can parse my TS and add custom conditions like [TYPO3 IS GREAT]. The problem is that I don't know how to tell TYPO3 about my class. Such conditions looks

[TYPO3-english] custom TS conditions

2011-11-24 Thread Tomasz Krawczyk
Hi list, I have simple question, I hope ;-) From TS syntax in-depth study I know that I can parse my TS and add custom conditions like [TYPO3 IS GREAT]. The problem is that I don't know how to tell TYPO3 about my class. Such conditions looks more interesting to me than userFunc. Can you

Re: [TYPO3-english] loading extension list speed up

2011-11-24 Thread Tomasz Krawczyk
W dniu 2011-11-23 11:45, Tomasz Krawczyk pisze: W dniu 2011-11-23 11:37, Georg Ringer pisze: Hi, Am 23.11.2011 09:57, schrieb Tomasz Krawczyk: What do you think guys? tried it with 4-6? georg Some tuning of MySQL 5.5.16 and loading extensions takes 1:19 min. regards Tomek

  1   2   >