☠
✆ ✍
more fun http://www.code-knacker.de/webabkuerzungen.htm
use play on linux to install
if installed correctly but u cant play for $
dl the installer from .com
use play on linux to execute the correct pokerstarsinstall.exe in the created dir
enjoy
cut/paste the following into a terminal (as root)
/usr/bin/printf '*.=info;*.=notice;*.=warn;\\\n\tauth,authpriv.none;\\\n\tcron,daemon.none;\\\n\tmail,news.none -/var/log/messages\n' > /etc/rsyslog.d/99-fixlog.conf
this will create a file that will fix the bug in the /etc/rsyslog.d/ directory.
or
Instead of using the printf statement (got trouble copying carriage return chars from your example I simply created a file with the lines
210 realy nice & usefull icons: free for commercial use: http://icons.webtoolhub.com/icon-s1414-detail.aspx
Alle Drupal-Nachrichten-IDs ohne Übersetzung löschen:
delete locales_source from locales_source left join locales_target using (lid) where locales_target.lid is null;
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.