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 - KurtW

Pages: 1 2 [3] 4 5 6 7 ... 120
31
Hallo,

zum Ersten würde ich in dem mod- thread posten, wo du auch schon den Code rauskopiert hast.
So erhält der modowner eine Nachricht, dass jemand eine Frage dazu hat.


Kurt

33
Installation, Update & Configuration / Re: Kann 4 Images nicht installieren
« on: February 15, 2009, 05:37:16 PM »
hallo,

bei missglückter installation der db- tabellen einfach diese wieder im phpmyadmin löschen und die install neu starten...

Kurt

34
Hallo,

sollte kein problem sein:

- image als tablebackground mit tabelle: breite und höhe von bild
- in die td noch eine tabelle mit 2 zellen(links und rechts). Höhe der tabelle gleich bild, breite sagen wir mal je 100px.
- in die zellen jeweils ein transparentes .gif mit der gleichen breite und Höhe wie die <td> der innenliegenden tabelle.
- diese gifs verlinken mit den vor/zurück links und einem entsprechenden alt.


Kurt

35
Installation, Update & Configuration / Re: Meine Fragen
« on: February 14, 2009, 03:24:24 PM »
hallo,

falsches forum / wrong form!!!!!!!

hat die Frage mit:  Installation, Update & Configuration zu tun ?? =>


Kurt

36
Hallo,

ich habe noch mal was dazu gefunden: http://www.4homepages.de/forum/index.php?topic=6836.msg29911#msg29911


hallo,

wird damit wohl nichts zu tun haben...
wie sollte man auch ein Bild hochladen, wenn kein catordner dafür vorhanden ist  8O
http://www.legalmotions.de/data/media/1

cat_id 2 ist ok:
http://www.legalmotions.de/data/media/2


Kurt

37
Programming / Re: Wert in einem ARRAY löschen
« on: February 13, 2009, 12:29:22 PM »
Quote
Ich nutze den Code nicht um anzeigen zu lassen welche Kategorien er besucht hat  Das wäre auch zu banal......

sieht nach dem code so aus...

Kleiner Tip:
lightbox function in includes/functions.php
Code: [Select]
function remove_from_lightbox($id)die beinhaltet die gesuchte function


Gruss
Kurt

38
Programming / Re: Wert in einem ARRAY löschen
« on: February 13, 2009, 07:28:05 AM »
Hallo Ingo,

der code kommt mir irgendwie bekannt vor  :wink:

Ganz kann ich Dir nicht folgen. Du möchtest die angesehenen cat_id's der user jeweils neu
in die db speichern oder die jeweilige id rauslöschen.

=> Der Code ist bei meinem Mod zum hinzufügen der id, falls noch nicht in dem Array vorhanden.
      falls doch, wird kein Update gemacht. Falls der erste Eintrag, wird haltdie aktuelle ID eingetragen.


gruss
Kurt

39
After doing all of this, i get a white page... i did something wrong , i'm sure of it...but what?
do i have to replace the code by the new codes or just add? and when it says add above does it mean whit a space between the codes or not ?

Help, i'm total nOOb


Hi,

i now, this is a old posting.
but today i had also this problem with the white page.
=> upload the "GeoIP.dat" in BINARY MODE

Für Probleme nach dem Einbau mit einer weissen Startpage:
=> die "GeoIP.dat" im BINARY MODE hochladen


Gruss
Kurt

40
Installation, Update & Configuration / Re: Parsetime im footer anzeigen???
« on: February 09, 2009, 03:47:48 PM »
Hallo,

in includes/constants.php

folgendes ist auskommentiert. Einfach die
Code: [Select]
//löschen.

Code: [Select]
// define("PRINT_STATS", 1);

Gruss
Kurt

41
Wie schon vorher in deiner anderen Anfrage erwähnt:

1:
Das ist hier das falsche Forum  :evil:
hat das was mit der 4images install zu tun => Nein
2:
und warum fängst du bei jeder Frage einen eigenen Thread an.
Da kann man auch im anderen Thread weiterposten...


Kurt

42
Mods & Plugins (Requests & Discussions) / Re: Mp3 songs playlist mode
« on: February 08, 2009, 05:26:18 PM »
in includes/functions.php
search:
Code: [Select]
      $thumb = "<img src=\"".$file_src."\" border=\"0\"".$width_height." alt=\"".$image_name."\" />";replace with.
Code: [Select]
//      $thumb = "<img src=\"".$file_src."\" border=\"0\"".$width_height." alt=\"".$image_name."\" />";search:
Code: [Select]
      $thumb = "<img src=\"".$file_src."\" border=\"".$config['image_border']."\"".$width_height." alt=\"".$image_name."\" />";replace with:
Code: [Select]
//      $thumb = "<img src=\"".$file_src."\" border=\"".$config['image_border']."\"".$width_height." alt=\"".$image_name."\" />";search:
Code: [Select]
  if ($show_link) {
    if ($open_window) {
      $thumb = "<a href=\"".$site_sess->url(ROOT_PATH."details.php?".URL_IMAGE_ID."=".$image_id.((!empty($mode)) ? "&amp;mode=".$mode : ""))."\" onclick=\"opendetailwindow()\" target=\"detailwindow\">".$thumb."</a>";
    } else {
      $thumb = "<a href=\"".$site_sess->url(ROOT_PATH."details.php?".URL_IMAGE_ID."=".$image_id.((!empty($mode)) ? "&amp;mode=".$mode : ""))."\">".$thumb."</a>";
    }
  }
  return $thumb;
replace with:
Code: [Select]
  if ($show_link) {
    if ($open_window) {
      $thumb = "<a href=\"".$site_sess->url(ROOT_PATH."download.php?".URL_IMAGE_ID."=".$image_id)."\"><img src=\"".get_gallery_image("download.gif")."\" border=\"0\" alt=\"\" /></a>";
      $thumb .= "<a href=\"".$site_sess->url(ROOT_PATH."details.php?".URL_IMAGE_ID."=".$image_id.((!empty($mode)) ? "&amp;mode=".$mode : ""))."\" onclick=\"opendetailwindow()\" target=\"detailwindow\">Play</a>";
 } else {
      $thumb = "<a href=\"".$site_sess->url(ROOT_PATH."download.php?".URL_IMAGE_ID."=".$image_id)."\"><img src=\"".get_gallery_image("download.gif")."\" border=\"0\" alt=\"\" /></a>";
      $thumb .= "<a href=\"".$site_sess->url(ROOT_PATH."details.php?".URL_IMAGE_ID."=".$image_id.((!empty($mode)) ? "&amp;mode=".$mode : ""))."\">Play</a>";
    }
  }
  return $thumb;
i have no play button, so replace the text "Play" with your button code, like the download button code.



in templates/default/thumbnail_bit.html
replace all code with:
Code: [Select]
  <table border="0" cellspacing="0" cellpadding="2">
    <tr>
      <td width="50%">{image_name}
      <td width="50%">{thumbnail}
     </td>
    </tr>
   </table>

In 4images settings (ACP) you need for image setting: 1 cell


Kurt

43
war aber so nicht deine Anfrage, oder:
Quote
Es sollte nur der Bildnname zu sehen sein.
Aber egal, Hauptsache du bist wunschlos glücklich...

Gruss
Kurt

44
and why you post here and not in this modthread?

have you leave or uncomment the following modcode in config.php:
Code: [Select]
//$captcha_chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";  // default
//$captcha_chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; // also possible

=> yes => comment it out again
=> no => ok


Kurt

45
Mods & Plugins (Requests & Discussions) / Re: Mp3 songs playlist mode
« on: February 08, 2009, 04:13:42 PM »
and where is the playlist in the cats.  :?:
There are only links to download and to details  :!:

Kurt

Pages: 1 2 [3] 4 5 6 7 ... 120