high-fidelity
Forum Replies Created
-
Forum: Plugins
In reply to: Picasa XML plugin?Cheers Otto, thanks for checking it out!
Forum: Plugins
In reply to: Picasa XML plugin?Ok guys, I grabbed a copy that was in use on another server.
I haven’t tested this with anything other than WordPress 1.3, so if anyone uses it with anything later than that, can you post back here and let me know how it goes?
Here are the destructions…
- Unzip and upload the wp-picasa-gallery.php file to the /wp-content/plugins directory. Then activate it in your administration menu.
- Create a picasa gallery and export it using the XML template.
- Upload the gallery to /wp-content/galleries/<gallery name>/
- Create a new entry and add the following somewhere in the post: { gallery [gallery name] }
When the post is displayed, the plugin will automatically replace the { gallery [gallery name] } text with the thumbnails from the gallery, which will be linked to the full size images exported by Picasa.
Edit: Whoops, should have told you were to get it from. It can be downloaded from http://www.benlyall.com/files/wp-picasa-gallery.zip
It’s a basic plugin, but it works pretty well on my parents blog, which is what it was originally developed for in the first place.
If you’re using it, let me know, would love to check out your site! 🙂
Ben.
Forum: Plugins
In reply to: Picasa XML plugin?Wow… I completely forgot about this until I went searching for a gallery plugin for picasa. Perhaps I should just rehash my code and actually polish it up into something that’s more usable.
Sorry about the disappearance of the site and script, I made some changes to my hosting, and moved it to another domain, forgetting that the picasa plugin was still there. I’ll check things out and see if I can work it into something more usable.
If anyone wants a copy in the meantime, let me know and I’ll zip up a copy I have lying around.
Ben.
Forum: Themes and Templates
In reply to: Using additional template pagesThanks for the reply, but that doesn’t answer the question I was asking. I’ve tried many of the gallery plugins, and none of them did what I want… so I wrote my own.
I manage my pictures using Picasa, and Picasa exports some rather tasty galleries. I just read in the XML file and display the pictures in the place of a certain tag that the plugin looks for.
Now I want to extend it a little bit and add an additional template file… I was wondering if there way anyway to call a non-standard template page, using the regular index.php file.
So, for example http://www.example.com/?image=<file> which would call up the non standard template theme and pass the query arguments to the page so it could find the image file and display it as a slideshow. This way it stays completely integrated within WordPress, without clogging up the database with unnecessary crap, like some other plugins.
Forum: Plugins
In reply to: Picasa XML plugin?Sounds like you haven’t got the latest version. That was fixed shortly after the first version was posted. Try grabbing it again.
Forum: Plugins
In reply to: Picasa XML plugin?Ok… sounds reasonable enough. Not sure how’d it go with that many photos. I’ll keep that in mind when I’m developing it a bit further, let me know if you come up with anything in the mean time.
Forum: Plugins
In reply to: Picasa XML plugin?Not sure exactly what you’re trying to do or why, but maybe only export 25 photos out of Picasa at a time?
I’m working on an options page, and something like this might be possible to include. Don’t expect it any time soon though, work is flat out at the moment…
Forum: Plugins
In reply to: Picasa XML plugin?Whoops… I was forgetting to re-initialise a variable, so if you made a second post with a gallery in it, you ended up with that gallery in the first post as well. I’ve since fixed it, so if you’re already downloaded it and have started using it on your site, you might want to grab it again.
Thanks to archaeologyman for picking that up!
Forum: Plugins
In reply to: Picasa XML plugin?Try the other things, with modifying the CSS and let me know how it goes.
Forum: Plugins
In reply to: Picasa XML plugin?All it does is display all the images in line. If there is room for them, then the browser will display them all along side each other. If there’s not enough room, then they get wrapped to the next line. I’m not doing anything fancy to the images at all. If you’re having a problem with the images going beyond the width of your post, then you might want to have a play around with the stylesheet that specifies the width of all your div’s etc for your site.
You could always hack the script up a bit so that it displays only four images wide, but it sounds like that wouldn’t be the best fix to your problem.
Edit: I’ve had a look at your site using Firefox on Linux and it seems like the problem you’re getting is because there is no padding on the left hand side of your entry. One way to fix this would be to add the following to your stylesheet…
.imagegallery {
text-align: center;
margin: auto;
}That will center the gallery, if that’s not what you want, then you could try something like
.imagegallery {
margin-left: 10px;
}which will place a 10 pixel margin on the left hand side of the containing div for the images.
Hope that is some help.
Forum: Plugins
In reply to: Picasa XML plugin?Cheers… good to see someone else can use it… I’ll let you know if it gets updated.
Ben.
Forum: Plugins
In reply to: Picasa XML plugin?It’s actually looking in the right place. The .. in the path tells it to go up a directory… it’s a bit of a kludge, and it’s been removed in the latest version, which you can download now from http://www.benlyall.com/
I tried to find http://blog.nuclearmoose.ca/wp-content/galleries/peace_country/index.xml, which should point to the xml file where the plugin is looking and got a 403 error. Maybe your permissions aren’t set correctly after the upload? They need to be at least 755 for the directories and 644 for the files, if you’re using Unix… on windows, who knows.
Check the permisions, try the latest version, and let me know how you go.
Forum: Plugins
In reply to: Picasa XML plugin?Can you point me towards an example?
Edit: I’ve made a minor change to the script that could make a difference.
Specifically, what is referencing the plugins directory… is it that the images are being looked for in the plugins directory, or is the script looking for the index.xml file in the plugins directory?
Forum: Plugins
In reply to: Picasa XML plugin?Ok… I’ve made it available, even though it’s really basic and doesn’t actually do that much at the moment. It is useable though, which is pretty good.
Check out http://www.benlyall.com/ for more info, and a download link.
Ben.
Forum: Plugins
In reply to: Picasa XML plugin?I’ve created a little plugin… you just upload the exported XML gallery to /wp-content/galleries/NAME and then instert something like { gallery [NAME] } in your post and it’ll replace that string with all the thumbnail images, which are linked to the full size images that picasa has exported for you.
Quick and simple, but works pretty well for me. A quick example at http://www.benlyall.com/
The only post on that page contains only three lines, which are
{ gallery [Enzo] }
{ gallery [Airshow] }
{ gallery [Airshow 2] }If anyone is interested, let me know.