"...what is good or what is bad. Only your personal point of view makes the decison. So never forget to ask yourself if an alien would go the same way..."
TSE the founder of IWS
Art is Design made by feelings
web is made for information
webdesign gives the web feelings
skill &knowledge is nothing
without inspiration
Auf die schnelle viele Datenbankwerte ändern ohne sich totzuklicken ;)
UPDATE tablename SET tablefield = replace(tablefield, "findstring", "replacestring");
Eintrag in htaccess
RewriteEngine On
RewriteRule ^(.*)(ä|Ä|ä|Ä)(.*) /$1ae$3 [L,R=301]
RewriteRule ^(.*)(ö|Ö|ö|Ö)(.*) /$1oe$3 [L,R=301]
RewriteRule ^(.*)(ü|ý|ü|Ü)(.*) /$1ue$3 [L,R=301]
RewriteRule ^(.*)(ß|ß)(.*) /$1ss$3 [L,R=301]
Alle Umlaute (Ä,Ö,Ü) und ß werden so mit dem Status 301: Moved Permanently umgeleitet.
Dateiattribute, File permission für Drupal
1. [@ ROOT] DRUPAL CORE PLUS OUR ADDED MODULES & THEMES
2. [@ /SITES] DRUPAL SETTINGS
Doppelte Systemmenüeinträge die man nicht normal übers den admin Bereich löschen kann (zuerst versuchen diese zurückzusetzen und dann zu löschen) können einfach und effektiv via phpmyadmin gelöscht werden:
DELETE FROM `menu_links` WHERE `menu_links`.`module` = 'admin_menu'
DELETE FROM `menu_links` WHERE `menu_links`.`module` = 'system'
Danach einfach admin/build/modules aufrufen.
Upgrade Thunderbird automatically:
Simply add
ppa:mozillateam/thunderbird-stable
to your packetsources
Ubuntu 10.04/10.10/11.04 user can install or upgrade from thunderbird-stable ppa
sudo apt-add-repository ppa:mozillateam/thunderbird-stable
sudo apt-get update
sudo apt-get install thunderbird
drupal_set_message('<pre>$item:' . var_export($item, TRUE) .'</pre>');
drupal_set_message('<pre>$attributes:' . var_export(uc_product_get_attributes($item->nid), TRUE) .'</pre>');
drupal_set_message('<pre>Color=[Paketgroesse]</pre>');
Valide Scrollbalken erzwingen:
nicht Valid: Die Eigenschaft overflow-y existiert nicht in CSS level 2.1, aber in : scroll scroll
body { overflow-y:scroll; }
gleicher Effekt aber Valid:
html {height: 100.3%; margin-bottom: 1px;}
Logo Effekte, Text Design. Super Sammlung von Tutorials
http://creativefan.com/the-top-30-text-effect-tutorials-for-awesome-resu...
"...what is good or what is bad. Only your personal point of view makes the decison. So never forget to ask yourself if an alien would go the same way..."
TSE the founder of IWS