External Apps compatible with Gallery.

WebSnail

Joined: 2002-08-15
Posts: 34
Posted: Fri, 2002-08-23 09:18

Hi I'm trying to get a list of current or old integrations with external apps together as a sort of quick FAQ so if you know of one not on the list below please post a quick note and a reference below.

Cheers
:smile:

    <LI>PostNuke - (Included in main Gallery distro)
    <LI>PhpNuke - (Included in main Gallery distro)
    <LI>phpBB2 - <!-- BBCode Start --><A HREF="http://www.snailsource.com/forum" TARGET="_blank">www.snailsource.com/forum</A><!-- BBCode End -->
    <LI>vbPortal - <!-- BBCode Start --><A HREF="http://marc.theaimsgroup.com/?l=gallery-users&amp;m=100549512701260&amp;w=2" TARGET="_blank">marc.theaimsgroup.com/?l=gallery-users&amp;m=100549512701260&amp;w=2</A><!-- BBCode End -->
    <LI>Xoops - <!-- BBCode Start --><A HREF="http://www.xoops.org/modules/mydownloads/viewcat.php?op=&amp;cid=18" TARGET="_blank">www.xoops.org/modules/mydownloads/viewcat.php?op=&amp;cid=18</A><!-- BBCode End -->
    <LI>vCard Lite - <!-- BBCode Start --><A HREF="http://www.belchiorfoundry.com/forum/viewtopic.php?topic=305&amp;forum=10" TARGET="_blank">www.belchiorfoundry.com/forum/viewtopic.php?topic=305&amp;forum=10</A><!-- BBCode End -->

It's important to note that I've only tested the phpbb2 integration so there are no guarantees that the above links mean that a application is supported. But the above proves that the interest and intent is there... [/]

 
windrider

Joined: 2002-08-19
Posts: 2
Posted: Wed, 2002-08-28 03:57

There's instructions on how to embed Gallery with Invision Board 1.0 at http://www.ibresource.com/

It's pretty rough right now, but it'll get things going. :smile: I'm currently working on improving things.

 
robinbowes

Joined: 2002-09-20
Posts: 99
Posted: Fri, 2002-09-20 09:59

Gallery works great with geeklog.

Instructions here:

http://blweb.langfamily.ca/geeklog/public_html/filemgmt/singlefile.php?lid=30

A Random Photo block is also available on the same site:

http://blweb.langfamily.ca/geeklog/public_html/filemgmt/singlefile.php?lid=30

I found it was necessary to make some further modifications to get gallery to recognise the geeklog logins as suggested by Adrian Chung:

Firstly:

Add the following line to classes/geeklog/UserDB.php in function
getUidList():

array_push($uidList, $this->nobody->getUid());
array_push($uidList, $this->everybody->getUid());
+ array_push($uidList, $this->loggedIn->getUid());

Secondly, modify getUserByUid() as follows:

function getUserByUid($uid) {
if (!$uid || !strcmp($uid, $this->nobody->getUid())) {
return $this->nobody;
} else if (!strcmp($uid, $this->everybody->getUid()))
{
return $this->everybody;
- } else if (!strcmp($username, $this->loggedIn->getUid())) {
+ } else if (!strcmp($uid, $this->loggedIn->getUid())) {
return $this->loggedIn;
}

$user = new Geeklog_User();
$user->loadByUid($uid);
return $user;
}

(I replaced my entire .. getUserByUid() function with this code)

Now, if you browse to your web site gallery (http://robinbowes.com/gallery
in my case) you should see it wrapped in geeklog.

By default, all users have access to everything. You need to change this
by either explicitly giving access only to selected users or using the
pseudo "LOGGEDIN" user to only allow access to those users who have
registered and are logged in.

Log in to your geeklog site as "Admin" and open your gallery site. You
should see several admin options on each of your galleries. Click on
"Permissions" and you should get a new window allowing you to change
security on that gallery. I have currently changed the ownership of each
gallery to my own geeklog user login and allow any logged in user to view
the galleries. Save the changes and close your browser (need to clear the
cookie/cache or whatever).

Now if you browse to your gallery, you should not see any galleries. If
you log in to geeklog as a user to whom you have given gellery access you
should now see the galleries.

Is there any chance this code could be added to the gallery code base? Then geeklog integration would be as simple as adding the following configuration directives to the config file:

$GALLERY_EMBEDDED_INSIDE = "geeklog";
$GEEKLOG_DIR = '/path/to/geeklog/public_html'

On a related note, if I ever re-configure gallery via the web the config file gets over-written and I have to manually edit config.php to add the configuration directives again. Is there a way round this?

R.

 
sirpineal

Joined: 2002-08-11
Posts: 2
Posted: Mon, 2002-09-23 03:25

I use UBBThreads and have used this gallery and like it very much. Would prefer to integrate this opposed to an already embeddable gallery called PhotoPost.

Any feedback as feasibility?

thanks-

sP

 
lancelee

Joined: 2002-11-12
Posts: 1
Posted: Tue, 2002-11-12 03:30

Hi Sirpineal,

what are the reasons why you prefer gallery to the already embeddable PhotoPost?

i'm trying to weigh the pros and cons. as of now, i prefer gallery but it's a hunch. need more substantiable points to convince my associates too.

 
fshagan

Joined: 2002-12-20
Posts: 4
Posted: Fri, 2002-12-20 22:32
Quote:
Hi Sirpineal,

what are the reasons why you prefer gallery to the already embeddable PhotoPost?

i'm trying to weigh the pros and cons. as of now, i prefer gallery but it's a hunch. need more substantiable points to convince my associates too.

I bought Photopost because of the integration to phpBB, but I'm dumping it in favor of Gallery with Snailsource's integration mod to phpBB. I can give you details via email (rather not air the dirty laundry here on Gallery's forum). Email me at

I found Gallery easy to install, and you know about any bugs or problems because of the open forums here.

 
ryandlugosz

Joined: 2002-12-01
Posts: 2
Posted: Thu, 2003-03-13 18:36

I've written a quick tutorial on how to integrate Gallery into MovableType. I've posted a thread about it in this forum, but you can head right to the tutorial by following this URL:

http://dlugosz.net/archives/000005.php

-Ryan,

 
Morgramen

Joined: 2003-07-20
Posts: 12
Posted: Sun, 2003-07-20 22:23

Does anyone have information/instructions on how to incorporate Gallery into/with OpenBB? http://forums.openbb.com/

 
eLd0raDo

Joined: 2002-12-02
Posts: 5
Posted: Tue, 2004-01-06 10:54

What about a integration in PHPWebSite...?

Anyone done that before?

 
kimcheeking
kimcheeking's picture

Joined: 2003-07-08
Posts: 27
Posted: Sun, 2004-01-25 12:27
ryandlugosz wrote:
I've written a quick tutorial on how to integrate Gallery into MovableType. I've posted a thread about it in this forum, but you can head right to the tutorial by following this URL:

http://dlugosz.net/archives/000005.php

-Ryan,

Is this tutorial still valid now that gallery is in version 1.4.1 with skins? I tried to add a comment to your blog, but got a server error.

 
robert070612

Joined: 2003-08-05
Posts: 565
Posted: Sun, 2004-07-25 12:49

Researching e107...
http://www.e107.org
...with the intent of integrating G1/G2 for e107's forum element. Anyone been down this path...?

best wishes, Robert

 
pezastic
pezastic's picture

Joined: 2003-06-28
Posts: 65
Posted: Wed, 2004-10-06 13:32

How about an integration with Nucleus?

 
robert070612

Joined: 2003-08-05
Posts: 565
Posted: Wed, 2004-10-06 14:32

On thread:
http://www.geeklog.net

* Update... e107 didn't cut it for me. Adopted the GeekLog CMS with G1. Have been running nicely with this combination for several months. AFAIK the GeekLog compatibility with G1 is full on - the tops:-) All my users log into the GeekLog CMS and they are seamlessly authenticated into Gallery's display functionality. No complaints, no question about it, you can add GeekLog compliance to this thread's *External apps compatible with Gallery (G1)*.

Slightly off-thread:
http://www.oscommerce.com

* I'm now about to be 'obliged' to drop G1 due to its continuing non-support for a proper in-house cart - mature or otherwise. FWIW I have broken/dropped the Jenardo offering so many times it doesn't bear thinking about.

* Now researching osCommerce for use as the shop functionality and will continue with GeekLog for the CMS... Unfortunately the display functionality of osC doesn't hold a candle to what G1 so effortlessly achieves. Having to drop G1 is proving to be quite a wrench here;~( Gallery just doesn't feature in the equation without a mature/supported shopping trolley/cart;~/ Sort of tears me apart having to drop G1 but I just can't sell pictures without a trolley even if G1's display functionality is the best by far. And I now have to sell pictures...

* Nobody seems to have conjoined G1 and osC though there seem to be many asking. For the life of me I don't understand why these two relatively mature giants (of the Open Source world) haven't got together yet.

* At first glance the osC support fora doesn't seem to be a patch on those of the Menalto site.

* Inexplicably the multitude of osC's addon stuff is all written based on the unfeasibly unrealistic methodology of a virgin/stock installation which, itself, is updated in terms of centuries in comparison to those of G1/G2. Very few of the developers/patchers/hackers seem to be able to 'spell' and all the addon stuff is littered with a myriad of simple corrections. I not emphatically so confident, as I have been with Gallery for so long, and a few casual looks at the documentation and support channels haven't been particularly encouraging.

* For me, getting the shopping aspect done will be a mandatory step forward, but the rest is likely to be steps just about so far back I'm beginning to wonder about the whole point.

best wishes, Robert

 
gsbe
gsbe's picture

Joined: 2004-01-27
Posts: 33
Posted: Wed, 2004-10-06 20:10
icpix wrote:
Slightly off-thread:
http://www.oscommerce.com

* Now researching osCommerce for use as the shop functionality and will continue with GeekLog for the CMS... Unfortunately the display functionality of osC doesn't hold a candle to what G1 so effortlessly achieves.

There are contributions for osCom that help with its image control. Obviously nothing like Gallery exists, but I think that with a little work you can get a handle on your osCom images.

icpix wrote:
* Nobody seems to have conjoined G1 and osC though there seem to be many asking. For the life of me I don't understand why these two relatively mature giants (of the Open Source world) haven't got together yet.

This is your chance! Both communities could benefit greatly from this scripting feat. You'd be doing a great service to the Open Source movement if you headed up a project to combine them.

Please be conscious of how you can give back to these great projects rather than only using them. There simply haven't been enough (paying) hours in the day to combine these two projects yet. Perhaps you can find a client that needed this functionality enough to pay for this development. Then give the code back to the communities for all to enjoy!

icpix wrote:
* Inexplicably the multitude of osC's addon stuff is all written based on the unfeasibly unrealistic methodology of a virgin/stock installation which, itself, is updated in terms of centuries in comparison to those of G1/G2.

I don't know how much work you've done under the hood of osCom but I'm not sure that there is any other way for contribution installation to work. It is not the most elegantly written code - you MUST have programming knowledge to modify it. I'm sure that this wasn't created with a gatekeeper mentality but out of necessity. There are folks out there that are changing the osCommerce core all the time, including projects like mamCom and ZenCart.

An important sidenote is that both osCom and Gallery are just about to release new versions. The final 2.2 release (and 5th birthday) are looming for osCom and V2 of Gallery is right around the corner. You may want to wait until both of these have matured to their proposed new version before diving in too far.

Cheers for your kind words about Gallery.

 
gsbe
gsbe's picture

Joined: 2004-01-27
Posts: 33
Posted: Wed, 2004-10-06 20:16

The mamCom website is transitioning to a new server. You can find current info and downloads here: http://www.mambobrothers.com/mambo/

In the near future, mamCom should return to its original home here: http://www.mamcom.org

 
e2
e2's picture

Joined: 2004-12-15
Posts: 3
Posted: Wed, 2004-12-15 23:15

Seriously Brilliant!

ryandlugosz wrote:
I've written a quick tutorial on how to integrate Gallery into MovableType. I've posted a thread about it in this forum, but you can head right to the tutorial by following this URL:

http://dlugosz.net/archives/000005.php

-Ryan,

This seems to be the best method of intigrating MT and Gallery. Although I have not attempted it on my site yet, I'm very impressed.

The only thing I still can't seem to work out is how to dynamicly generate a list of Albums and Sub-Albums like MT does with the Catagories and Sub-Catagories. (look along the right side of my site.. underneath the calander... that's what I'm talking about.)

I understand the breadcrumb stuff shows you where and how deep you are in the gallery structure. But how can one grab all of the album names that are, for instance, root level to three deep?

-e2

 
gilesshaxted

Joined: 2004-12-07
Posts: 5
Posted: Sun, 2007-03-04 18:16

deleted

 
maledictus

Joined: 2005-03-08
Posts: 23
Posted: Fri, 2005-04-08 16:57

Hello there... I've been working with a custom made CMS and wish to embed gallery on it... I've read a couple of docs about embeding in several popular CMS, I wish to know if there is a document that might explain or help to do this.

Thanks.

 
Oldiesmann
Oldiesmann's picture

Joined: 2005-05-18
Posts: 151
Posted: Fri, 2005-05-20 16:50

I just read over the info included with Gallery 2 and am positive that I can get it integrated with my favorite forum system now. Thanks for making it so much easier :D

 
funkoolow

Joined: 2003-10-19
Posts: 13
Posted: Fri, 2005-12-09 11:16

what about integrating G1 in drupal? Incredibly, gallery webiste runs on it and a G1 integration is still not available ;)

 
photopix

Joined: 2006-04-28
Posts: 11
Posted: Sun, 2006-05-28 09:44
funkoolow wrote:
what about integrating G1 in drupal? Incredidly, gallery webiste runs on it and a G1 integration is still not available ;)

Yeah is this possible in the meanwhile? Really like the Oscommerce and Gallery combination btw! Didnt know that yet! :D

 
johnrhoran
johnrhoran's picture

Joined: 2009-01-14
Posts: 6
Posted: Thu, 2009-04-16 20:53

How do I write to the g2 db from my own upload php. I currently write to my own mysql db then add uploads to G2 via 'add item'. Too complicated. My idea is to do inserts both to my own db and to the g2 db
Thank you