-
5th January, 2012 by Christian Koch | 0 Comments | Categorie: php, t3 extension development
You have seo_basics installed and want to change your title tag from within your own extension.
Use the following code snippet:
read more…
-
4th January, 2012 by Christian Koch | 0 Comments | Categorie: Uncategorized
To backup your database use following SQL:
BACKUP DATABASE <databaseName> TO DISK = '<pathToSqlFile>'
read more…
-
30th November, 2011 by Christian Koch | 0 Comments | Categorie: php, Uncategorized
if (!filter_var('bob@example.de', FILTER_VALIDATE_EMAIL)) {
print "thats not right";
} else {
print "that right";
}
-
13th November, 2011 by Christian Koch | 0 Comments | Categorie: t3 extension development
Who didn’t have this problem yet, you upload your old Typo3 Installation to a new hoster and nothing is working!
You don’t have any Log files, nothing!
To see what is going on simply add the following line to your typo3conf/localconf.php
$TYPO3_CONF_VARS['SYS']['displayErrors'] = '1';
-
15th October, 2011 by Christian Koch | 0 Comments | Categorie: t3 extension development
After updating Typo3 4.3, 4.4 to Typo3 4.5 I received some Deprecation Warnings: Validation failed for: …
Also I had had one project where the mail text was krypted.
read more…
-
20th September, 2011 by Christian Koch | 0 Comments | Categorie: MySQL, php
Ever wanted to create an attribute of type timestamp to a unix timestamp?
SELECT UNIX_TIMESTAMP(mydate) FROM mytable;
-
23rd July, 2011 by Christian Koch | 1 Comment | Categorie: php
I am using standard http and MySQL server setup with a freshly installed Centos 5.6 64 Bit system.
read more…
-
6th March, 2011 by Christian Koch | 0 Comments | Categorie: t3 extension development
<f:form.submit name="select-name" value="{f:translate(key:'send')}"/>