Author Topic: Integration 4images 1.7 / vBulletin 2.x  (Read 238034 times)

0 Members and 1 Guest are viewing this topic.

Offline dr_boom

  • Pre-Newbie
  • Posts: 4
    • View Profile
Integration 4images 1.7 / vBulletin 2.x
« Reply #120 on: January 29, 2003, 11:21:33 PM »
Actually I don't :( And that's why I posted here in case someone could code that for me and anyone else that may be interested.

Anyone???

Offline Brain Crusher

  • Newbie
  • *
  • Posts: 30
    • View Profile
    • http://www.soundz-exchange.de
Fernzugriff?
« Reply #121 on: February 08, 2003, 06:21:19 PM »
Ist es möglich, auf die daten von "fremden" Seiten zuzugreifen?

Zwecks besserer Statistiken/Trafficauswertung habe ich für mein vbb forum ein account und für meine 2 verschiedenen seiten vor, 2x 4images zu installieren....ich möchte das forum aber für beide seiten nutzen, ist das forum mit diesen plugin/hack denn in der lage von beiden 4images seiten zuzugreifen?

Offline Mandy

  • Newbie
  • *
  • Posts: 18
    • View Profile
Integration 4images 1.7 / vBulletin 2.x
« Reply #122 on: February 10, 2003, 11:10:36 AM »
In der Ingegrationsanleitung steht:

Quote
3. Öffne sessions.php und passe den Konfigurationsteil am
     Dateianfang an.


Bin absoluter Newbie auf dem Gebiet. Könnt ihr mir sagen, was und wo ich es genau in dieser Datei anpassen muss?

Danke schon mal
Mandy

Offline Mandy

  • Newbie
  • *
  • Posts: 18
    • View Profile
Integration 4images 1.7 / vBulletin 2.x
« Reply #123 on: February 10, 2003, 04:55:37 PM »
Ihr habt das doch alle schon installiert, einer muss das doch wissen?

Mandy

Offline Jan

  • Administrator
  • 4images Guru
  • *****
  • Posts: 5.024
    • View Profile
    • 4images - Image Gallery Management System
Integration 4images 1.7 / vBulletin 2.x
« Reply #124 on: February 10, 2003, 10:43:50 PM »
Na, zwischen
Code: [Select]
//-----------------------------------------------------
//--- Start Configuration -----------------------------
//-----------------------------------------------------

und
Code: [Select]
//-----------------------------------------------------
//--- End Configuration -------------------------------
//-----------------------------------------------------

Jan
Your first three "must do" before you ask a question:
1. Forum rules
2. FAQ
3. Search

Offline Mandy

  • Newbie
  • *
  • Posts: 18
    • View Profile
Integration 4images 1.7 / vBulletin 2.x
« Reply #125 on: February 11, 2003, 12:55:44 PM »
Hallo Jan,

das ist der Teil aus der session.php von der Integrationsdatei, aber ich weiß trotzdem nicht, was ich genau ändern/eintragen soll. Es steht doch schon alles da?
Ich sagte doch, bin Newbie und würde gerne dazu lernen, möchte aber auch nichts falsches machen.
Kannst du mir die kurze Nachhilfe bitte geben.

Mandy

Code: [Select]
Start Configuration -----------------------------
//-----------------------------------------------------

// Define here the name of the session. Default of phpBB is "sid".
define('SESSION_NAME', 'sid');

// Define here the name of the banlist and config database tables.
// Maybe you only need to change the table prefix if you another
// than the phpBB default "phpbb_".
define('PHPBB_BANLIST_TABLE', 'phpbb_banlist');
define('PHPBB_CONFIG_TABLE', 'phpbb_config');

// Set her the corresponding database fields of the user table.
// If there is no corresponding field in the new user table,
// leave the value blank. Normally no need to change.
$user_table_fields = array(
  "user_id" => "user_id",
  "user_level" => "user_level",
  "user_name" => "username",
  "user_password" => "user_password",
  "user_email" => "user_email",
  "user_showemail" => "user_viewemail",
  "user_allowemails" => "",
  "user_invisible" => "user_allow_viewonline",
  "user_joindate" => "user_regdate",
  "user_activationkey" => "user_actkey",
  "user_lastaction" => "user_session_time",
  "user_location" => "user_session_page",
  "user_lastvisit" => "user_lastvisit",
  "user_comments" => "",
  "user_homepage" => "user_website",
  "user_icq" => "user_icq"
);

// Set here the URL to your phpBB forum. WITH trailing slash!
$url_app           = "http://www.4homepages.de/forum/;"

// Set here different URL's to your phpBB forum.
// Normally no need to change.
$url_register      = $url_app."profile.php?mode=register";
$url_lost_password = $url_app."profile.php?mode=sendpassword";
$url_control_panel = $url_app."profile.php?mode=editprofile";
$url_mailform      = $url_app."profile.php?mode=email&u={user_id}";
$url_show_profile  = $url_app."profile.php?mode=viewprofile&u={user_id}";
$url_login         = $url_app."login.php";
$url_logout        = $url_app."login.php?logout=true";

//-----------------------------------------------------
//--- End Configuration

Offline Mandy

  • Newbie
  • *
  • Posts: 18
    • View Profile
Integration 4images 1.7 / vBulletin 2.x
« Reply #126 on: February 12, 2003, 06:39:12 AM »
Jan,

meine Frage ist dir sicherlich zu blöd, aber ich brauche trotzdem eine Antwort. Wie muss es am Ende aussehen?

Mady  :oops:

Offline Maweryk

  • Sr. Member
  • ****
  • Posts: 253
    • View Profile
Integration 4images 1.7 / vBulletin 2.x
« Reply #127 on: February 12, 2003, 11:45:01 AM »
@Mandy: Zwischen Start Configuration und End Configuration wird Dir doch genau erklärt, was Du gegebenenfalls ändern musst.
Hier z.B.:
// Set here the URL to your phpBB forum. WITH trailing slash!
$url_app           = "http://www.4homepages.de/forum/;"

Da ich kaum glaube, dass so Deine phpbb Forumsadresse aussieht, musst Du hier natürlich Deine Adresse eingeben.

Die anderen Punkte sind dementsprechend auch noch Deiner Konfiguration anzupassen und dann sollte alles funktionieren.

Gruß

Markus

Offline Mandy

  • Newbie
  • *
  • Posts: 18
    • View Profile
Integration 4images 1.7 / vBulletin 2.x
« Reply #128 on: February 12, 2003, 12:45:44 PM »
Das war auch der einzige Punkt, den ich selbst verstanden habe, bei den anderen sehe ich nicht durch.

Sorry
Mandy

Offline Maweryk

  • Sr. Member
  • ****
  • Posts: 253
    • View Profile
Integration 4images 1.7 / vBulletin 2.x
« Reply #129 on: February 12, 2003, 01:01:57 PM »
Also Mandy.
Das phpbb-Forum hast Du ja bestimmt schon installiert und bei der Installation mit Sicherheit alles so gelassen, wie man es Dir vorgegeben hat, oder?
Wenn dem so ist, dann musst Du außer der URL nix mehr verändern.

Gruß

Markus

Offline Mandy

  • Newbie
  • *
  • Posts: 18
    • View Profile
Integration 4images 1.7 / vBulletin 2.x
« Reply #130 on: February 12, 2003, 01:21:27 PM »
Ich habe es jetzt geschafft und man kann sich über einen link im Album einloggen, ohne sich extra noch einmal anzumelden. Prima! Uff.

Nun habe ich noch folgendes Problem. Wenn man sich über das Album ausloggt, kommt man direkt zur Indexseite des Forums. Allerdings sind dort dann sämtliche Bilder und Grafiken weg.

Mandy

Offline Maddrax

  • Pre-Newbie
  • Posts: 4
    • View Profile
Integration 4images 1.7 / vBulletin 2.x
« Reply #131 on: February 17, 2003, 08:19:02 PM »
Quote from: Floh
Wo es grad um das Thema geht: Ich bekomme im Forum Leute die in der Gallerie rumschauen mehrfach angezeigt und daher ist die Zahl der Besucher im Board wesentlich höher als in der Gallerie. Was kann ich da tun?

bye,
Floh


Genau das gleiche Problem habe ich auch, zwar nur bei Gästen, aber stören tut es schon.
Momentan 5 x und 3 x gleicher User in "Who is Online" vom vB.

Und hier der Link zur Gallery sowie zum Board:
Gallery
Board

@Jan
Klasse Script ^^

Offline Mandy

  • Newbie
  • *
  • Posts: 18
    • View Profile
Integration 4images 1.7 / vBulletin 2.x
« Reply #132 on: February 18, 2003, 08:00:16 PM »
Hmm, schade.
Weiß wirklich niemand eine Antwort darauf?

Woran kann es eigentlich liegen, dass sich ein User nicht einloggen kann. Er landet immer auf der Eingabemaske und dann in das Forum, wo dann wiederum die Buttons und Grafiken weg sind.

Würde mich sehr über Hilfe freuen.

Mandy

Offline Jan

  • Administrator
  • 4images Guru
  • *****
  • Posts: 5.024
    • View Profile
    • 4images - Image Gallery Management System
Integration 4images 1.7 / vBulletin 2.x
« Reply #133 on: February 18, 2003, 09:01:44 PM »
Hast Du das Template user_loginform.html ersetzt?

Jan
Your first three "must do" before you ask a question:
1. Forum rules
2. FAQ
3. Search

Offline Mandy

  • Newbie
  • *
  • Posts: 18
    • View Profile
Integration 4images 1.7 / vBulletin 2.x
« Reply #134 on: February 18, 2003, 09:33:39 PM »
Wenn du das meinst in: 4images/templates/default , dann habe ich es ersetzt.

Das Problem besteht auch nur bei einem User.

Mandy