How to ignore files in a directory under subversion control

26. Mai 2011 at 16:45
# ---------------------------------------------------------------------
#      Ignore all the .txt files in the /trunk/Blah/ directory
# ---------------------------------------------------------------------
# Go to the directory
cd trunk/Blah/              # The directory with the files
# Start editing the properties for the current directory
svn propedit svn:ignore .   # Opens an editor (SVN_EDITOR, EDITOR)
# Add the following value with a new line, save, and exit:
*.txt
# See that things worked
svn propget svn:ignore .    # So you can see the properties
svn status --no-ignore      # You should see an 'I' next to the ignored files
# Commit
svn commit -m "New Ignores" # You must commit the new property change

Zendstudio Update auf 8.0.1

24. Mai 2011 at 11:11

Es gibt ein neues ZendStudio Update auf version 8.0.1, folgende wichtige Änderungen gab es:

[fixed] In large PHP files (over 2000 lines) code parsing was very slow.
[fixed] Built-In PHP executables crashed on Warning or Error during local run/debug.
[fixed] JavaScript Validator threw Java Null Pointer Exception.
[fixed] Error „Unsupported Content Type“ occurred when opening a PHP file from the SVN Repositories or CVS Repositories view.
[fixed] Using the keyboard shortcut Toggle Breakpoint (Ctrl+Shift+B) resulted in a breakpoint of a wrong type (JS instead of PHP). NB: the fix will work only after workspace reset.
[fixed] Hyperlinks in tooltips were not working.
[fixed] Code Formatter used to remove the leading backslash in namespaced paths.
[fixed] When opening the Project Properties through the main menu (Project | Properties) the Remote Server Support page was not available.
[fixed] Refactor/Rename keyboard shortcut (Shift+Alt+R) was not working due to a conflict.

[improvement] Remote Server Support does not perform full re-scan of the remote resources, unless necessary.
[improvement] The Remote Search page has been removed from the Search dialog, because this functionality does not exist.
[improvement] Added keyboard shortcuts for file upload/download in Remote Server Support (Shift+Alt+P,U and Shift+Alt+P,D).
[improvement] PHP 5.3 is the new workspace default.

[update] Zend Framework Example Project (Guestbook) has been updated to the latest version from the Zend Framework project site.

Sollte bei euch nicht der Auto-Update anspringen, geht wie folgt vor:

  1. Go to Help | Install New Software
  2. Set Work With field to: http://zend.com/studio/8.0.1/update and hit enter
  3. Hit Select All, click Next and follow the instructions

Aktualisiertes jQuery Visual Cheat Sheet v1.6

20. Mai 2011 at 21:18

Antonio Lupetti hat sein jQuery Visual Cheat Sheet auf die Version 1.6 aktualisiert. Das aktualisierte Cheat Sheet beinhaltet alle Funktionen und Ausdrücke, die in der jQuery 1.6 API verfügbar sind.

Download:  PDF-Dokument (auch für das iPad optimiert)
Download: Scribd Version

SEMSEO Konferenz am 27.05.2011 im Congress Centrum in Hannover

20. Mai 2011 at 20:55

Am 27. Mai 2011 findet im Congress Centrum in Hannover die mittlerweile fünfte SEMSEO Fachkonferenz für Suchmaschinenoptimierung, Suchmaschinenmarketing und Social-Media-Marketing statt. Die Veranstaltung richtet sich an alle SEOs, Webmaster, oder sonstige Fachleute aus den Bereichen Suchmaschinenoptimierung, Web-Marketing, Web-Werbung, Social-Media oder E-Commerce. Die international ausgerichtete Veranstaltung bietet eine Basis zum Austausch unter Profis, hinzu werden dreißig Sprecher, unter anderem Vanessa Fox, Macherin der Google Webmaster Tools, auf der SEMSEO erwartet.

Auch ich (Daniel) bin mit dabei und freue mich darauf alte und neue Bekanntschaften zu treffen. Natürlich werdet ihr hier im Blog eine kurze Zusammenfassung als Bestof finden, sowie live Infos über Twitter & Facebook.

Die Themen der SEMSEO sind unter anderem:

  • Inhouse SEO vs. Agency SEO
  • SEO Trends
  • SEM advanced
  • Global Search & International Linkbuilding
  • Global In-house SEO Challenges
  • Conversion Rate Optimierung
  • SEO Tools
  • Universal Search: Local, News & Images
  • Mobile SEO
  • Build, Seed & Rank – SEO & Social Media
  • Linkbaiting
  • SEO-Klinik
  • Ask the experts

Magento – add produkt about remote URL in cart – Magento HowTo

18. Mai 2011 at 14:39

With this url structure you can add simply products to your cart in Magento:

http://www.yourdomain.com/checkout/cart/add?product=[id]&qty=[qty]

The [id] is the Magento ID of the product and [qty] is the Quantity of the product you wish to add.

Add a simple product with custom options to your cart in Magento:

http://www.yourdomain.com/checkout/cart/add?product=[id]&qty=[qty]&options[id]=[value]

The [id] is the Magento ID of the product and [qty] is the Quantity of the product you wish to add and the options[id]=[value] select your option of this product (color, size, etc.).

Magento Online Doku / Documentation

18. Mai 2011 at 14:33

Eine strukturierte Online Doku inkl. Datenstruktur, Klassenhierarchie, etc. findet ihr unter folgendem Link:

docs.databyte.at/magento/community/1.5/

Submit a sitemap to bing

5. Mai 2011 at 14:14

You can submit a sitemap.xml to bing about this link:

http://www.bing.com/webmaster/ping.aspx?siteMap=http://www.fly2mars-media.de/seoblog/sitemap.xml

Public Key aus Private-Keyfile auslesen (RSA) mit Hilfe von openssl

4. Mai 2011 at 13:42

Mit dem folgenden Befehl könnt ihr mit Hilfe von openssl den public-key aus der private key file auslesen:

openssl rsa -inform PEM -in PRIVAT_KEYFILE.pem -outform PEM -pubout -out PUBLIC_KEYFILE.pem