Re: [TYPO3-english] 6.2 Frontend css problems

2014-05-22 Thread Loek Hilgersom
On 22-05-14 15:30, Loek Hilgersom wrote: I don't how you 'moved it to be live', but under some conditions you might have to remove all extbase cache tables. hmmm, empty them, not _remove_ them of course ;-) ___ TYPO3-english mailing list TYPO3

Re: [TYPO3-english] Get rid of page title in mega menu level 2

2014-09-04 Thread Loek Hilgersom
Hi Wolfgang, There is no standard option for disabling the content of menu items, but you can overwrite it... with nothing, an empty cObject in this case. So just add this: 2.NO.stdWrap.cObject = TEXT or this (the same, but more obvious): 2.NO.stdWrap.cObject = TEXT

Re: [TYPO3-english] magic image insertion

2014-09-22 Thread Loek Hilgersom
Hi Sebastien, There is a setting under 'All configuration' in the install tool: $TYPO3_CONF_VARS['GFX']['im_noScaleUp']. If you set it to 1, TYPO3 will only scale down images, but not scale up if you do not explicitly ask it to do so. And don't worry about your english, most people on this

Re: [TYPO3-english] CronJob is not working in typo3

2014-09-24 Thread Loek Hilgersom
Hi Manish, From your description it is not clear where the problem is, the cronjob, scheduler or direct mail. You probably know this, but just to be sure: the cronjob triggers the scheduler, and the scheduler triggers the individual scheduler task, such as the mailer from direct mail. In

[TYPO3-english] Cleaner Typoscript dataWrap solution?

2014-09-24 Thread Loek Hilgersom
Hi all, I'm staring at a Typoscript issue for which I have some solution, but it just looks too complicated for what it does. What I want is render a DB field, plus having the same content in the title-tag. The simplest approach would be this: 10 = TEXT 10 { field = title

[TYPO3-english] Strange target=_blank in HMENU

2014-10-09 Thread Loek Hilgersom
Hi all, I have a strange issue with a straight forward HMENU: The root page (uid=2) adds an unintended target=_blank to the link. The page is set as root page in page properties, and it contains a domain record. Weird is that the link doesn't show a href=/ ... but it adds the full domain

Re: [TYPO3-english] Cache settings dilemma

2014-10-22 Thread Loek Hilgersom
Hi Viktor, Thanks a lot for this great answer, it's one of those new features which I new existed but had not seen the documentation for. (Only used the caching framework from PHP inside extensions so far) If I understand it correctly, a simple implementation would be to just add to

Re: [TYPO3-english] Cache settings dilemma

2014-10-22 Thread Loek Hilgersom
Hi Stephan, Thank you for the additional example, it's useful! Loek On 22-10-14 15:21, Stephan Schuler wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Hey Loek. You clearly want to use cache tags. If a new page renders news lists, the page needs to be tagged by

Re: [TYPO3-english] Typoscript condition be_users-uid

2014-11-28 Thread Loek Hilgersom
Hi Sergio, Find out if there currently is a valid backend login: [globalVar = TSFE:beUserLogin = 1] This will match only with the backend user with UID 13: [globalVar = BE_USER|user|uid = 13] Straight from tsref:

Re: [TYPO3-english] TS: is there a way to count() for elements GP-variable?

2014-11-30 Thread Loek Hilgersom
Hi Bert, Two solutions I can think of: 1. (complicated) doing something with split and adding 1 for each rendered instance 2. (easy) using a simple userFunc with just this: return count(explode(',', $inputValue)); Hth, Loek On 30-11-14 18:37, Bert Hiddink [BENDOO e-work solutions] wrote:

[TYPO3-english] realurl: is rootpage_id necessary?

2014-12-10 Thread Loek Hilgersom
Hi all, On a multi-domain site I discovered that the realurl configuration for rootpage_id was not done correctly in realurl_conf.php, but still everything seems to work fine. I tried e.g. to access sub1.domain.com/news and sub2.domain.com/news and both deliver the right - different - page.

Re: [TYPO3-english] typo3temp folder under NFS

2015-01-30 Thread Loek Hilgersom
Hi Sergio, I also experienced some issues with an installation having the entire filesystem on NFS. See the thread on this list at 13-5-2014. I'd suggest you experiment with different locking methods which you can set through the install tool. Which TYPO3 versions are talking about,

Re: [TYPO3-english] typo3temp folder under NFS

2015-02-02 Thread Loek Hilgersom
I don't have a ready-made solution, I mentioned all steps I took in my last post. You should really be looking at places where files are frequently being written and rewritten. Problems could occur when 2 processes/servers are writing the same files simultaneously. So the Cache-directory is

Re: [TYPO3-english] typo3temp folder under NFS

2015-02-12 Thread Loek Hilgersom
Hi Sergio, I noticed last year that there were some unresolved issues regarding the locking, but I also ran into some longstanding bugs in PHP in dealing with NFS (producing incorrect warnings when unlinking files), which were still open... (sorry, cant find it back easily). You probably

Re: [TYPO3-english] Strange characters concatenated to my URLs

2015-02-17 Thread Loek Hilgersom
Hi Ivan, As soon as the L-parameter gets a value, TYPO3 will preserve it in subsequent links, so you'll have to find out where those strange values are added to the url, maybe there is a specific page where that starts? Or could the site possibly be hacked? The other thing you should do is

[TYPO3-english] FAL Typoscript question

2015-03-20 Thread Loek Hilgersom
Hi all, While upgrading a number of sites to 6.2 I noticed that I did not need to change the Typoscript for rendering things like fe_user images. It looks like it doesn't even need the treatIdAsReference=1 setting, is that correct? Of course I did make the necessary changes for rendering

Re: [TYPO3-english] [TYPO3-core] Announcing TYPO3 CMS 7.1

2015-03-04 Thread Loek Hilgersom
In addition to Stefan's reply: there should be no problem running the current Long Term Support version (6.2) on that configuration. Loek On 04-03-15 10:55, George Manabe wrote: Hi, I'm George I would like to use TYPO3, but my hosting services is as follows: # php -v PHP 5.4.36 (cli)

Re: [TYPO3-english] Small but annoying problem in multilingual site

2015-03-04 Thread Loek Hilgersom
Hi Nico, Just a little checklist: 1. Did you add a condition with settings for the extra language similar to this? [globalVar = GP:L = 2] config { sys_language_uid= 2 language= de locale_all = de_DE.UTF-8

Re: [TYPO3-english] 4.1 6.2 7.3

2015-06-19 Thread Loek Hilgersom
Hi Jan, I had to upgrade a 3.6 (!) site a while ago and just went from 3.6 to 4.2 and 4.5. That worked fine, I'm not sure if any migrations are missing in that case. I'd say, try it but keep a backup ;-) Loek On 19-06-15 08:33, bernd wilke wrote: Am 19.06.15 um 08:15 schrieb Jan Bednarik:

Re: [TYPO3-english] Randomly Display tt_news Item with TypoScript

2015-06-11 Thread Loek Hilgersom
Hi Scotty, You need to make a join with the tt_news_cat_mm table: select { pidInList = 381 max = 1 orderBy = rand() join = tt_news_cat_mm ON uid=uid_local where = image != '' AND uid_foreign=5 } You'll have to replace 5 by the uid of your category. Side note: this does not check if

Re: [TYPO3-english] AWStats in 6.2

2015-06-15 Thread Loek Hilgersom
It's been on my wish list, for small projects AWstats has often been a quick and easy statistics solution. And so it happened, in about 15 min. (according to typo3.org) you should see a new extension 'retrostats' in TER which re-introduces the old apache-style logging using the same

Re: [TYPO3-english] AWStats in 6.2

2015-06-17 Thread Loek Hilgersom
wrote: Hi Loek, First of all thanks for creating this extension for those that are interested. Can you please update your depedency contraint to 6.2 or higher? 6.0 and 6.1 are not supported anymore. Thanks. Wouter Wolters TYPO3 CMS Active Contributor Loek Hilgersom schreef op 15-6-2015 om 14:54

Re: [TYPO3-english] How to inherit t3s_headerslider from parent page

2015-06-18 Thread Loek Hilgersom
On 18-06-15 11:07, bernd wilke wrote: Am 17.06.15 um 09:12 schrieb Jeppe Donslund: lib.t3sheaderslider.slide = -1 doesn't seem to work. sliding can only be done on content objects. It can also be used on those page properties which are part of the RootLineFields, e.g. the files/media

Re: [TYPO3-english] TYPO3 7.x search

2015-10-27 Thread Loek Hilgersom
Hi, The development version of Solr is already working to some extend with v7, you have to take the version from here: https://github.com/TYPO3-Solr/ext-solr A fully compatible version is planned for after the release of TYPO3 7 LTS. Also ke_search is actively maintained and the current TER

[TYPO3-english] cookieDomain issue

2016-02-12 Thread Loek Hilgersom
Hi all, I'm having an issue with the [SYS][cookieDomain] setting. I have a production server on www.domain.com, including a number of subdomains, and test and acceptation servers on test.domain.com and acceptation.domain.com. Because we need the cookieDomain set at '.domain.com' we are

Re: [TYPO3-english] cookieDomain issue

2016-02-14 Thread Loek Hilgersom
-16 21:30, Jigal van Hemert wrote: Hi, On 12/02/2016 11:42, Loek Hilgersom wrote: I'm having an issue with the [SYS][cookieDomain] setting. I have a production server on www.domain.com, including a number of subdomains, and test and acceptation servers on test.domain.com and acceptation.domain.com

Re: [TYPO3-english] cookieDomain issue

2016-02-15 Thread Loek Hilgersom
now and then a new one, so I hope to find a solution where I don't have to declare each one of them explicitly. Loek On 15-02-16 09:19, Jigal van Hemert wrote: Hi, On 14/02/2016 20:52, Loek Hilgersom wrote: Now I'll dig into building a regexp to exclude those 2 subdomains while including

Re: [TYPO3-english] cookieDomain issue [SOLVED]

2016-03-04 Thread Loek Hilgersom
problems with Chrome. It would have been nice if browsers would give priority to the cookie with the closest domain match, but only Safari does that. Loek [1] http://www.sitepoint.com/3-things-about-cookies-you-may-not-know/ On 05-03-16 00:13, Loek Hilgersom wrote: Hi Jigal and others, I

Re: [TYPO3-english] cookieDomain issue [SOLVED]

2016-03-04 Thread Loek Hilgersom
environments. Problem solved! The cookieDomain stays set to .domain.com, (and .test.domain.com / .acceptation.domain.com for the other environments, though they would also work with .domain.com) Hope this helps anyone. Loek On 15-02-16 10:37, Loek Hilgersom wrote: Hi Jigal, Thanks again, and good

Re: [TYPO3-english] Fluid and categories (TYPO3 6.2.x): render a multilevel menu for Bootstrap 3.x

2016-09-15 Thread Loek Hilgersom
Hi Bert, It is possible to do this inside fluid, but not very elegant (you'll need to loop over all categories and first pick only root categories, and for each category you'll have to loop over all again to see if there are any children not exactly optimal). But the amount of code is

Re: [TYPO3-english] Fluid and categories (TYPO3 6.2.x): render a multilevel menu for Bootstrap 3.x

2016-09-16 Thread Loek Hilgersom
[BENDOO e-work solutions] wrote: Hello Loek! Thanks for your suggestion! I'll test it and let you know if it worked! Thanks again! Bert On 15/09/16 15:45, Loek Hilgersom wrote: Hi Bert, It is possible to do this inside fluid, but not very elegant (you'll need to loop over all categories and first

<    1   2