Move TYPO3 media to external volume

Sometimes over the time, when more and more projects is coming to SSD disk the space is in slowly ending. On MacBook there is SD slot which can help us to extend harddrive possibilitues and move to this SD a files that do not need to be read fast – typically media files. For TYPO3 projects its fileadmin and uploads folders.

Continue reading

Indexing extension records with “Indexing Configuration”

If we use “indexed_search” extension in TYPO3 then there are two ways to index extensions records. First one is to create “Crawler Configuration” records. The second one is to create “Indexing Configuration” records.

The “Crawler Configuration” has a drawback that is crawl all records in frontend so whole TYPO3 is run to generate a page with single view of record. The “Indexing Configuration” way scans only selected fields from record and based on that creates records on indexed_search tables.

Continue reading

Spam protection for TYPO3

TYPO3 has build in method to protect email links created with typolink API. This method protects only a href=”mailto:some@example.com” but does not protect the text inside link. So if the text itself is an email then protection is not working well. One solution is to always use <a>email</a> and not real email as link text. The second solution is to prepare tricky “email” html that the spider will be not able to parse correctly.

Continue reading