No category tree in Magento backend

Perhaps you now the problem shown below. The category tree of the products isn’t rendered correctly. That’s because I don’t set level and children_count during import of categories. This little script corrects this for me: UPDATE catalog_category_entity SET level = (SELECT LENGTH(path)-LENGTH(REPLACE(path,’/’,”)) AS tmpl FROM (SELECT * FROM catalog_category_entity) AS table1 WHERE catalog_category_entity.entity_id = table1.entity_id); UPDATE […]

Die Macht der Massenmedien
-Propaganda im Dritten Reich-

Die folgende Arbeit, welche ich während meines Studiums geschrieben habe, analysiert die gezielte Ausnutzung der, zur Zeit des Nationalsozialismus vorhandenen, Massenmedien. Dabei wird vor allem auf die medienpsychologischen Aspekte aber auch auf die historischen Hintergründe eingegangen. Es wird gezeigt, wie wichtig freie Medien aber vor allem auch ein kritischer Umgang mit diesen ist. Die Veröffentlichung […]

Force HTTPS for WordPress Installations

Just add this snippet to the beginning of your rewrite section of your .htaccess file to force HTTPS: # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On # FORCE HTTPS: RewriteCond %{HTTPS} !=on RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L] … </IfModule> # END WordPress As you can see, I placed it directly under “RewriteEngine On”. Or you can also […]