Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - kubiczek

Pages: 1 ... 5 6 7 8 [9] 10 11 12 13
121





Hi Kurman,

look again in the rating mod...
your style.css is wrong

replace:
Code: [Select]
   cursor: hand;with:
Code: [Select]
   cursor: pointer;

and close  :wink:
Code: [Select]
.ratemod10hover, .ratemodg {

Kurt


Hallo,

leider finde ich nichts in meiner Style.css

und sobald ich ein Thumb anklicke zählt er es 2 Mal

weis jemand ein rat?

122
Nachdem ich nichts passendes gefunden habe, habe ich mir was selber gestrick.

mit der "Like it"  orginall funktion von facebook war nur die statische übermitlung einer adresse möglich sehe http://developers.facebook.com/docs/reference/plugins/like

mit
Code: [Select]
http://" . $_SERVER['HTTP_HOST']  . $_SERVER['REQUEST_URI'];?> ist es möglich dynamische adressen zu übermitteln

Demo: http://www.grosspeterwitz.org/gp/details.php?image_id=4955&l=deutsch


zuerst muss eine App ID beantragt werden  unter  http://developers.facebook.com/setup/

dann

in details.html

finde {header}

darunter einfügen

Code: [Select]
<div id="fb-root"></div>
    <script>
      window.fbAsyncInit = function() {
        FB.init({appId: 'deine ID App', status: true, cookie: true,
                 xfbml: true});
      };
      (function() {
        var e = document.createElement('script');
        e.type = 'text/javascript';
        e.src = document.location.protocol +
          '//connect.facebook.net/de_DE/all.js';
        e.async = true;
        document.getElementById('fb-root').appendChild(e);
      }());
    </script>


und an passender stelle in details.html

Code: [Select]
<fb:like href="<?php echo "http://" $_SERVER['HTTP_HOST']  . $_SERVER['REQUEST_URI'];?>" layout="standard" show_faces="true" width="200" action="recommend" colorscheme="like" />
einfügen


ich hoff ich konnte diesmal den anderen weiterhelfen, da sonst ich immer nur hilfe in anspruch nehme.

123
Hallo Batu544

Work fine, Thanks.


top window 
Quote
s1.addVariable("linktarget","_top ");



124
hallo Batu544

look down http://www.grosspeterwitz.org/gp/index.php

by klick on random  not follow to details site.





125
Hallo,

bei mir gehr die weiterleitung  zum details.php nicht, weiss jemand ein rat?

hier der auszug aus xml.php

Quote
while ($row = $site_db->fetch_array($result)){
  $image_id = $row['image_id'];
  $cat_id = $row['cat_id'];
  $image_name = $row['image_name'];
  $thumb_src = (is_remote($row['image_thumb_file'])) ? $row['image_thumb_file'] : MEDIA_DIR."/".$cat_id."/".$row['image_thumb_file'];
  echo "      <track>\n";
  echo "      <title>$image_name</title>\n";
  echo "      <creator>www.grosspeterwitz.org/gp</creator>\n";
  echo "      <location>http://www.grosspeterwitz.org/gp/$thumb_src</location>\n";
  echo "      <info>http://www.grosspeterwitz.org/gp/details.php?image_id=$image_id</info>\n";
  echo "      </track>\n\n\n";
}
echo "   </trackList>\n";
echo "</playlist>\n";

126
Das problem habe ich auch, es werden einfach keine minibilder angezeigt im facebook profil
http://grosspeterwitz.org/gp/details.php?image_id=3149&l=deutsch

127
Funktioniert perfekt

nur die Minibilder Thumbnails werden bei mir nicht angezeigt im Facebook Profil.
http://grosspeterwitz.org/gp/details.php?image_id=3149&l=deutsch

weiss jemand ein rat.


128
Mods & Plugins (Releases & Support) / Re: [MOD]AutoComplete
« on: February 03, 2010, 06:23:46 PM »
habe es auf 3 , 4 und 5 geändert,  aber das selbe kommt dabei raus.   immer zwischen 24kb und 71kb

 :( :( :( :( :( :(egal das leben geht weiter

129
Mods & Plugins (Releases & Support) / Re: [MOD]AutoComplete
« on: February 02, 2010, 08:26:47 PM »
hi   eingebaut in 1.7.4   und in 1.7.6

jeweils der folgende fehler

Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 19 bytes) in ****************/gp/includes/db_mysql.php on line 92


130
Mods & Plugins (Releases & Support) / Re: [MOD]More Pictures on Detail Page
« on: February 02, 2010, 12:27:25 PM »
hallo,

ich habe ein frage zum  " Member Addon"

wenn ich ein bild als "normaler User" bearbeite,  füge ich eine "neue Bild Gruppe" hinzu zb.106
und dann Gruppenbild auf "JA"    aber es erscheindt nichts in der kategorie als Hauptbild.

auch bei meinen anderen schon vorher im admin menü  zusamengestellten bildern   erscheind nichts in den Kategorien. (sehe bild unten )

Habe schon herausgefunden, das das UPDATE    aus der install_group_images_member.php alles auf null setzt     

 
habe bis jetzt es so eingestellt

Bild 1     Bild Gruppe 105       Gruppenbild 105

Bild 2     Bild Gruppe 105       Gruppenblid  0


was mache ich falsch?

131
Hallo ich habe aus dem Quelltext den Scriptteil    jetzt in meine gm-gp.js eingebaut,

die "More" Schaltfläche  ist jetzt sichtbar, aber ohne funktion.

sehe http://grosspeterwitz.org/gp/index.php?template=google-photo-map-gp&l=deutsch

das ist meine gm-gp.js

r
Code: [Select]
//<![CDATA[

var tinyIcon = new GIcon();
tinyIcon.image = "http://labs.google.com/ridefinder/images/mm_20_blue.png";
tinyIcon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
tinyIcon.iconSize = new GSize(12, 20);
tinyIcon.shadowSize = new GSize(22, 20);
tinyIcon.iconAnchor = new GPoint(6, 20);
tinyIcon.infoWindowAnchor = new GPoint(5, 1);

// Set up our GMarkerOptions object literal
markerOptions = { icon:tinyIcon };

    function load() {
      
if (GBrowserIsCompatible()) {

    // ==== The "More..." control simply accepts a mouseover to reveal the "Layer" control ===

      function MoreControl() {}
      MoreControl.prototype = new GControl();

      MoreControl.prototype.initialize = function(map) {
        var container = document.createElement("div");
        container.style.border = "2px solid black";
        container.style.fontSize = "12px";
        container.style.fontFamily = "Arial, sans-serif";
        container.style.width="80px";
        container.style.backgroundColor = "#ffffff";
        container.style.textAlign = "center";
        container.innerHTML = "More...";
      
        map.getContainer().appendChild(container);
        
        GEvent.addDomListener(container, "mouseover", function() {
          map.addControl(layerControl);
        });
        
        
        return container;
      }
      
      MoreControl.prototype.getDefaultPosition = function() {
        return new GControlPosition(G_ANCHOR_TOP_RIGHT, new GSize(210, 7));
      }


      
      // ==== The "Layer" control displays the "More..." plus the checkboxes ====
      // ==== The checkbox info is passed in the "opts" parameter ====

      function LayerControl(opts) {
        this.opts = opts;
      }
      LayerControl.prototype = new GControl();

      LayerControl.prototype.initialize = function(map) {
        var container = document.createElement("div");
        
        container.style.border = "2px solid black";
        container.style.fontSize = "12px";
        container.style.fontFamily = "Arial, sans-serif";
        container.style.width="80px";
        container.style.backgroundColor = "#ffffff";
        container.innerHTML = '<center><b>More...<\/b><\/center>';
        for (var i=0; i<this.opts.length; i++) {
          if (layers[i].Visible) {
            var c = 'checked';
          } else {
            var c = '';
          }
        
          container.innerHTML += '<input type="checkbox" onclick="toggleLayer('+i+')" ' +c+ ' /> '+this.opts[i]+'<br>';
        }
          
      
        map.getContainer().appendChild(container);
        
        // === This doesn't do what I want. It kills the control if I mouseover a checkbox ===
        // === If you know how to do this better, let me know ===

        //GEvent.addDomListener(container, "mouseout", function() {
        //  map.removeControl(layerControl);
        //});
        
        setTimeout("map.removeControl(layerControl)",5000);
        
        
        return container;
      }
      
      LayerControl.prototype.getDefaultPosition = function() {
        return new GControlPosition(G_ANCHOR_TOP_RIGHT, new GSize(210, 7));
      }



      // ==== toggleLayer adds and removes the layers ====
      function toggleLayer(i) {
        if (layers[i].Visible) {
          layers[i].hide();
        } else {
          if(layers[i].Added) {
            layers[i].show();
          } else {
            map.addOverlay(layers[i]);
            layers[i].Added = true;
          }
        }
        layers[i].Visible = !layers[i].Visible;
      }
      

      var map = new GMap2(document.getElementById("map"));

      map.setCenter(new GLatLng(50.08374726,18.08589935),15);
      map.addControl(new GMapTypeControl());
      map.addControl(new GLargeMapControl());


      // ==== Create the GLayer()s, and set them  Visible=false Added=false ====
      // If you want a GLayer open by default, addOverlay() it and set it  Visible=true Added=true

      var layers = [];      
          layers[0] = new GLayer("org.wikipedia.en");
          layers[0].Visible = false;
          layers[0].Added = false;
          
          layers[1] = new GLayer("org.wikipedia.de");
          layers[1].Visible = false;
          layers[1].Added = false;
          
          layers[2] = new GLayer("com.panoramio.popular");
          layers[2].Visible = false;
          layers[2].Added = false;

          layers[3] = new GLayer("com.panoramio.all");
          map.addOverlay(layers[3]);  // This one open by default
          layers[3].Visible = true;
          layers[3].Added = true;
      
      // === Create the layerControl, but don't addControl() it ===
      // = Pass it an array of names for the checkboxes =
      var layerControl = new LayerControl(["Wiki", "Wike DE", "Popular", "Photos"]);

      // === Create the MoreControl(), and do addControl() it ===
      map.addControl(new MoreControl());




        GDownloadUrl("/gp/google-photo-map-gp.php", function(data) {
          var xml = GXml.parse(data);
          var markers = xml.documentElement.getElementsByTagName("marker");
          for (var i = 0; i < markers.length; i++) {
            var name = markers[i].getAttribute("name");
            var address = markers[i].getAttribute("address");
            var type = markers[i].getAttribute("type");
            var thumb = markers[i].getAttribute("thumb");
            var kml = markers[i].getAttribute("kml");
            var desc = markers[i].getAttribute("desc");
            var cat = markers[i].getAttribute("cat");
            var point = new GLatLng(parseFloat(markers[i].getAttribute("lat")),
                                    parseFloat(markers[i].getAttribute("lng")));            var marker = createTabbedMarker(point, name, address, type, thumb, kml, cat, desc);


map.addOverlay(marker);
          }
        });
      }
    }function createTabbedMarker(point, name, address, type, thumb, kml, cat, desc, html1,html2,label1,label2) {
var marker = new GMarker(point,tinyIcon);
      var label1 = "Das Bild";
      var html1 = "<div id='infoback_01'>" + "<table width='250' height='150' border='0' cellspacing='0' cellpadding='0' bgcolor='#EFEFEF'><tr>" + "<td valign='middle'>" + "<a href=" + type +"#Google_Maps>" + "<img src=" + thumb + ">" + "</a>" + "</td>" + "<td>&nbsp;&nbsp;</td>" + "<td valign='middle'>"+ "<b> <font color='black'>" + name + "</b> <br>" + "<a href=" + kml +">" + "Google Earth" + "</a>" +"<br>" +  "<a href=" + cat +">" + "zur Kategorie" + "</a></td></tr></table></div>";
      var label2 = "Infos";
      var html2 = "<div id='infoback_02'>" + "<table width='250' height='150' border='0' cellspacing='0' cellpadding='0' bgcolor='#efefef'><tr>" + "<td valign='middle'>" +  desc + "</td></tr><tr>" + "<td valign='middle'>Koordinaten:" + point + "</td></tr></table></div>";

GEvent.addListener(marker, "click", function() {
marker.openInfoWindowTabsHtml([new GInfoWindowTab(label1,html1), new GInfoWindowTab(label2,html2)]);
});
return marker;
}

  // This Javascript is based on code provided by the
    // Community Church Javascript Team
    // http://www.bisphamchurch.org.uk/  
    // http://econym.org.uk/gmap/

    //]]>



Muss ich den anfang von MIKE seinen seinen Quelltext auch noch verbauen?

Code: [Select]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
  <head>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
    <title>Google Maps</title>

    <script src="http://maps.google.com/maps?file=api&amp;v=2&amp;sensor=false&amp;key=ABQIAAAAPDUET0Qt7p2VcSk6JNU1sBSM5jMcmVqUpI7aqV44cW1cEECiThQYkcZUPRJn9vy_TWxWvuLoOfSFBw" type="text/javascript"></script>
  </head>
  <body onunload="GUnload()">


    <div id="map" style="width: 550px; height: 450px;"></div>
        <a href="layercontrol.htm">Back to the tutorial page</a>
        
    <noscript><b>JavaScript must be enabled in order for you to use Google Maps.</b>
      However, it seems JavaScript is either disabled or not supported by your browser.
      To view Google Maps, enable JavaScript by changing your browser options, and then
      try again.
    </noscript>
 


132
hallo bergblume

ich habe es geschaft  wikipedia, paneramino und youtube einzubauen,

aber mit der hide() und show() funktion komme ich nicht klar.

kannst du mit da helfen?

http://grosspeterwitz.org/gp/index.php?template=google-photo-map-gp

gruß kubiczek

133
Hallo,

ist es möglich nur die Unterkategorie alphabetisch zu Sortieren?

134
Hallo,

Aus Meiner Friedhofsgalerie http://grosspeterwitz.org/friedhof/4images/

habe ich eine Geburtstagslise generiert http://grosspeterwitz.org/friedhof/4images/geb.php

alles funktioniert.

Meine Frage ist jetzt, wie setze ich einen Link zu dem Entsprechenden Bild.

Code: [Select]



<table width="75%" border="1">
  <tr>
    <td><?php

***** EDIT By Rembrandt ************
 


$datum=strftime("%m");
$datum3=strftime("%d%m");
$dat1=mysql_query("SELECT image_name, image_geboren FROM friedhof_images  ORDER BY image_geboren");

while(
$dat=mysql_fetch_array($dat1)) {
        
$datum1$dat[image_geboren];
        
$datum2explode("."$datum1);
        if(
$datum2[0].$datum2[1] == $datum3) {
//hier wird ein Geburtstag am aktuellen Tag angezeigt
                
echo "<b>Heute hat ".$dat[image_name]." geb. ".$dat[image_geboren]." Geburtstag</b>"."<br>";
        }
        if(
$datum2[1] == $datum and $datum2[0].$datum2[1] > $datum3 ) {






//hier werden alle Geburtstage im aktuellen Monat angezeigt
                
echo "Am <b>".$dat[image_geboren]."</b> hat ".$dat[image_name]." Geburtstag"."<br>";
        }
}  
?>
</td>
  </tr>
  <tr>
    <td><?php
$datum
=strftime("%m");
$datum3=strftime("%d%m");
$dat1=mysql_query("SELECT image_name, image_gefallenam FROM friedhof_images  ORDER BY image_gefallenam");

while(
$dat=mysql_fetch_array($dat1)) {
        
$datum1$dat[image_gefallenam];
        
$datum2explode("."$datum1);
        if(
$datum2[0].$datum2[1] == $datum3) {
//hier wird ein Sterbefall am aktuellen Tag angezeigt
                
echo "<b>Am ".$dat[image_gefallenam]." ist ".$dat[image_name]."   Gefallen</b>"."<br>";
        }
        if(
$datum2[1] == $datum and $datum2[0].$datum2[1] > $datum3 ) {




//hier werden alle Stärbefälle  im aktuellen Monat angezeigt
                
echo "Am ".$dat[image_gefallenam]." ist  <b>".$dat[image_name]."</b>  Gefallen"."<br>";
        }
}  
?>

</td>
  </tr>
</table>



Hoffe einer der Experten kann mir da helfen.

EDIT: du hast in deinen Code dein SQL passwort und usernamen gepostet!! mfg Andi

135
Mods & Plugins (Releases & Support) / Re: [MOD]Slideshow mit Highslide JS
« on: October 25, 2009, 02:45:18 PM »
besten dank,

der fehler lag

.highslide-dimming {
   position: absolute;
   background: black;
}

habe position: absolute;  gelöscht und schon funzt es

danke

Pages: 1 ... 5 6 7 8 [9] 10 11 12 13