You are not logged in.
Surprisingly easy to do - used absolute references to point to existing image files.
http://www.sleepingwolves.com/blog/?page_id=53
This was just a test..will fancy it up.
Last edited by jcw99 (2006-12-01 16:34:18)
Offline
Great, I like the idea a lot but it does seem a little busy. I recently changed my site because there were too many buttons/links . If you could reduce the number of buttons on the top banner and distincly seperate the blog/info links from the gallery links I think it would be a fabulous format. What's the best way to learn about developing with word press because I have used it but never spent the time looking into the php?
all the best,
Eric
Offline
Hey Eric
You read my mind - i'm doing major changes to the site - the links will be reduced to a handful - i'm eliminating the galleries in folderblog and replacing them with pixelpost - the pixelpost photoblog will be integrated into the same theme as the wordpress blog...i'm converting the theme right now....relatively easy to do. in other words, with the exception of 1 or 2 slideshowpro galleries all the photos will be in the same format....i will keep the portfolio section (which is a coppermine gallery) just a photo reference database (that's a long term project).
you can take a glimpse at the new galleries here:
http://www.sleepingwolves.com/photoblog … owimage=89
as for working in wordpress? i highly recommend it....don't worry about the php you'll pick it up very quickly and to be honest you don't need to know php...all you need to know is html and css.....
wordpress is not a real php application like Joomla or mambo or postnuke etc.... it's much easier to modify, has a great support community....i think you would have fun with it.
Offline
edit: has moved to here....
http://www.sleepingwolves.com/blog/?page_id=90
Offline
Hello!
I have just started up a Wordpress blog site and would like to bring my galleries into it. Is this possible? I have Director and SSP and my knowledge of both WP and SSP are pretty slim. I have started with a 3 column site but can perhaps change to 2 column for the gallery pages?
Is the combo feasable? If so, what do I edit in the WP template CSS files (or is it another file?)?
Thanks
Ellie
Offline
i don't use director..but i don't see why not
the files to edit are many...but the header and css files are key.
Offline
Hmm. Not sure that this will tell me much. Perhaps my knowledge is really too slim. Thanks for replying, though. Nice shots of wolves, by the way.
Offline
there is a quick and dirty way:
Step 1: download, install, and activate the kml plugin
http://kimili.com/plugins/kml_flashembed
Step 2: add the following code to your post or page.
[kml_flashembed movie="minimal3.swf" height="400" width="600" /]
that's all there is to it.. keep the swf and the xml in the same folder
Offline
Great! I had already found the kimili plugin and will be working with it. Thanks for that clarification!
Offline
good...the only other thing will be to watch the references in your xml file..for example i went the absolute way
like this:
<?xml version="1.0"?>
<gallery>
<album title="" id="" tn="" description="" lgPath="http://www.sleepingwolves.com/gallery/Timber Wolves/large/" tnPath="">
<img src="DSC_0094.jpg"/>
<img src="DD_0836.jpg"/>
etc.
Offline
Hi,
I've been starting to setup a blog, and I've managed to get my gallery into one of the pages but it seems to keep breaking themes.
http://erickramp.com/wp/?page_id=7
is this fairly easy to fix?
thanks
Offline
erick wrote:
Hi,
I've been starting to setup a blog, and I've managed to get my gallery into one of the pages but it seems to keep breaking themes.
http://erickramp.com/wp/?page_id=7
thanks
I couldn't see the problem you describe, but was pleased to see you got this to work. How did you insert the show in your wp page? It looked good to me.
Did you use a plugin or widget and where did you insert the code? Can I ask you to show me the code you used?
Many thanks!
Ellie
Offline
i just used an <object> tag
I guess to see what I mean by broken, I should ask to you look at the "about" page, to see what the theme is supposed to look like
this is the original code I used
<p>Photos from my adventures.</p>
<p><object width="500" height="400" type="application/x-shockwave-flash" data="http://www.erickramp.com/unpub/slide.swf" /></p>
<param name="movie" value="http://www.erickramp.com/unpub/slide.swf" />
</p>
and this is what it is now, I was trying to use the kamil plugin, though I'm not really clear on how it works to be honest, and it doesn't seem to have made any difference
<p>Photos from my adventures.</p>
<p><object width="500" height="400" type="application/x-shockwave-flash" data="http://www.erickramp.com/unpub/slide.swf" /></p>
<param name="movie" value="http://www.erickramp.com/unpub/slide.swf" />[kml_flashembed movie="http://www.erickramp.com/unpub/slide.swf" height="400" width="500" /]
Offline
erick wrote:
i just used an <object> tag
I guess to see what I mean by broken, I should ask to you look at the "about" page, to see what the theme is supposed to look like
I see what you mean. Where exactly did you embed this code? I mean in what file? And where in the file?
Is it possible to use the swfobject code for this, do you know? The embed object code is not supposed to be good anymore, is it? I mean I get warnings from DreamWeaver when I have that type of code in the page.
Ellie
Offline
i have no idea, i really don't know anything about code
Offline
Did you just insert it in a wordpress page box? As in your admin panel?
Ellie
Offline
yep
Offline
erick wrote:
and this is what it is now, I was trying to use the kamil plugin, though I'm not really clear on how it works to be honest, and it doesn't seem to have made any difference
<p>Photos from my adventures.</p>
<p><object width="500" height="400" type="application/x-shockwave-flash" data="http://www.erickramp.com/unpub/slide.swf" /></p>
<param name="movie" value="http://www.erickramp.com/unpub/slide.swf" />[kml_flashembed movie="http://www.erickramp.com/unpub/slide.swf" height="400" width="500" /]
you are putting references to the swf twice...you are combining two different methods instead of using one...if all you need is a simple implementation of SSP...use the plugin method..replace the code above with this:
Photos from my adventures <BR> [kml_flashembed movie="http://www.erickramp.com/unpub/slide.swf" height="400" width="500" /]
if your page is still broken it is because of the dimensions of the swf....if the movie is too large in width it will push the right side of the page (sidebar.php) over....this should be a simple fix...if the code above does not work, try to make a smaller movie, if that doesn't work edit your css file or post it here.
I saw your page and 500 wide should be fine so i'm convinced it is the fact that you are embedding two movies instead of one.
Last edited by jcw99 (2006-12-23 07:45:37)
Offline
elliekennard wrote:
Did you just insert it in a wordpress page box? As in your admin panel?
Ellie
First make sure you have the plugin installed and activated.
Second, place your code where you want the ssp to appear...don't make the movie too wide or it will screwup the whole template..if you want a wider movie you can remove the sidebar (to do this you will need to create a custom wordpress page without the sidebar..very easy to do).
There is also a third method you can use....and this is to pretend your slideshow is in your wordpress page when actually it is in html...this is done by using the wordpress style in your html page). In this case I chose to remove the sidebar because i wanted a wider page..but you can leave the sidebar in if you want.
example: pseudo wordpress with ssp : http://www.sleepingwolves.com/
example: real wordpress with ssp: http://www.sleepingwolves.com/blog/?page_id=53
Last edited by jcw99 (2006-12-23 07:55:11)
Offline
Thanks so much for this help. I will give them a try and try to see which is best.
You are so helpful - I can't thank you enough for this.
Ellie
Offline
ok, so now it seems to be working, kinda weird though.
I tried the Kamili plugin alone as you suggested, but nothing happened. The slideshow didn't show up at all, it seems to be installed properly, and activated.
Then I decided to try playing with the width of the slideshow, also as suggested. As a result of some recent computer problems, I'd lost the original fla for the swf I had been using, so I decided just to make new one. And bam! it worked perfectly with the object embed tags first try at 500x400. Even though before with just the object tags at the same size it was breaking the theme, this time for some reason it isn't.
Anywho, I'm not going to argue with it. Thanks very much for all your help!
Eric
Offline
Glad you got it fixed Eric...your site looks clean, good job...often it is a good idea to start from scratch, it could be the smallest typing error that throws the syntax and everything else off
happy holidays
Offline
I'm having problems with the Kimili plugin. I've got it activated and all setup, but the images won't load. It almost seems like a path issue. However when I play the slideshow locally (within Windows Explorer), it works fine. Is there something I'm missing?
Thanks.
Offline
If it's a path issue then fix it, but you might also like to post the slideshow url so we can check.
Offline
Hey JCW99
thanks a lot for your kind support to post here a little doc about wordpress integration of flash.
btw i am preparing my own wordpress blog site along with my ssp and sspdirector to integration.
http://www.kevincreation.com
is my personal website.
regards
mak
Offline
HELP! I downloaded the kml_flashembed file, unzipped it and uploaded to my plug-in's folder and here's what I got:
Warning: main() [function.main]: open_basedir restriction in effect. File(/usr/share/pear/buttonsnap.php) is not within the allowed path(s): (/home/httpd/vhosts/garystripling.com/httpdocs:/tmp) in /home/httpd/vhosts/garystripling.com/httpdocs/blog/wp-content/plugins/kml_flashembed/kml_flashembed.php on line 34
Warning: main(buttonsnap.php) [function.main]: failed to open stream: Operation not permitted in /home/httpd/vhosts/garystripling.com/httpdocs/blog/wp-content/plugins/kml_flashembed/kml_flashembed.php on line 34
Fatal error: main() [function.require]: Failed opening required 'buttonsnap.php' (include_path='.:/usr/share/pear') in /home/httpd/vhosts/garystripling.com/httpdocs/blog/wp-content/plugins/kml_flashembed/kml_flashembed.php on line 34
I'm running WP2.3. What's going on??
Thanks,
Gary
Offline
Gary,
Your issue is PHP related. Your host is posing restrictions on access to certain areas of the webserver. PHP is attempting to open a file located inside the /usr/share/pear/ folder, but the only folders that PHP is given access to are /home/httpd/vhosts/garystripling.com/httpdocs and /tmp.
Contact your host and they should be able to clear it up for you pretty quickly.
Offline
I wanted to use SSP inside of a single post to display that post's images and I didn't want to write a new XML file for each one. I found a couple things online and changed added some stuff to accomplish this, it's pretty neat.
I wrote a tutorial on how to do it. It can be found here at my website. Note that only try this if you already got SSP working on your website before.
Offline
Did someone delete the other WP thread in the other category room?
Doesn't seem to be there any longer.
Anyone still having trouble with the Kimi WP plugin and SSP working together?
Offline
I am not having problems at all. In fact I have just added a SSP to the header as the header graphic on the page and it seems to work very well with all the browsers I have checked. On the Shadows and Light site.
Offline
I tried to embed the SSP movie just using the documentation that came with it into a WordPress .php template file, but that didn't work at all.
Wasn't showing up at all.
So then I got the Kimili Flash Embed plugin, and I'm closer. Here is where I'm at now:
http://209.35.116.207/
It shows the player - but no images, or anything.
Can anyone tell what I'm doing wrong?
Thanks!
Offline
It works fine for me on the home page, but not on the content ones, this is beacuse on the homepage, it looks for the images.xml file here http://209.35.116.207/images.xml but on the content ones it looks for it here http://209.35.116.207/contact/info/images.xml or http://209.35.116.207/news/newsletter/images.xml and so on.
Offline
I used director and SSP flash for my South Florida Visitor Guide site.
I created one SSP flash .swf that I put in the WP template for the posts. Then I added the SSP director album xml path as a WP meta custom field which I pull for each post and then pass in to the .swf object in FlashVars.
Offline
Thanks for all of the information on this thread. By reading through all of the posts, I was able to piece together the information needed. Here's what I had to do to get SSP working on a WordPress post or page:
My paths are:
slideshow.swf - http://website.com/gallery (this is not my actual site, just an example)
slideshow.xml - http://website.com/gallery (this is not my actual site, just an example)
photos - http://website.com/gallery/slideshow/large (this is not my actual site, just an example)
Step 1: Download, install, and activate the "Kimili Flash Embed" plugin for WordPress
http://wordpress.org/extend/plugins/kimili-flash-embed/
Step 2: In Flash, with the SlideShowPro component selected, set the XML File Path to "/gallery/slideshow.xml" in the Component Inspector. Publish and upload the slideshow.swf and slideshow.xml files to the following location: http://website.com/gallery/
Step 3: Set the "lgPath" in the XML file like this:
<?xml version="1.0" encoding="UTF-8"?>
<gallery>
<album title="" id="" tn="" description="" lgPath="/gallery/slideshow2/large/" tnPath="">
<img src="pic_01.jpg" />
<img src="pic_02.jpg" />
<img src="pic_03.jpg" />
<img src="pic_04.jpg" />
<img src="pic_05.jpg" />
<img src="pic_06.jpg" />
</album>
</gallery>
Step 4: Add the following code to the post or page. This can be done using the WYSIWYG editor. The height and width should match the dimensions of the slideshow.swf file.
[kml_flashembed movie="/gallery/slideshow.swf" height="400" width="600" /]
Offline
Well you have 'name' which is different from your slideshow name. Might not help. Mine is Director run, but instead of 'name' I have id. In any case they should be the same, with the difference that there is no extension on the end of the id or name.
Not sure if this helps
Ellie
Offline
Hi,
I'm having a problem that only happens in Internet Explorer: Kimili embedded SSP slideshows appear in front of the menu drop down lists.
i.e. when on the page below, the menu drop down lists (under say, the "categories" heading are rendered behind the slideshow. Has anyone experienced this? Can you suggest a workaround?
www.glenpepin.com/families/
Thanks very much for any help,
Glen
Offline
In case anyone comes across the same problem, wmode="opaque" is the solution. Using Kimili, my embed code is as follows:
[kml_flashembed publishmethod="static" fversion="8.0.0" movie="http://www.glenpepin.com/Portfolio/Portraits/loader.swf" width="850" height="646" targetclass="flashmovie" wmode="opaque" base="."/]
[/kml_flashembed]
Offline