<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>

<channel>
	<title>PHP Script Sammlung</title>
	<atom:link href="http://php-script-sammlung.de/feed" rel="self" type="application/rss+xml" />
	<link>http://php-script-sammlung.de</link>
	<description>Ein neues WordPress-Weblog</description>
	<pubDate>Mon, 11 Apr 2011 16:53:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Subversion per SSH</title>
		<link>http://php-script-sammlung.de/subversion-per-ssh.html</link>
		<comments>http://php-script-sammlung.de/subversion-per-ssh.html#comments</comments>
		<pubDate>Mon, 11 Apr 2011 10:23:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Allgemeines]]></category>

		<guid isPermaLink="false">http://php-script-sammlung.de/?p=30</guid>
		<description><![CDATA[Auf dem Server

svnadmin create $HOME/svn/my-repo
Auf dem Client

svn checkout svn+ssh://username@example.com/path/to/svn/ .
svn Verzeichnisse löschen
find . -name ".svn" -exec rm -rf {} \;
]]></description>
			<content:encoded><![CDATA[<p><strong>Auf dem Server</strong></p>
<pre>
svnadmin create $HOME/svn/my-repo</pre>
<p><strong>Auf dem Client</strong></p>
<pre>
svn checkout svn+ssh://username@example.com/path/to/svn/ .</pre>
<p><strong>svn Verzeichnisse löschen</strong></p>
<pre>find . -name ".svn" -exec rm -rf {} \;</pre>
]]></content:encoded>
			<wfw:commentRss>http://php-script-sammlung.de/subversion-per-ssh.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>MySQL datenbank kopieren Shell Skript</title>
		<link>http://php-script-sammlung.de/mysql-datenbank-kopieren-shell-skript.html</link>
		<comments>http://php-script-sammlung.de/mysql-datenbank-kopieren-shell-skript.html#comments</comments>
		<pubDate>Thu, 28 May 2009 16:48:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Allgemeines]]></category>

		<guid isPermaLink="false">http://php-script-sammlung.de/?p=19</guid>
		<description><![CDATA[
mysqldump  --single-transaction --opt -uUSERNAME -pPASSWORT QUELLDATENBANK &#62; mysqldump.sql
mysql -hlocalhost -uUSERNAME -pPASSWORT ZIELDATENBANK  &#60; mysqldump.sql
rm mysqldump.sql

]]></description>
			<content:encoded><![CDATA[<p><code><br />
mysqldump  --single-transaction --opt -</code><code>uUSERNAME</code><code> -pPASSWORT QUELLDATENBANK &gt; mysqldump.sql<br />
mysql -hlocalhost -uUSERNAME -</code><code>pPASSWORT</code><code> ZIELDATENBANK  &lt; mysqldump.sql<br />
rm mysqldump.sql<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://php-script-sammlung.de/mysql-datenbank-kopieren-shell-skript.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>php galerie mit thumbnails für jpg Bilder in einem verzeichnis</title>
		<link>http://php-script-sammlung.de/php-galerie-mit-thumbnails-fur-jpg-bilder-in-einem-verzeichnis.html</link>
		<comments>http://php-script-sammlung.de/php-galerie-mit-thumbnails-fur-jpg-bilder-in-einem-verzeichnis.html#comments</comments>
		<pubDate>Thu, 28 May 2009 15:25:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Allgemeines]]></category>

		<guid isPermaLink="false">http://php-script-sammlung.de/?p=3</guid>
		<description><![CDATA[

&#60;?php
if ($handle = opendir('.'))  {
  while (false !== ($file = readdir($handle)))  {

        if (".jpg" == substr($file,-4,4)) {
                $thumbfile=$file.".thumb";
             [...]]]></description>
			<content:encoded><![CDATA[<pre style="font-size:12px;">

&#60;?php
if ($handle = opendir('.'))  {
  while (false !== ($file = readdir($handle)))  {

        if (".jpg" == substr($file,-4,4)) {
                $thumbfile=$file.".thumb";
                if (!is_file($thumbfile))  {

                list($width, $height) = getimagesize($file);
                $new_height = 100;
                $new_width = round($width*($new_height/$height));
                $source = imagecreatefromjpeg($file);
                $destination = imagecreate($new_width, $new_height);
                imagecopyresized($destination, $source, 0, 0, 0, 0,
 $new_width, $new_height, $width, $height);
                imagejpeg($destination, $thumbfile);
            }
            echo '&#60;a href="' . $file . '">&#60;img border=1 src="'.$thumbfile .
'" heigth="100" title="' . $file. '">&#60;/a>';
        }
    }

    closedir($handle);
}
?>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://php-script-sammlung.de/php-galerie-mit-thumbnails-fur-jpg-bilder-in-einem-verzeichnis.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>

