Announcement

#1 2010-12-12 14:53:44

gkidd
Member
2010-12-09
23

vBulletin integration?

Hi all, first of all great job with the gallery, it's awesome.

I am using vBulletin 4.0.3 so I was wondering if it's possible to integrate my users with the piwigo gallery, so they won't need to register twice for the same website.

Tnx in advance :)

Offline

 

#2 2010-12-12 22:26:00

ddtddt
Piwigo Team
Quetigny - France
2007-07-27
7201

Re: vBulletin integration?

I don't know vBulletin 4.0.3.

Piwigo can use external authentication for users to use another script they all have 2 in the same database

in local config

// All informations contained in these tables and column are related to
// piwigo_users table.
$conf['users_table'] = $prefixeTable.'users';

// If you decide to use external authentication
// change conf below by $conf['external_authentification'] = true;
$conf['external_authentification'] = false;

// Other tables can be changed, if you define associated constants
// Example:
//   define('USER_INFOS_TABLE', 'pwg_main'.'user_infos');

// user_fields : mapping between generic field names and table specific
// field names. For example, in PWG, the mail address is names
// "mail_address" and in punbb, it's called "email".
$conf['user_fields'] = array(
  'id' => 'id',
  'username' => 'username',
  'password' => 'password',
  'email' => 'mail_address'
  );


You love Piwigo so don't hesitate to participate, learn more on the "Contribute to Piwigo" page. If you don't have much time for contribution, you can also help the project with a donation.

Offline

 

#3 2010-12-12 22:55:49

gkidd
Member
2010-12-09
23

Re: vBulletin integration?

Tnx for reply, but Im using vBulletin 4.0.3, and im not much into scripting... So I thought, as you have extensions for phpbb forum and such, maybe you could have one for vBulletin....

Offline

 

#4 2010-12-12 23:19:23

ddtddt
Piwigo Team
Quetigny - France
2007-07-27
7201

Re: vBulletin integration?

I just find information, vBulletin 4.0.3. isn't free.

So I can't see how the table is to help you


You love Piwigo so don't hesitate to participate, learn more on the "Contribute to Piwigo" page. If you don't have much time for contribution, you can also help the project with a donation.

Offline

 

#5 2010-12-13 01:35:11

gkidd
Member
2010-12-09
23

Re: vBulletin integration?

I can't see why that is a problem!? I find Piwigo suiting my needs for a gallery, and I started to get to know things around it... I've been thinking for a while now and still haven't seen why me paying for vBulletin is a problem here!?

Offline

 

#6 2010-12-13 06:39:15

ddtddt
Piwigo Team
Quetigny - France
2007-07-27
7201

Re: vBulletin integration?

gkidd wrote:

.... why me paying for vBulletin is a problem here!?

Is'nt a probleme ;-)

but I don't install vBulletin 4.0.3. for test because isn't  free ;-)

So I can't give you the exact code but just the principle of my first answer


You love Piwigo so don't hesitate to participate, learn more on the "Contribute to Piwigo" page. If you don't have much time for contribution, you can also help the project with a donation.

Offline

 

#7 2010-12-13 12:48:38

gkidd
Member
2010-12-09
23

Re: vBulletin integration?

Well than maybe someone could give me something around here :D txn anyways

Offline

 

#8 2010-12-20 03:48:36

brough
Member
2010-08-27
15

Re: vBulletin integration?

If you have found the solution to this one, gkidd , could you post it here please as I'd very much like to use the same setup.

Cheers.

Offline

 

#9 2010-12-20 08:34:58

jonas
Translation Team
Sweden
2010-09-18
52

Re: vBulletin integration?

Hmm
What Wuld you need to make or have look at vbbulletin
i have a old that i haven´t upgradeded but i well be uppgradede in jan if i find some useful
reson...


Hmmm is my sign
and i like to just be..
i like to go along when i having fun, but ...

Offline

 

#10 2010-12-20 13:48:27

gkidd
Member
2010-12-09
23

Re: vBulletin integration?

brough wrote:

If you have found the solution to this one, gkidd , could you post it here please as I'd very much like to use the same setup.

Cheers.

You have no idea how much i would love to find a solution... But since I'm not a programmer there's not much i can do than just search for it... But if i find one, i assure you i'll post here... You could do the same you know :D

Offline

 

#11 2010-12-20 19:50:09

ddtddt
Piwigo Team
Quetigny - France
2007-07-27
7201

Re: vBulletin integration?

can you give structure of table user of vBulletin ?

What encoding for password ?


You love Piwigo so don't hesitate to participate, learn more on the "Contribute to Piwigo" page. If you don't have much time for contribution, you can also help the project with a donation.

Offline

 

#12 2010-12-20 19:57:21

gkidd
Member
2010-12-09
23

Re: vBulletin integration?

ddtddt wrote:

can you give structure of table user of vBulletin ?

What encoding for password ?

Didn't understand what you said..

Offline

 

#13 2010-12-22 17:43:05

ddtddt
Piwigo Team
Quetigny - France
2007-07-27
7201

Re: vBulletin integration?

I contact support vBulletin

To bind user tables in Piwigo and vBulletin


go to Administration -> Plugins -> Manage
Install and active plugin LocalFiles Editor

go to Administration -> Plugins -> LocalFiles Editor -> Tab Local config

add code

$conf['users_table'] = aa.'users';
$conf['external_authentification'] = true;
$conf['user_fields'] = array(
  'id' => 'id',
  'username' => 'username',
  'password' => 'password',
  'email' => 'mail_address'
  );

$conf['guest_id'] = 2;
$conf['webmaster_id'] = 1;

remplace aa by prefixeTable vBulletin
remplace 2 by id a user without the right in vBulletin
remplace 1 by id webmaster user in vBulletin


You love Piwigo so don't hesitate to participate, learn more on the "Contribute to Piwigo" page. If you don't have much time for contribution, you can also help the project with a donation.

Offline

 

#14 2010-12-22 19:11:16

gkidd
Member
2010-12-09
23

Re: vBulletin integration?

ddtddt wrote:

I contact support vBulletin

To bind user tables in Piwigo and vBulletin


go to Administration -> Plugins -> Manage
Install and active plugin LocalFiles Editor

go to Administration -> Plugins -> LocalFiles Editor -> Tab Local config

add code

$conf['users_table'] = aa.'users';
$conf['external_authentification'] = true;
$conf['user_fields'] = array(
  'id' => 'id',
  'username' => 'username',
  'password' => 'password',
  'email' => 'mail_address'
  );

$conf['guest_id'] = 2;
$conf['webmaster_id'] = 1;

remplace aa by prefixeTable vBulletin
remplace 2 by id a user without the right in vBulletin
remplace 1 by id webmaster user in vBulletin

Ok this is great, tnx... But i have NO idea where the hell is this prefixTable or whatever it is... I would appreciate it very much if you could tell us all where can we find it... Is it in mySQL database, or somewhere in vBulletin....

TNX Alot

Offline

 

#15 2010-12-22 19:16:34

ddtddt
Piwigo Team
Quetigny - France
2007-07-27
7201

Re: vBulletin integration?

gkidd wrote:

Ok this is great, tnx... But i have NO idea where the hell is this prefixTable or whatever it is... I would appreciate it very much if you could tell us all where can we find it... Is it in mySQL database, or somewhere in vBulletin....

You give the information to the installation.

now you can see it in the database


You love Piwigo so don't hesitate to participate, learn more on the "Contribute to Piwigo" page. If you don't have much time for contribution, you can also help the project with a donation.

Offline

 

Board footer

Powered by FluxBB

github twitter newsletter Donate Piwigo.org © 2002-2024 · Contact