Themeing Gallery2 with Wordpress

flashcore

Joined: 2005-03-31
Posts: 21
Posted: Sun, 2005-04-03 03:43

Before i get slammed for double posting, i am keeping track of the Wordpress /Gallery2 Integration discussions. However, i am not as interested in full integration, as i am in simply wrapping Gallery2 in my wordpress theme. I figured although i posted in that discussion, something as simple as i've heard this is could be better fielded with a new topic. Correct me if i'm wrong.

An example is [url]www.siriux.net[/url] who seems to have done a solid job. I would love to do the same with my site, http://www.hisnameisjimmy.com, but only have basic knowledge of PHP and some working knowledge of CSS. If someone could point me in the right direction, thats all i'm really looking for. However, anymore help than that would be highly appreciated as well.

I dont know what it is, but working with this, and trying to figure out the embed stuff or what to do with the global.tpl is really stumping me.

Thanks for any help,
-Jimmy

 
brianlees

Joined: 2002-08-17
Posts: 51
Posted: Sun, 2005-04-03 19:46

I'm right there with you. I'll love integration when it finally happens. Right now, I would love a simple tutorial....even on G1, since I'm not on G2 yet.

 
mindless
mindless's picture

Joined: 2004-01-04
Posts: 8601
Posted: Sun, 2005-04-03 20:48

siriux.net has a custom G2 layout that uses wordpress css classnames.. that is how it's G2 appearance is themed by wordpress css.

 
flashcore

Joined: 2005-03-31
Posts: 21
Posted: Sun, 2005-04-03 23:51

What would be the easiest way to have G2 use a wordpress CSS? And do you simply edit the layout.css file?

 
hawkin
hawkin's picture

Joined: 2002-08-15
Posts: 45
Posted: Mon, 2005-04-04 06:57

Seems like the layout of siriux is allready included in the CVS of Gallery2 :)
http://cvs.sourceforge.net/viewcvs.py/gallery/gallery2/layouts/siriux/

 
flashcore

Joined: 2005-03-31
Posts: 21
Posted: Tue, 2005-04-05 08:17

I know the layout is included, but i'm talking about wrapping it. I'm having a ton of trouble doing this, and have tried emulating other websites, but my brain is over-loading.

 
hawkin
hawkin's picture

Joined: 2002-08-15
Posts: 45
Posted: Tue, 2005-04-05 10:03

I have tried embedding/wrapping it with the default wordpress (kubrick) style too, and had some problems.
But I seemed to get something working now. The css styles in the gallery has to be modified somewhat, since it seems it clashes with the wordpress styles.

I followed the instructions in the embedding document to G2 and info from wordpress about using the theme/style with external pages/applications.

here is the code (it assumes the file named gallery2.php to be in the wordpress directory and gallery2 directory beneath it):

  require('./wp-blog-header.php');
  get_header();
  require_once(dirname(__FILE__) . '/gallery2/embed.php');
  $ret = GalleryEmbed::init(array(
           'embedUri' => 'gallery2.php', 'relativeG2Path' => 'gallery2', '$loginRedirect' => 'gallery2', 'activeUserId' => ''));
  if ($ret->isError()) {
    // $ret->getAsHtml() has error details..
    exit;
  }

  $g2data = GalleryEmbed::handleRequest();
  if ($g2data['isDone']) {
    exit; // G2 has already sent output (redirect or binary data)
  }
  print $g2data['headHtml'];
  print $g2data['bodyHtml'];
  get_footer();
 
flashcore

Joined: 2005-03-31
Posts: 21
Posted: Wed, 2005-04-06 03:58

Where do you put this code? Are you saying you put it in a file called gallery2.php, then throw it in the wordpress directory?

 
hawkin
hawkin's picture

Joined: 2002-08-15
Posts: 45
Posted: Wed, 2005-04-06 10:38

correct.
Gallery2 has to be in a subdirectory (called gallery2) of the wordpress installation.
If your setup is different, you can change this in accordance to the embedding documentation included with gallery2.

 
brianlees

Joined: 2002-08-17
Posts: 51
Posted: Thu, 2005-04-07 02:30

So..

- I can change the path to G2, perhaps up one dir?
- copy the quoted text above into a file call gallery2.php and place it in my Wordpress dir
- reference this file when i want to add a link to the gallery from the nav bar on my site

Is this correct? Is it this simple? Obviously I don't get the sidebar, but I'm ok with that in my site design.

Now, i just need to install G2! :) (I'm a G1 site at the moment).

 
hawkin
hawkin's picture

Joined: 2002-08-15
Posts: 45
Posted: Thu, 2005-04-07 13:05

If you read the documentation, it shouldnt be hard to understand what parts has to be changed.

There are some problems though:
The text in the gallery2 part becomes very small. It must be some collision between the wordpress and gallery2 CSS that makes this.

The embedding solution is _very_ slow in comparison to go straight through main.php file (the normal way gallery2 works). I see that siriux uses the main.php file, so maybe there is a reason to that. I'm not sure what makes the embed.php file so slow in comparison.

I found a template to Wordpress that has somekindof gallery1 and 2 integration guidelines with it. Seems like it modifies the theme and layout of gallery2, so it corresponds to the wordpress style: http://scatteredthoughts.us/pages/scattered-theme/
But this will only work for this theme though, not if you want to change between styles in wordpress.

 
flashcore

Joined: 2005-03-31
Posts: 21
Posted: Sat, 2005-04-09 06:52

I've seen that solution on scattered thoughts, and tried manipulating it. However, i couldn't even get it to work within the included theme, so i dont trust it. I might just have to wait for ArnoldJW's theme.

 
valiant

Joined: 2003-01-04
Posts: 32509
Posted: Sat, 2005-04-09 11:09

hawkin, embed.php much slower than main.php? i've never tested the performance. but i'm using the embed.php with xaraya and i think the whole performance hit comes from the fact that before I call GalleryEmbed::init() and GalleryEmbed::handleRequest(), I have to boot the whole xaraya system.

I've just reviewed the way requests are handled in standalone by main.php and by embed.php in embedded g2. it's almost identical. the only difference is a cookie value check, which is very fast.

if you could post the code how and when you call embed.php' functions, i can tell you what's going wrong.

ps: if this is just about themeing, there's no reason to call embed.php.

 
ClimbingMonkey

Joined: 2005-03-18
Posts: 62
Posted: Sun, 2005-04-10 02:15

Are you still having trouble? I just embedded Gallery into wordpress with the Sirux layout and it is pretty simple for the most part. I'm still having a little trouble with cookies and authentication. but visually it is all there... I could post my cocde if you like...

You can check it out here: http://www.marcnjami.com

 
arnoadam

Joined: 2004-09-29
Posts: 32
Posted: Sun, 2005-04-10 22:08

plz do!

 
flashcore

Joined: 2005-03-31
Posts: 21
Posted: Mon, 2005-04-11 03:39

I would love to get my hands on that code. Nice job on your site btw, very clean and well-done layout.

 
hawkin
hawkin's picture

Joined: 2002-08-15
Posts: 45
Posted: Mon, 2005-04-11 16:01

I have tracked down the speed issue to be of my Wordpress installation, so the embed.php file is not the problem.
It was actually a Gallery2 plugin of Alan Harder that made it go so slow (gallery2 got inited twice).

ClimbingMonkey: Have you made your own CSS file that styles both Wordpress and Gallery2?
I still are having problems with the styles if I try to use all the stylesheets together (wordpress, and the 3 gallery uses; layout, theme and template). Gallery2 also bleeds over wordpress when all theese stylesheets are being used.
Is there no way of be able to use the styles together? Do they have to be integrated in one as you have done?

Interesting to see others joining this effort.

 
brianlees

Joined: 2002-08-17
Posts: 51
Posted: Wed, 2005-04-13 02:35

ClimbingMonkey,

That is EXACTLY what I want to do with my gallery install. Just have the header and the footer. Are you using the embed.php scipt?

 
arnoadam

Joined: 2004-09-29
Posts: 32
Posted: Wed, 2005-04-13 14:41

The only thing I want is to be able to show the Gallery inside my current WP theme. No offence, but why should it be so damn hard......

 
mindless
mindless's picture

Joined: 2004-01-04
Posts: 8601
Posted: Wed, 2005-04-13 15:46
hawkin wrote:
It was actually a Gallery2 plugin of Alan Harder that made it go so slow (gallery2 got inited twice)

you mean that sample code i wrote many, many months ago on an ancient G2 version and i've never used wordpress before? can't say i'm surprised..... :P

 
hawkin
hawkin's picture

Joined: 2002-08-15
Posts: 45
Posted: Thu, 2005-04-14 12:01
mindless wrote:
hawkin wrote:
It was actually a Gallery2 plugin of Alan Harder that made it go so slow (gallery2 got inited twice)

you mean that sample code i wrote many, many months ago on an ancient G2 version and i've never used wordpress before? can't say i'm surprised..... :P

I think actually your code worked, but when used in addition to an embedding, things got doubled, and cause of that things became very slow. Suprisingly it still worked actually.

 
haggis
haggis's picture

Joined: 2004-05-27
Posts: 17
Posted: Sun, 2005-04-17 12:48

ClimbingMonkey,
Outstanding effort if I may say so. That's a gorgeous site you came up with there.
Do please post the code!! (a howto for us n00bs would be especially helpful, even if the request itself is a bit errr..."over the top")

Dude....all this writer can say is "wow"

 
Gaile

Joined: 2002-07-20
Posts: 1301
Posted: Sun, 2005-04-17 23:31

ClimbingMonkey

Great site - nicely done! (almost makes me want to try wordpress again, but I am sticking with pmachine for now).

Gaile

 
ozgreg
ozgreg's picture

Joined: 2003-10-18
Posts: 1378
Posted: Mon, 2005-04-18 05:01
haggis wrote:
Do please post the code!! (a howto for us n00bs would be especially helpful, even if the request itself is a bit errr..."over the top")"

What code you after Haggis??

The embedded php?? to link your WP and Gallery??

<?php
  require('./wp-blog-header.php');
  require_once(dirname(__FILE__) . '/gallery2/embed.php');

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head profile="http://gmpg.org/xfn/1">
	<meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo('charset'); ?>" />
	<title><?php bloginfo('name'); ?><?php wp_title(); ?></title>
	<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats please -->
	<style type="text/css" media="screen">
		@import url( <?php bloginfo('stylesheet_url'); ?> );
	</style>
	<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
	<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
	<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />

	<?php wp_get_archives('type=monthly&format=link'); ?>
	<?php comments_popup_script(); // off by default ?>
	<?php wp_head(); ?>
</head>
<body>
<div id="rap">
  <?php get_header(); ?>
	<div id="content">
		<div id="topbar">
		<ul class="navbar">
				<a href="/" title="Home Page">home</a>	|
				<a href="http://yoursite.com/gallery2.php" title="Gallery">gallery</a> | 
				<a href="http://yoursite.com/archives.php" title="Archives">archive</a> | 		
		</ul>
		  </div>
</div>
<?php

// Get the WP User ID -> Blank if Not Logged in
  
  get_currentuserinfo();  // Get the Current WP User

  $ret = GalleryEmbed::init(array(
           'embedUri' => 'gallery2.php', 'relativeG2Path' => 'gallery2', '$loginRedirect' => 'gallery2', 'activeUserId' => $user_ID));
  if ($ret->isError()) {
    $ret = GalleryEmbed::init(array(
           'embedUri' => 'gallery2.php', 'relativeG2Path' => 'gallery2', '$loginRedirect' => 'gallery2', 'activeUserId' => ''));
	   if ($ret->isError()) {
	    print $ret->getAsHtml(); //has error details..
		 exit;
		}
  }

  $g2data = GalleryEmbed::handleRequest();
  if ($g2data['isDone']) {
    exit; // G2 has already sent output (redirect or binary data)
  }
  print $g2data['bodyHtml'];
  get_footer(); 
?>
 
Arnoldjw
Arnoldjw's picture

Joined: 2004-05-16
Posts: 54
Posted: Tue, 2005-04-19 14:48

I've done something simliar, but its in plugin form for Wordpress.

The Plugin is at:

http://holosite.com/software/wp-gallery2.html

its in use at
http://holosite.servepics.com/baby/

It currently wraps the Wordpress theme around an embedded gallery, and syncronizes new users.

 
hydog

Joined: 2004-05-25
Posts: 3
Posted: Tue, 2005-04-19 20:06

I am trying to follow these threads regarding the integration of WP 1.5 and G2, but I am getting out of my element.

I have WP 1.5 installed in a site /wordpress
I have Gallery2 installed in a subdir /wordpress/gallery
Both are working fine independent of each other...

But I have no clue on how to make it so the gallery looks like the WP Theme.
Everyone is throwing out these snippets of code, but I have no clue where to put it..

I need some primers/help on how to integrate this. I am going from a PHP-Nuke/G1 site...

Anyone want to volunteer some assistance?
Thanks

 
valiant

Joined: 2003-01-04
Posts: 32509
Posted: Tue, 2005-04-19 20:14

hydog, it's a good idea to wait a few days until things are more advanced. there are a couple of independent WP integration movements here, maybe these will have finally merged in a few days in a single, powerful, easy integration.

 
onlydarksets

Joined: 2005-04-19
Posts: 2
Posted: Wed, 2005-04-20 02:38

I (sort of) have ozgreg's code working:
http://blog.mahshie.net/gallery2.php

As you can see, this just sticks the entire contents of the gallery page in between the header and footer of my WP site. I have done no customization (yet), so it looks like crap. However, it does what it needs to do.

Step-by-step, here is what I did:
1. Install WP.
2. Install Gallery2 in a subdirectory of WP (use the default directory name "gallery2" for best results).
3. Copy the above text into a file called "gallery2.php" and place it in the top-level WP directory.

I had to make a few changes to get it to work with a different directory. I installed G2 to a directory called "photos". I also had to add a "/" in front of the $loginRedirect values. Here is the content of my "gallery2.php" file:

<?php
  require('./wp-blog-header.php');
  require_once(dirname(__FILE__) . '/photos/embed.php');

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head profile="http://gmpg.org/xfn/1">
   <meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo('charset'); ?>" />
   <title><?php bloginfo('name'); ?><?php wp_title(); ?></title>
   <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats please -->
   <style type="text/css" media="screen">
      @import url( <?php bloginfo('stylesheet_url'); ?> );
   </style>
   <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
   <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
   <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />

   <?php wp_get_archives('type=monthly&format=link'); ?>
   <?php comments_popup_script(); // off by default ?>
   <?php wp_head(); ?>
</head>
<body>
<div id="rap">
  <?php get_header(); ?>
   <div id="content">
      <div id="topbar">
      <ul class="navbar">
            <a href="/" title="Home Page">home</a>   |
            <a href="http://yoursite.com/gallery2.php" title="Gallery">gallery</a> |
            <a href="http://yoursite.com/archives.php" title="Archives">archive</a> |
      </ul>
        </div>
</div>
<?php

// Get the WP User ID -> Blank if Not Logged in

  get_currentuserinfo();  // Get the Current WP User

  $ret = GalleryEmbed::init(array(
           'embedUri' => '/gallery2.php', 'relativeG2Path' => '/photos', '$loginRedirect' => 'photos', 'activeUserId' => $user_ID));
  if ($ret->isError()) {
    $ret = GalleryEmbed::init(array(
           'embedUri' => '/gallery2.php', 'relativeG2Path' => '/photos', '$loginRedirect' => 'photos', 'activeUserId' => ''));
      if ($ret->isError()) {
       print $ret->getAsHtml(); //has error details..
       exit;
      }
  }

  $g2data = GalleryEmbed::handleRequest();
  if ($g2data['isDone']) {
    exit; // G2 has already sent output (redirect or binary data)
  }
  print $g2data['bodyHtml'];
  get_footer();
?>

I apologize if this jumps the gun on other integration options, but it took a while to figure out what needed to be done so I wanted to clarify ozgreg's post.

UPDATE: I tried hawkin's code, and it worked better:
http://blog.mahshie.net/photos.php

I had to add a <div> tag and update everything to use my "photos" directory, but it seems to work pretty well (small fonts notwithstanding).

<?php
  require('./wp-blog-header.php');
  get_header();
?>

<div id="container" class="clearfix">
<?php
  require_once(dirname(__FILE__) . '/photos/embed.php');
  $ret = GalleryEmbed::init(array(
           'embedUri' => 'photos.php', 'relativeG2Path' => 'photos', '$loginRedirect' => 'photos', 'activeUserId' => ''));
  if ($ret->isError()) {
    // $ret->getAsHtml() has error details..
    exit;
  }

  $g2data = GalleryEmbed::handleRequest();
  if ($g2data['isDone']) {
    exit; // G2 has already sent output (redirect or binary data)
  }
  print $g2data['headHtml'];
  print $g2data['bodyHtml'];
?>

</div>

<?php
  get_footer();
?>

UPDATE: Commenting out the font-size line from the Matrix themes.css stylesheet fixed the font problem.

#gallery {
    font-family: Verdana, Arial, Helvetica, sans-serif;
/*    font-size: 62.5%; */
    color: #333;
    background-color: #fff;
}
 
swordfish
swordfish's picture

Joined: 2004-10-01
Posts: 388
Posted: Wed, 2005-04-20 03:37
Arnoldjw wrote:
I've done something simliar, but its in plugin form for Wordpress.

The Plugin is at:

http://holosite.com/software/wp-gallery2.html

its in use at
http://holosite.servepics.com/baby/

It currently wraps the Wordpress theme around an embedded gallery, and syncronizes new users.

I checked out your WP-Gallery site and must say that is really slick!! I'm a bit envious now but think I'll take valiant's advice and wait awhile till some more integration is polished for WP.
Not sure I follow you when you say, "syncronizes new users". Do you add new users via Gallery, WP only or both? I'm not familar with WP (yet) but it does look mighty nice.

 
hawkin
hawkin's picture

Joined: 2002-08-15
Posts: 45
Posted: Wed, 2005-04-20 11:47

onlydarksets : Thanks for the tip about the font size style!
I had to do two small changes (in matrix theme.css file) to get it working with the default Kubrick style of Wordpress:

#gallery {
    font-family: Verdana, Arial, Helvetica, sans-serif;
//    font-size: 62.5%;
    color: #333;
    background-color: #fff;
    margin: 10px;
} 

In addition I modifyed my gallery2.php file code to include the current userid:

<?
  require(dirname(__FILE__) . '/wp-blog-header.php'); 
  // Get the WP User ID -> Blank if Not Logged in
  get_currentuserinfo();  // Get the Current WP User 

  get_header();

  require_once(dirname(__FILE__) . '/gallery2/embed.php');
  $ret = GalleryEmbed::init(array(
           'embedUri' => 'gallery2.php', 'relativeG2Path' => 'gallery2', 'loginRedirect' => 'gallery2',
           'activeUserId' => $user_ID));
  if ($ret->isError()) {
      // $ret->getAsHtml() has error details..
      print $ret->getAsHtml();
    exit;
  }

  $g2data = GalleryEmbed::handleRequest();
  if ($g2data['isDone']) {
    exit; // G2 has already sent output (redirect or binary data)
  } 
  print $g2data['headHtml'];
  print $g2data['bodyHtml'];

  get_footer();
?> 

It does not add any mapping between the usertables, so that you have to insert yourself.
In 'g2_ExternalIdMap' table ie:

INSERT INTO `g2_ExternalIdMap` ( `g_externalId` , `g_entityType` , `g_entityId` )
VALUES (
'1', 'GalleryUser', '6'
);

g_externalId, 1 = the wordpress user ID
g_entityId, 6 = the galleryuser ID
PS: g_entityType MUST BE GalleryUser

 
ClimbingMonkey

Joined: 2005-03-18
Posts: 62
Posted: Thu, 2005-04-21 02:35

Here it is:

<?php require_once('-- edit me--/wp-blog-header.php');?>
<?php get_header(); ?>

<div class="wcol"><!-- Begin of the wide column -->

<?php
	get_currentuserinfo();  // Get the Current WP User
	$gallerypath = "-- edit me-- /gallery2/";
	$galleryredirect = "-- edit me-- /gallery2/index.php";
	require_once(dirname(__FILE__) . '/'.$gallerypath.'embed.php');
	
	$ret = GalleryEmbed::init(array('embedUri' => 'index.php', 'relativeG2Path' => $gallerypath, 'loginRedirect' => $galleryredirect, 'activeUserId' =>$user_ID));
	if ($ret->isError()) 
		{$ret = GalleryEmbed::init(array('embedUri' => 'index.php', 'relativeG2Path' =>$gallerypath, 'loginRedirect' => $galleryredirect, 'activeUserId' => ''));
		if ($ret->isError()) 
			{print $ret->getAsHtml(); //has error details..
			exit;
			}
		}
	
	$g2data = GalleryEmbed::handleRequest();
	if ($g2data['isDone']) 
		{exit; // G2 has already sent output (redirect or binary data)
		}
	
	echo $g2data['bodyHtml'];
	require_once(dirname(__FILE__) . '/'.$gallerypath.'embed.php');
	$ret = GalleryEmbed::logout();
?>

</div><!-- This closes the wide column div -->

<?php get_footer(); ?>

There are three things to edit, but it should work well. If you want the css prettyness pull it out of the sirux layout css and paste it into your wordpress css...

-CM

 
valiant

Joined: 2003-01-04
Posts: 32509
Posted: Thu, 2005-04-21 05:34

hawkin, please don't use your own SQL. use GalleryEmbed::addexternalIdMap.

@ALL: Please organize yourself. There are about 5 different WP integrations, all quite similar. But if everyone starts from scratch, it will take much longer. i.e. see the mambo integration thread, they try to develop the existing code further and further.

 
ozgreg
ozgreg's picture

Joined: 2003-10-18
Posts: 1378
Posted: Thu, 2005-04-21 08:53

I agree it is silly to have soo many code bases and threads going..

So I have very very quickly setup a site

http://wpg2.ozgreg.com/ (it be up shortly) with a forum that we can post attachments etc so we can combine everything all together under the same roof.

Everyone undertaking WP/G2 work please come over to the new site and lets combine all the efforts into one place..

 
valiant

Joined: 2003-01-04
Posts: 32509
Posted: Thu, 2005-04-21 09:57

ozgreg, it may be a good idea to search the G2 forums for "wordpress" and pm/email the guys you find in the threads.
probably you should also contact jmullan and h0bbel. both G2 devs, interested in a WP integration. jmullan has set up a site a few weeks ago dedicated for G2wp. but i can't find the link ATM. just pm them, i guess it is organized pretty quickly.

thanks for the effort!

 
ozgreg
ozgreg's picture

Joined: 2003-10-18
Posts: 1378
Posted: Thu, 2005-04-21 10:18

I cannot find the link as well, if they feel concerned over the forum I will simply redirect it to their site.

I got the forums up and running, who hosts them is to me is not a concern, what works the best for the G2/WP community works for me..

 
carla216

Joined: 2004-07-28
Posts: 5
Posted: Thu, 2005-04-21 14:36
ClimbingMonkey wrote:
I could post my cocde if you like...

That would be lovely! 8)

 
jmullan
jmullan's picture

Joined: 2002-07-28
Posts: 974
Posted: Thu, 2005-04-21 16:08
 
jmullan
jmullan's picture

Joined: 2002-07-28
Posts: 974
Posted: Thu, 2005-04-21 16:09

(it's just a collection of links at the moment)

 
ozgreg
ozgreg's picture

Joined: 2003-10-18
Posts: 1378
Posted: Thu, 2005-04-21 21:06
jmullan wrote:
(it's just a collection of links at the moment)

Jmullan,

Do you want to throw up a forum or just happy for http://wpg2.ozgreg.com to continue??

 
valiant

Joined: 2003-01-04
Posts: 32509
Posted: Thu, 2005-04-21 22:08

ozgreg, having the forum on your domain is ok. now we need to get everyone on board...

 
h0bbel
h0bbel's picture

Joined: 2002-07-28
Posts: 13451
Posted: Thu, 2005-04-21 22:39

Great!! I've emailed the person responsible for the Kalimantan plugin, hopefully he'll show up soon. :-)

 
scarletblaze

Joined: 2005-04-21
Posts: 2
Posted: Fri, 2005-04-22 00:09

Well, I'm here.

h0bbel wrote:
Great!! I've emailed the person responsible for the Kalimantan plugin, hopefully he'll show up soon. :-)

 
ozgreg
ozgreg's picture

Joined: 2003-10-18
Posts: 1378
Posted: Fri, 2005-04-22 00:25

Ok so if I can get all developers over to the new board (follow my signature) we can pool what we developed so far and get a project plan together to finish it off..

 
lovelyd

Joined: 2006-06-08
Posts: 5
Posted: Wed, 2006-12-20 09:33
ClimbingMonkey wrote:
Are you still having trouble? I just embedded Gallery into wordpress with the Sirux layout and it is pretty simple for the most part. I'm still having a little trouble with cookies and authentication. but visually it is all there... I could post my cocde if you like...

You can check it out here: http://www.marcnjami.com

I took a look at the site and that's just what I'm trying to do. Does anyone know if there is a plug-in or instructions for this method . .?