- #spam Versender scheinen sich langsam auf #greylisting einzustellen. Ich erhalte zunehmend #spam auf einer verspamten Email-Adresse
#
Folgender Fehler erscheint in der Konsole nach dem Start sofern der Aufruf über die Konsole erfolgt:
*** glibc detected *** /usr/bin/java: free(): invalid pointer: 0x0000000004690d20 *** ======= Backtrace: ========= /lib64/libc.so.6(+0x74c06)[0x7fd4ddc15c06] /usr/lib64/jvm/java-1.7.0-sun-1.7.0/jre/lib/amd64/server/libjvm.so(+0x43f8d5)[0x7fd4dd4ad8d5] /home/svewap/opt/Aptana Studio 3/configuration/org.eclipse.osgi/bundles/223/1/.cp/libswt-pi-gtk-3659.so(Java_org_eclipse_swt_internal_gtk_OS__1g_1data_1input_1stream_1read_1line+0xe7)[0x7fd4d08c6d04] [0x7fd4d93bbca8] ======= Memory map: ======== 00400000-00401000 r-xp 00000000 08:02 422141 /usr/lib64/jvm/java-1.7.0-sun-1.7.0/jre/bin/java 00600000-00601000 rw-p 00000000 08:02 422141 /usr/lib64/jvm/java-1.7.0-sun-1.7.0/jre/bin/java 00601000-0504d000 rw-p 00000000 00:00 0 [heap] a0000000-b0000000 rw-p 00000000 00:00 0
Lösung
Folgende Anweisung muss immer vor dem Start ausgeführt werden:
unset MALLOC_CHECK_
Das kann man bei Aptana beispielsweise erreichen, wenn man diese Anweisung in die “studio” bash script Datei hineinschreibt.
Example:
02763 Zittau
Find what: ([0-9]{5})(\ )
Replace with: \1;
Result: 02763;Zittau
- WapplerSystems realisiert TYPO3 Website Lindt Choco Party
In Zusammenarbeit mit Cosmolog realisiert WapplerSystems… http://t.co/7pJ0UV0Q #
Im setup-Teil des Templates muss folgendes eingegeben werden:
config.locale_all = de_DE.utf8
Folgender Code muss in den setup-Bereich des Templates kopiert werden. Dann werden Links in der List-Ansicht korrekt gerendert. Dieser Bug ist leider noch nicht vom TYPO3-Team behoben worden.
# bugfix für links in der list ansicht
plugin.tt_news.displayList {
# add parseFunc to the subheader
subheader_stdWrap.parseFunc < lib.parseFunc_RTE
# prevent adding of tags
subheader_stdWrap.parseFunc.nonTypoTagStdWrap.encapsLines.nonWrappedTag >
# add parseFunc to the bodytext
content_stdWrap.parseFunc < lib.parseFunc_RTE
# add parseFunc to the links field
linksItem_stdWrap.parseFunc < lib.parseFunc_RTE
# prevent adding of tags
linksItem_stdWrap.parseFunc.nonTypoTagStdWrap.encapsLines.nonWrappedTag >
}
- Enabling DE Language pack in #mozilla #thunderbird let thunderbird 8 crash
# - Entwickle gerade eine #TYPO3 extension für die #cleverreach API, die formhandler benutzt #
- Examples to use #typo3 formhandler with #cleverreach api: http://t.co/FuALLkuE #
I found the following solution for changing the background color of images. I have overwritten the Catalog/Helper/Image class, so the background color is changed in the whole theme and it isn’t necessary to overwrite the template files.
Create a class in app/code/local/Foo/Catalog/Helper/Image.php
class Foo_Catalog_Helper_Image extends Mage_Catalog_Helper_Image {
public function init(Mage_Catalog_Model_Product $product,$attributeName,$imageFile = null) {
parent::init($product,$attributeName,$imageFile);
$this->backgroundColor(array(60,60,60));
return $this;
}
}
Overwriting the helper class in the app/code/local/Foo/Bar/etc/config.xml
<?xml version="1.0"?>
<config>
<global>
<helpers>
<catalog>
<rewrite>
<image>Foo_Catalog_Helper_Image</image>
</rewrite>
</catalog>
</helpers>
</global>
</config>