Beiträge von allucinox

    ok hier mal header.php

    <?php
    /* IMPORTANT! This code retrieves the custom logo options & dynamic styling */
    global $wpdb;
    $style = $wpdb->get_results("SELECT custom_logo,custom_logo_image,dynamic_style,title_style,description_style FROM ".$wpdb->prefix."photocrati_styles WHERE option_set = 1");
    foreach ($style as $style) {
    $custom_logo = $style->custom_logo;
    $custom_logo_image = $style->custom_logo_image;
    $dynamic_style = $style->dynamic_style;
    $title_style = $style->title_style;
    $description_style = $style->description_style;
    }
    $rcp = $wpdb->get_results("SELECT fs_rightclick FROM ".$wpdb->prefix."photocrati_gallery_settings WHERE id = 1");
    foreach ($rcp as $rcp) {
    $fs_rightclick = $rcp->fs_rightclick;
    }
    $music = $wpdb->get_results("SELECT music_blog,music_blog_auto,music_blog_file,music_blog_controls,music_cat,music_cat_auto,music_cat_file,music_cat_controls FROM ".$wpdb->prefix."photocrati_gallery_settings WHERE id = 1");
    foreach ($music as $music) {
    $music_blog = $music->music_blog;
    $music_blog_auto = $music->music_blog_auto;
    $music_blog_controls = $music->music_blog_controls;
    $music_blog_file = $music->music_blog_file;
    $music_cat = $music->music_cat;
    $music_cat_auto = $music->music_cat_auto;
    $music_cat_controls = $music->music_cat_controls;
    $music_cat_file = $music->music_cat_file;
    }
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
    <head profile="http://gmpg.org/xfn/11">
    <title><?php
    if ( is_single() ) { single_post_title(); }
    elseif ( is_home() || is_front_page() ) { bloginfo('name'); print ' | '; bloginfo('description'); get_page_number(); }
    elseif ( is_page() ) { single_post_title(''); }
    elseif ( is_search() ) { bloginfo('name'); print ' | Search results for ' . wp_specialchars($s); get_page_number(); }
    elseif ( is_404() ) { bloginfo('name'); print ' | Not Found'; }
    else { bloginfo('name'); wp_title('|'); get_page_number(); }
    ?></title>

    <meta http-equiv="content-type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />

    <?php
    if(strpos($title_style, 'G - ') === false) { } else {
    $gfont = str_replace(" ", "+", str_replace(", serif", "", str_replace("G - ", "", str_replace("'", "", str_replace("\'", "", $title_style)))));
    ?>
    <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=<?php echo $gfont; ?>">
    <?php } ?>

    <?php
    if(strpos($description_style, 'G - ') === false) { } else {
    $gfontd = str_replace(" ", "+", str_replace(", serif", "", str_replace("G - ", "", str_replace("\'", "", $description_style))));
    ?>
    <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=<?php echo $gfontd; ?>">
    <?php } ?>

    <!-- IMPORTANT! Do not remove this code. This is used for enabling & disabling the dynamic styling -->
    <?php if($dynamic_style == 'YES') { ?>

    <link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/styles/dynamic-style.php" />

    <?php } else { ?>

    <link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/styles/style.css" />

    <?php } ?>
    <!-- End dynamic styling -->

    <!--[if IE 8]>
    <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/styles/style-ie.css" type="text/css" />
    <![endif]-->

    <!--[if lt IE 8]>
    <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/styles/style-ie7.css" type="text/css" />
    <![endif]-->

    <link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/admin/css/jquery.lightbox-0.5.css" />

    <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>

    <?php
    if( !is_admin()){
    wp_deregister_script('jquery');
    wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"), false, '');
    wp_enqueue_script('jquery');
    }
    ?>

    <?php wp_head(); ?>

    <link rel="alternate" type="application/rss+xml" href="<?php bloginfo('rss2_url'); ?>" title="<?php printf( __( '%s latest posts', 'photocrati-framework' ), wp_specialchars( get_bloginfo('name'), 1 ) ); ?>" />
    <link rel="alternate" type="application/rss+xml" href="<?php bloginfo('comments_rss2_url') ?>" title="<?php printf( __( '%s latest comments', 'photocrati-framework' ), wp_specialchars( get_bloginfo('name'), 1 ) ); ?>" />
    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />

    <?php if($fs_rightclick == "ON") { ?>
    <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/scripts/clickprotect.js"></script>
    <?php } ?>

    <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/scripts/jquery.jplayer.min.js"></script>
    <link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/scripts/jplayer.style.css" />

    <?php if(is_single() || is_page()) { ?>

    <?php if(get_post_meta($post->ID, 'music', true) == "YES") { ?>

    <script type="text/javascript">
    jQuery.noConflict();
    jQuery(document).ready(function() {

    jQuery("#jquery_jplayer").jPlayer({
    ready: function () {
    <?php if(get_post_meta($post->ID, 'music_auto', true) == "YES") { ?>
    this.element.jPlayer("setFile", "<?php echo get_post_meta($post->ID, 'music_file', true); ?>").jPlayer("play");
    <?php } else { ?>
    this.element.jPlayer("setFile", "<?php echo get_post_meta($post->ID, 'music_file', true); ?>");
    <?php } ?>
    },
    oggSupport: false,
    preload: 'none',
    swfPath: "<?php echo get_bloginfo('template_directory'); ?>/scripts"
    })
    .jPlayer("onSoundComplete", function() {
    this.element.jPlayer("play");
    });

    });
    </script>

    <?php if(get_post_meta($post->ID, 'music_controls', true) == "NO") { ?>

    <style>
    .jp-single-player {
    display:none;
    }
    </style>

    <?php } ?>

    <?php } ?>

    <?php } ?>


    <?php if(is_category() || is_archive()) { ?>

    <?php if($music_cat == "ON") { ?>

    <script type="text/javascript">
    jQuery.noConflict();
    jQuery(document).ready(function() {

    jQuery("#jquery_jplayer").jPlayer({
    ready: function () {
    <?php if($music_cat_auto == "YES") { ?>
    this.element.jPlayer("setFile", "<?php echo $music_cat_file; ?>").jPlayer("play");
    <?php } else { ?>
    this.element.jPlayer("setFile", "<?php echo $music_cat_file; ?>");
    <?php } ?>
    },
    oggSupport: false,
    preload: 'none',
    swfPath: "<?php echo get_bloginfo('template_directory'); ?>/scripts"
    })
    .jPlayer("onSoundComplete", function() {
    this.element.jPlayer("play");
    });

    });
    </script>

    <?php if($music_cat_controls == "NO") { ?>

    <style>
    .jp-single-player {
    display:none;
    }
    </style>

    <?php } ?>

    <?php } ?>

    <?php } ?>


    </head>

    <body <?php body_class(); ?> id="themebody">

    <div id="main_container">

    <div id="header">
    <div id="masthead">

    <div id="branding">
    <div id="blog-title">
    <span>
    <a href="<?php bloginfo( 'url' ) ?>/" title="<?php bloginfo( 'name' ) ?>" rel="home">
    <?php if($custom_logo == 'custom') { ?>
    <img src="<?php bloginfo('template_directory'); ?>/images/uploads/<?php echo $custom_logo_image; ?>" border="0" alt="<?php bloginfo( 'name' ) ?>" />
    <?php } else if($custom_logo == 'default') { ?>
    <img src="<?php bloginfo('template_directory'); ?>/images/logo.png" border="0" alt="<?php bloginfo( 'name' ) ?>" />
    <?php } else { ?>
    <h1><?php bloginfo('name'); ?></h1>
    <div class="description"><?php bloginfo('description'); ?></div>
    <?php } ?>
    </a>
    </span>
    </div>
    </div><!-- #branding -->

    <div id="menu_wrapper">
    <?php if ( function_exists( wp_nav_menu ) ) { //Check if function exists for less than Wordpress 3.0 ?>
    <?php wp_nav_menu( array( 'container_class' => 'menu', 'menu_class' => '', 'theme_location' => 'primary' ) ); ?>
    <?php } else { ?>
    <?php wp_page_menu( 'sort_column=menu_order' ); ?>
    <?php } ?>
    </div><!-- #access -->

    </div><!-- #masthead -->
    </div><!-- #header -->

    <div id="wrapper" class="hfeed">

    <div id="main">

    jetzt hab ich heute einen update der photocrati-theme gemacht und schon haut es mir alles wieder nach unten. ich hab die obengenannten codes hinzugefügt aber die erscheinen immer noch zu tief.

    das mail sowie fb logo sollten neben 'blog' erscheinen....

    kann jemand weiterhelfen ?

    besten dank

    hi

    wir versuchen nun seit tagen auf unsere homepage, die zwei 'mail' sowie 'fb' buttons genau NEBEN 'Blog' zu stellen.

    photocrati (hersteller des designs) kann/will uns nicht weiterhelfen...er teilte uns mit, wir sollten es doch mit firebug etc ausprobieren....ja klar, wir blicken total durch....

    kann uns jemand weiterhelfen ? sind keine css profis...

    besten dank

    Hi

    ich hab folgendes Problem:

    auf unsere seite http://www.picturesque.ch

    erscheint das mail-logo sowie facebook-logo unter das erste bild. ich möchte allerdings beide logo's oben haben, dort wo die menu's sind (home, galleries etc)

    und wie kriege ich noch folgendes hin ? ich möchte unter blog auf der rechten seite eine sidebar haben...aber eben NUR unter BLOG...hab es probiert aber es erscheint alles auf allen seiten...

    besten dank für eure hilfe

    rechte für upload sind auf 777 gestellt...

    webspace zu genüge frei...hab noch nichts drauf...

    error log auszug:

    [Tue Oct 26 00:03:25 2010] [crit] [client ] (13)Permission denied: /srv/www/vhosts/picturesque.ch/httpdocs/wp-content/themes/photocrati-theme/galleries/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable, referer: http://picturesque.ch/wp-content/the…ad.php?post=23&
    [Tue Oct 26 00:06:33 2010] [error] [client ] File does not exist: /srv/www/vhosts/picturesque.ch/httpdocs/favicon.ico

    Hi

    Ich hab seit gestern bei mir das Photocrati Theme installieren.

    Die Installation etc lief gut...da wollte ich doch die ersten Bilder hochladen, und siehe da, nix....

    Photocrati hat sobald man einen neuen Artikel erstellt die Funktion 'New Photocrati Gallery' auf der oberen Liste...gut, darauf geklickt, danach 'Add Image', auch gut....Bilder hochladen..und siehe da, anstatt Thumbnails beim Hochladen sehe ich nur so abgebrochene kleine Seiten...ok dachte ich mir, alles deinstallieren (inkl Wordpress) und alles wieder neu installieren...NIX...geht gar nichts. Hab im Forum vom Photocrati-Hersteller gepostet, auch hier nix keine Hilfe...entweder verstehen die mich nicht oder ich bin zu dumm.

    Jetzt wollte ich mal versuchen, ein Bild normal im Artikel einzufügen mittels 'Add an Image' und hier eine Fehlermeldung:

    “IMG_1014.jpg” konnte wegen eines Fehlers nicht hochgeladen werden
    Die hochgeladene Datei konnte nicht nach /srv/www/vhosts/picturesque.ch/httpdocs/wp-content/uploads verschoben werden.

    Hab vorhin noch den WP Security Scanner installiert....es scheint alles auf grün zu sein, ausser .htaccess ist auf .0. anstatt 644....kann es wohl an dieser Datei liegen ?

    Hab einen Mac und Filezilla sowie Cyberduck installiert...aber die .htaccess Datei sehe ich nicht...

    Ihr seid meine letzte Hoffnung, bevor ich alles 'over the Jordan' schiesse :-)

    Gruss

    hi

    ich hab mir vor kurzem den autofocus pro theme gekauft und auch installiert. nun stören mich ein paar sachen und da ich noch kein grosser experte bin, frage ich deshalb euch.
    (betrifft alles die page: http://www.picturesque.ch)

    - wie kriege ich den 'Home' Button in dieselbe schrift wie die anderen buttons (gallery, kontakt etc)?

    sobald ihr auf ein bild klickt, erscheint es ja auf der nächsten seite. dort möchte ich zwei sachen ändern lassen und zwar

    - sobald ihr über das bild fährt, sieht ihr den copyright text. den möchte ich nicht dort oben haben (ist auch unleserlich) sondern im unteren bereich des fotos.

    - unten rechts erscheint: filed unter allgemein / bookmark the permalink
    wie kann ich das entfernen ?

    die bilder auf der startseite kriege ich auch nicht so hin, wie auf der demo des herstellers....

    besten dank für eure hilfe

    ja.....ich auch. ist nicht das erste mal dass ich wordpress installiere.
    hab jetzt alles mittels host-provider gelöscht und schiebe via ftp gerade die heruntergeladenen dateien (deutsch) neu drauf....mal schauen....mein provider installiert standardmässig die version 2.3.x drauf.....evtl. liegt es an dem ?

    so sieht ja der code aus (plugin):


    <?php

    /*
    Plugin Name: Visitor Counter Widget
    Plugin URI: Lumières dans la nuit » Wordpress-Widget: Besucherzähler
    Description: A simple visitor counter for WordPress. It is a simple widget I missed in the plugin databases.
    Author: Elias Schwerdtfeger
    Version: 1.1
    Author URI: Lumières dans la nuit
    */


    /*
    ** Copyright 2007 Elias Schwerdtfeger Lumières dans la nuit
    **
    ** This program is free software; you can redistribute it and/or modify
    ** it under the terms of the GNU General Public License as published by
    ** the Free Software Foundation; either version 2 of the License, or
    ** (at your option) any later version.
    **
    ** This program is distributed in the hope that it will be useful,
    ** but WITHOUT ANY WARRANTY; without even the implied warranty of
    ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    ** GNU General Public License for more details.
    **
    ** You should have received a copy of the GNU General Public License
    ** along with this program; if not, write to the Free Software
    ** Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
    */


    load_plugin_textdomain('visitorcounter', 'wp-content/plugins/visitorcounter');


    if(!function_exists('get_ipaddress')) {
    function get_ipaddress() {
    if (empty($_SERVER["HTTP_X_FORWARDED_FOR"])) {
    $ip_address = $_SERVER["REMOTE_ADDR"];
    } else {
    $ip_address = $_SERVER["HTTP_X_FORWARDED_FOR"];
    }
    if(strpos($ip_address, ',') !== false) {
    $ip_address = explode(',', $ip_address);
    $ip_address = $ip_address[0];
    }
    return $ip_address;
    }
    }


    function wpvc_remove_oldentries ($var)
    {
    global $wpvc_global_keepfrom;
    return $var > $wpvc_global_keepfrom;
    }


    function wpvc_count ($p_keepfor)
    {
    global $wpvc_global_keepfrom;
    $now_ip = get_ipaddress ();
    $now_time = time ();
    $keepfor = $p_keepfor ? $p_keepfor : get_option ('visitorcounter_keepfor');
    $count = get_option ('visitorcounter_count');
    $array = get_option ('visitorcounter_blocked');
    if ($count == FALSE)
    {
    $count = 0;
    }
    if ($keepfor == FALSE)
    {
    $keepfor = 10 * 60;
    }
    if ($array == FALSE)
    {
    $array = array ();
    }
    $wpvc_global_keepfrom = $now_time - $keepfor;
    $array = array_filter ($array, 'wpvc_remove_oldentries');
    if (!array_key_exists ($now_ip, $array))
    {
    $count++;
    update_option ('visitorcounter_count', $count);
    $array[$now_ip] = $now_time;
    update_option ('visitorcounter_blocked', $array);
    }
    return $count;
    }


    function wpvc_sidebar_count ($title = FALSE, $before = FALSE, $after = FALSE, $showtitle = FALSE, $listitem = FALSE, $keepfor = 600)
    {
    $count = wpvc_count ($keepfor);
    if (!$title)
    {
    $title = __('Counter', 'visitorcounter');
    }
    if (!$after)
    {
    $after = __('Visitors', 'visitorcounter');
    }
    echo '<li>';
    if ($showtitle)
    {
    echo '<h2>' . stripslashes($title) . "</h2>\n";
    }
    echo $listitem ? '<ul><li>' : '<p>';
    if ($before)
    {
    echo stripslashes($before) . ' ';
    }
    echo "<span class=\"visitorcount\">$count</span>";
    if ($after)
    {
    echo ' ' . stripslashes($after);
    }
    echo $listitem ? '</li></ul>' : '</p>';
    echo "</li>\n";
    }


    function wpvc_sidebar_widget ()
    {
    $opt = get_option ('visitorcounter_widget_options');
    wpvc_sidebar_count ($opt['title'], $opt['before'], $opt['after'], $opt['showtitle'], $opt['listitem']);
    }


    function wpvc_widget_options ()
    {
    $opt = get_option ('visitorcounter_widget_options');
    $cnt = get_option ('visitorcounter_count');
    $kf = get_option ('visitorcounter_keepfor');
    if (!is_array ($opt))
    {
    $opt = array (
    'title' => __('Counter', 'visitorcounter'),
    'before' => '',
    'after' => __('Visitors', 'visitorcounter'),
    'showtitle' => 1,
    'listitem' => 0
    );
    }
    if (!$cnt)
    {
    $cnt = 0;
    }
    if (!kf)
    {
    $kf = 600;
    }
    if ($_POST['visitorcounter_submit'])
    {
    $opt['title'] = $_POST['visitorcounter_title'];
    $opt['before'] = $_POST['visitorcounter_before'];
    $opt['after'] = $_POST['visitorcounter_after'];
    $opt['showtitle'] = $_POST['visitorcounter_showtitle'];
    $opt['listitem'] = $_POST['visitorcounter_listitem'];
    $cnt = intval ($_POST['visitorcounter_count']);
    $kf = intval ($_POST['visitorcounter_keepfor']);
    update_option ('visitorcounter_widget_options', $opt);
    if ($cnt > 0 && $cnt != $_POST['visitorcounter_oldcount'])
    {
    update_option ('visitorcounter_count', $cnt);
    }
    update_option ('visitorcounter_keepfor', $kf);
    }
    ?>
    <p style="text-align:left">
    <label
    for="visitorcounter_title"
    title="<?php _e('This text will appear as widget title in the sidebar, if you activate the option for displaying the title.', 'visitorcounter'); ?>"
    ><?php _e('Widget Title:', 'visitorcounter'); ?></label><br />
    <input
    style="width:100%"
    type="text"
    id="visitorcounter_title"
    name="visitorcounter_title"
    value="<?php echo htmlspecialchars (stripslashes ($opt['title'])); ?>"
    title="<?php _e('This text will appear as widget title in the sidebar, if you activate the option for displaying the title.', 'visitorcounter'); ?>"
    />
    </p>
    <p style="text-align:left">
    <label
    for="visitorcounter_before"
    title="<?php _e('This text will appear before the number of visitors', 'visitorcounter'); ?>"
    ><?php _e('Text before the count (with HTML markup):', 'visitorcounter'); ?></label><br />
    <input
    style="width:100%"
    type="text"
    id="visitorcounter_before"
    name="visitorcounter_before"
    value="<?php echo htmlspecialchars (stripslashes ($opt['before'])); ?>"
    title="<?php _e('This text will appear before the number of visitors', 'visitorcounter'); ?>"
    />
    </p>
    <p style="text-align:left">
    <label
    for="visitorcounter_after"
    title="<?php _e('This text will appear after the number of visitors', 'visitorcounter'); ?>"
    ><?php _e('Text after the count (with HTML markup):', 'visitorcounter'); ?></label><br />
    <input
    style="width:100%"
    type="text"
    id="visitorcounter_after"
    name="visitorcounter_after"
    value="<?php echo htmlspecialchars (stripslashes ($opt['after'])); ?>"
    title="<?php _e('This text will appear after the number of visitors', 'visitorcounter'); ?>"
    />
    </p>
    <p style="text-align:left">
    <label
    for="visitorcounter_keepfor"
    title="<?php _e('For this number of seconds a visitor\'s IP address will be blocked for counting again', 'visitorcounter'); ?>"
    ><?php _e('Seconds to block counting the IP again:', 'visitorcounter'); ?></label><br />
    <input
    style="width:100%"
    type="text"
    id="visitorcounter_keepfor"
    name="visitorcounter_keepfor"
    value="<?php echo $kf; ?>"
    title="<?php _e('For this number of seconds a visitor\'s IP address will be blocked for counting again', 'visitorcounter'); ?>"
    />
    </p>
    <p style="text-align:left">
    <label
    for="visitorcounter_count"
    title="<?php _e('This is the actual number of visitors, you can edit it to let your site look more popular than it is', 'visitorcounter'); ?>"
    ><?php _e('Edit counter value:', 'visitorcounter'); ?></label><br />
    <input
    style="width:100%"
    type="text"
    id="visitorcounter_count"
    name="visitorcounter_count"
    value="<?php echo $cnt; ?>"
    title="<?php _e('This is the actual number of visitors, you can edit it to let your site look more popular than it is', 'visitorcounter'); ?>"
    />
    </p>
    <p style="text-align:left">
    <input
    type="checkbox"
    id="visitorcounter_showtitle"
    name="visitorcounter_showtitle"
    <?php if($opt['showtitle']) { ?>checked="checked"<?php } ?>
    title="<?php _e('If you check this box, the title of the widget will be displayed in the sidebar', 'visitorcounter'); ?>"
    />
    <label
    for="visitorcounter_showtitle"
    title="<?php _e('If you check this box, the title of the widget will be displayed in the sidebar', 'visitorcounter'); ?>"
    ><?php _e('Show the widget\'s title', 'visitorcounter'); ?></label>
    </p>
    <p style="text-align:left">
    <input
    type="checkbox"
    id="visitorcounter_listitem"
    name="visitorcounter_listitem"
    <?php if($opt['listitem']) { ?>checked="checked"<?php } ?>
    title="<?php _e('If you check this box, the display will be shown in a HTML list, which is the standard in many themes. Checking this can make the widget\'s appearence more consistent in your theme.', 'visitorcounter'); ?>"
    />
    <label
    for="visitorcounter_listitem"
    title="<?php _e('If you check this box, the display will be shown in a HTML list, which is the standard in many themes. Checking this can make the widget\'s appearence more consistent in your theme.', 'visitorcounter'); ?>"
    ><?php _e('Display as a list item', 'visitorcounter'); ?></label>
    </p>
    <p style="text-align:left; font-size:85%;">
    <?php _e("This <b>visitor counter</b> widget was developed for you by <a href=\"http://www.tamagothi.de%5c">Elias Schwerdtfeger</a>. If you like it, please make a little donation in my blog.", 'visitorcounter'); ?>
    </p>
    <input type="hidden" id="visitorcounter_submit" name="visitorcounter_submit" value="1" />
    <input type="hidden" id="visitorcounter_oldcount" name="visitorcounter_oldcount" value="<?php echo $cnt; ?>" />
    <?php
    }


    function wpvc_add_widget ()
    {
    if (function_exists ('register_sidebar_widget'))
    {
    register_sidebar_widget (__('Visitor Counter', 'visitorcounter'), 'wpvc_sidebar_widget');
    register_widget_control (__('Visitor Counter', 'visitorcounter'), 'wpvc_widget_options', 300, 440);
    }
    }


    add_action ('init', 'wpvc_add_widget');


    /*
    ** It must be a starving man
    ** Who likes to hear
    ** These crippled minds talk...
    ** Greetings from me
    ** Following the wind.
    **
    ** Wolfsheim, Elias
    */

    ?>