Banner - Blog zu den Themen Programmierung, SEO, SEM, Social Media, Internet Marketing, Webdesign, IT-Service und Mehr - SEO Hannover - IT-Dienstleistungen und SEO Agentur Fly2Mars-Media.de

Archiv

Archiv für die Kategorie ‘Server’

Overview: svn status codes / svn stat

Overview about svn status codes (after typing of svn stat):

Name

svn status — Print the status of working copy files and directories.

Synopsis

svn status [PATH...]

Description

Print the status of working copy files and directories. With no arguments, it prints only locally modified items (no repository access). With --show-updates, add working revision and server out-of-date information. With --verbose, print full revision information on every item.

The first five columns in the output are each one character wide, and each column gives you information about different aspects of each working copy item.

The first column indicates that an item was added, deleted, or otherwise changed.

‘ ‘
No modifications.

‘A’
Item is scheduled for Addition.

‘D’
Item is scheduled for Deletion.

‘M’
Item has been modified.

‘C’
Item is in conflict with updates received from the repository.

‘X’
Item is related to an externals definition.

‘I’
Item is being ignored (e.g. with the svn:ignore property).

‘?’
Item is not under version control.

‘!’
Item is missing (e.g. you moved or deleted it without using svn). This also indicates that a directory is incomplete (a checkout or update was interrupted).

‘~’
Item is versioned as a directory, but has been replaced by a file, or vice versa.

The second column tells the status of a file’s or directory’s properties.

‘ ‘
No modifications.

‘M’
Properties for this item have been modified.

‘C’
Properties for this item are in conflict with property updates received from the repository.

The third column is populated only if the working copy directory is locked.

‘ ‘
Item is not locked.

‘L’
Item is locked.

The fourth column is populated only if the item is scheduled for addition-with-history.

‘ ‘
No history scheduled with commit.

‘+’
History scheduled with commit.

The fifth column is populated only if the item is switched relative to its parent (see the section called “Switching a Working Copy”).

‘ ‘
Item is a child of its parent directory.

‘S’
Item is switched.

The out-of-date information appears in the eighth column (only if you pass the --show-updates switch).

‘ ‘
The item in your working copy is up-to-date.

‘*’
A newer revision of the item exists on the server.

The remaining fields are variable width and delimited by spaces. The working revision is the next field if the --show-updates or --verbose switches are passed.

If the --verbose switch is passed, the last committed revision and last committed author are displayed next.

The working copy path is always the final field, so it can include spaces.

Alternate Names

stat, st

GD Star Rating
loading...
GD Star Rating
loading...
KategorienServer Tags: ,

Hamster: kleiner kostenloser News- und Mail-Server mit IMAP-Unterstützung für Windows

Ihr benötigt ein kleinen News- und Mail-Server (inkl. IMAP-Unterstützung) welcher zu gleich auch noch unter Windows (Windos XP, Vista, Windows 7, etc.) läuft?

Dann ist der kostenlose OpenSource Mail-Server Hamster eure Wahl, zu laden unter:

http://www.arcorhome.de/newshamster/tgl/misc/hamster_de.html

GD Star Rating
loading...
GD Star Rating
loading...

SEO: Non-defensive URL construction – no duplicate content – regex

Um zu verhindern dass durch verschiedene Schreibweisen von URLs duplicate content entsteht,  ist es ratsam einheitliche URLs zu erzeugen (z.B. nur die kleinschreibweise zu akzeptieren).

Aus gründen der besseren Benutzbarkeit (usability) ist es natürlich von Vorteil auch verschiedene Schreibweisen der URL zu berücksichtigen, im Detail:

http://www.fly2mars-media.de/seoblog/

sollte genauso berücksichtigt werden wie

http://www.Fly2Mars-Media.de/SeoBlog/

allerdings soll für Google nur eine Schreibweise verwendet werden, da sonst ggf. ein duplicate content problem entsteht.

Die Lösung ist ein rewrite der URL über mod_rewrite, hier die Lösung:

RewriteEngine On
 # lowercase request_uri and redirect 301
 RewriteMap  lc int:tolower
 RewriteCond %{REQUEST_URI} [A-Z]
 RewriteRule (.*) ${lc:$1} [R=301,L]

Beachtet auch diesen Tipp: Apache: RewriteMap not allowed here Problem

Möchtet ihr bestimmte Ordner ausschließen, so könnt ihr dies z.b. für die Ordner tmp und cache wie folgt:

RewriteCond %{REQUEST_URI} !^/(tmp|cache)
GD Star Rating
loading...
GD Star Rating
loading...

Apache: RewriteMap not allowed here

Wenn ihr vom Apache die Fehlermeldung “RewriteMap not allowed here” bekommt, dann solltet ihr die RewriteMap nicht in die .htaccess anlegen. Selbst bei AllowOveride All dies nicht in der .htaccess möglich.

Um das Problem zu lösen, müsst ihr die Rewrite-Anweisungen in die vhost.conf (bzw. dort wo ihr euren vhost definiert habt) schreiben.

GD Star Rating
loading...
GD Star Rating
loading...

SSL Zertifikate selber erstellen – SSL Zertifikat unter Windows erstellen

2. Dezember 2010 2 Kommentare

Ihr möchtet unter Windows Euer eigenes SSL Zertifikat erstellen? Zum Beispiel um die Verbindung seines FTP oder Webservers zu verschlüsseln.

Mit der Hilfe von FileZilla FTP Server ist dies mit wenigen klicks unter Windows möglich.

Nach der Installation zuerst die FileZilla Server.exe starten. Danach die FileZilla Server Interface.exe, klickt dort in dem kleinen Fenster auf ok, ohne weitere Werte einzugeben und ihr landet im Hauptfenster der Serverkonfiguration. Jetzt ein Klick auf Edit, dann auf Settings.

Unter SSL/TLS Settings verbirgt sich der Generate new certificate Button.
Das Zertifikat läßt sich zum Beispiel auch für den ZendServer oder Xampp (Apache-Webserver für Windows) verwenden.

Kopiert die erzeugte crt-datei in das apache ssl.crt-Verzeichnis, z.B.:
C:\programme\apache\conf\ssl.crt\server.crt

Dass selbe mit dem server.key, z.B.:
C:\programme\apache\conf\ssl.key\server.key, dort muß der Inhalt der eigenen .pvk Datei reinkopiert werden.

Ein Server.key könnt ihr auch mit dem folgenden Befehl erstellen (setzt installierten openssl voraus) :
openssl.exe genrsa -des3 -out server.key 1024

http://filezilla.sourceforge.net/

GD Star Rating
loading...
GD Star Rating
loading...