Magento: Remove old session files
find var/session/ -name „sess*“ -type f -delete A litte bash script, if there a > 1 Mio files in this folder.
Einiges über TYPO3, symfony und Webentwicklung
find var/session/ -name „sess*“ -type f -delete A litte bash script, if there a > 1 Mio files in this folder.
Die Slides zum Vortrag, den ich auf dem Aachener Magento Stammtisch hielt, können hier heruntergeladen werden. Ich habe viel mündlich vorgetragen, aber vielleicht helfen dem ein oder anderen die angesprochenen Probleme. Magento 002 -Migriere...
php composer.phar require firegento/magesetup2 dev-develop
At this moment it is not possible to validate the new global domain names (gTLDs) in Magento. Neither it is possible to use the new domain names in frontend nor in backend. Magento uses...
Folgender Code kann die Performance von Kategorie-Ansichten enorm beschleunigen, denn diese kann besonders bei Bundle-Products ziemlich schlecht sein. Steigerungen von 400% konnte ich messen. Mage/Catalog/Block/Product/List.php protected function _construct() { $this->addData(array('cache_lifetime' => false)); } public...
Change the following line in file /app/code/core/Mage/Core/Model/Url/Rewrite.php (line 252): From $targetUrl = $request->getBaseUrl(). '/' . $this->getRequestPath(); to $targetUrl = $request->getBaseUrl(). '/' . $currentStore->getCode() . '/' . $this->getRequestPath();
My solution for generating a resized thumbnail image is to overwrite the model class of catalog. Here my xml file: <?xml version="1.0"?> <config> <global> <models> <catalog> <rewrite> <category>YOURMODULE_SUBMODULE_Model_Catalog_Category</category> </rewrite> </catalog> </models> </global> </config> The...
Go over the main menu to CMS -> Pages and open the home page. Then go to the tab „Design“ and edit the code. The following example adds a block at the end of...
The original path is: path/to/magento/media/blog/<imagename> The path of the resized image is: path/to/magento/media/blog/resized/<imagename> public function resizeImg($fileName, $width, $height = null) { $folderURL = Mage::getBaseDir(Mage_Core_Model_Store::URL_TYPE_MEDIA). DS .'blog'. DS; $basePath = $folderURL . $fileName; $newPath =...
In seiner layout update xml Datei kann man folgende Tags verwenden. mm steht hierbei für den Store View Code: <?xml version="1.0" encoding="UTF-8"?> <layout> <default> …. </default> <STORE_mm> <reference name="head"> <action method="addJs"><script>pfad/zur/datei-mm.js</script></action> </reference> </STORE_mm> </layout>
Mehr