If you need to increase the max_size for images for fe_users (which is by default set to 500kb). Open /typo3conf/extTables.php and add the following lines:
t3lib_div::loadTCA('fe_users');
$TCA['fe_users']['columns']['image']['config']['max_size'] = 100000;
Filed in typo3 fe_users max_size TCA extTables.php images
Use this code when you need to make a query from Typoscript based on a parameter sent by GET or POST. They say if you pass it trough the markers method, it will be escaped and quotes to avoid SQL injection attacks.
temp.user = CONTENT
temp.user {
table = fe_users
select {
#ID of the Userfolder
pidInList = 11
where = uid = ###myid###
markers {
myid.data = GP:myid
}
}
}
Original source here: http://wiki.typo3.org/index.php/TSref/select
Filed in typo3 ts typoscript tsref CONTENT select query
If your IM is beeing very slow, and your hosting provider says that it should be running good, check the IM version used, and SET IT accordingly in the localconf.php (or from the install tool).
For example you have IM 6.x.x installed, then set this line:
$TYPO3_CONF_VARS[‘GFX’][‘im_version_5’] = ‘im6’;
Filed in typo3 im image magick localconf slow images
It happens sometimes that you need to force the browser (read IE) to redraw the page for the layout to appear correctly.
If you add and remove a class from JS, IE triggers a redraw.
If you use jQuery this will work:
$('body').addClass('js').removeClass('js');
Filed in javascript ie ui redraw
If you need to disable all header output in Typo3, use the following typoscript:
config.disableAllHeaderCode = 1
Useful for generating XML’s or for AJAX requests
Filed in typo3 tsref typoscript ts xml ajax
If you have problems with pagebreaks in Firefox while printing a web document.
(Presumably using @media print {} )
Use this
* { overflow: visible !important; }
in the print stylesheet
Filed in firefox css @media print pagebreaks overflow
http://css3pie.com/ is another IE enhancer (with the help of a .htc) – making IE render some CSS3 properties.
Looks still young, but should have it on my #radar
Filed in ie css css3 radar htc
We’ve finally arrived at our hotel — Royal (anyone at the Royal lets get together for a beer or two) — in Elmshorn, Germany for the Typo3 Developer Conference 2010 ( #t3dd10 ).
Wizair flight from Cluj to Dortmund was good.
(This was actually my first flight, and I enjoyed it quite a bit).
We tried to rent a car from Dortmund’s airport. None of the 5 credit debit cards we had on us (with money on them) was good, as they only accept credit cards — the debit card is not supported — and none of them accepted cash.
We came by train: long, exhausting and for a big part we had no seats :(
*****
But we are here. In our hotel rooms. No free internet :( , only T-Mobile pay-wireless 8 € / hour or 29.5 € / 30 days. No, they don’t have any in-between plan. Just awesome.
The Weissbier was really good.
******
Plans:
- meet some more typo3 folk
- learn cool stuff about Typo3 that we may have missed
- get some more insight as to where Typo3 is headed
- try to use this as a marketing tool since we offer great Web Development skills (most of them focused on Front-End and Typo3) for good prices — good for nearshore outsourcing
Filed in elmshorn typo3 t3dd10
If you get a similar error:
Parse error: syntax error, unexpected T_STRING in /home/sites/…/typo3/sysext/cms/tslib/index_ts.php on line 349
On a new install or after a server-move, your new server doesn’t have PHP 5.2
Filed in typo3 php error