kag
Forum Replies Created
-
Forum: Plugins
In reply to: Unlisted AlbumsAfter reading more seriously the Picasa Data API, it is too much trouble to handle the whole Google Authentification process. I would have to make kPicasa log in and obtain an auth key every single time the page would be loaded. Seems like too much trouble for now. I’ll keep this on my list with a lower priority.
Forum: Plugins
In reply to: Unlisted AlbumsAlright, I checked the Picasa API documentation and yes it can be done. Since I’ve killed pretty much every bug that people have sent me, it’s going to be at the top of my TODO list.
Forum: Everything else WordPress
In reply to: paginatorThis problem is fixed in the latest release (0.1.2 as I’m writing this). Have fun!
Forum: Fixing WordPress
In reply to: No albums showingNot all servers allow you to overwrite those settings. I think that’s what happening here.
Forum: Fixing WordPress
In reply to: No albums showingseller12, “blocking url in fopen” means that your provider does not allow kPicasa to make a request to the Google servers. kPicasa has to connect to Google to download the list of albums and the pictures.
The output in the link you posted is definately not normal. Have you played with the files? If not, it’s most likely your provider returning something weird.
Let me know.
Forum: Everything else WordPress
In reply to: paginatorI assume you are only showing 1 specific album? If that’s the case, it’s perfectly normal.
If not, can you point me to your blog, I’ll have to take a look.
Forum: Fixing WordPress
In reply to: Error, allow_file_open – curlGreat if you can work it out with your ISP.
Although it’s weird that the server is reporting that cURL is activated, yet you can’t make a request.Good luck, and keep me updated if there’s something new!
Forum: Fixing WordPress
In reply to: Error, allow_file_open – curlFirst, make sure you have the right username in Admin / Options / kPicasa Gallery.
Second, make sure that you are simply calling kPicasa in your post/page with this command: KPICASA_GALLERYPreviously you had to put KPICASA_GALLERY(username), but as of 0.1.0 the parenthesis and its content are no longer needed.
The error handling is not as robust as it could be (will be fixed). For example, using an invalid username will return the error you’re seeing. I know it is misleading!
Let me know how it goes!
Forum: Plugins
In reply to: Unlisted AlbumsHmm, I’ve never used that feature before. I’ll look at the Picasa API reference if there is a way to get unlisted albums.
For now, I’m simply reading the XML file that they provide and display all the albums that are in the file. If an album is not displayed on your website, it means it’s not in the XML file from Picasa.
That being said, I will have a look at this and will let you know whether or not it is possible in the future.
Forum: Installing WordPress
In reply to: Error I can’t figure outCan you post the link to your blog, it seems that the username is wrong (I don’t know if it’s a bug or if you entered the wrong username).
From what I can see, unless it’s a bug, it looks like you entered “Test-album” as your Picasa Web Albums username in Admin -> Options -> kPicasa Gallery.
Forum: Plugins
In reply to: kpicasa-gallery plugin for wp2.3Simply go on http://picasaweb.google.com/ and click on “Create a new Google Account”. Your username will be what you input in “Desired username”.
Forum: Plugins
In reply to: kpicasa-gallery plugin for wp2.3Again, you guys are probably running PHP4, while kPicasa and the new version of WP-o-Matic require PHP5 (like you said in your other thread).
Forum: Fixing WordPress
In reply to: No albums showingNo problem 🙂
If you like my plugin you could rate it and I would love if you would leave a comment on my blog (you’ll find the information here: http://wordpress.org/extend/plugins/kpicasa-gallery/)
Forum: Fixing WordPress
In reply to: No albums showingI released a new version (0.0.4) which will try to use cURL if the configuration does not allow for file_get_content.
If that still doesn’t work, unfortunately I don’t know of any other way of doing a request to the Picasa server 🙁
Let me know how it goes.
Forum: Fixing WordPress
In reply to: No albums showingMaybe you could try to replace both lines where you have
$data = file_get_contents($url);with:$ph = fopen($url, 'r'); $data = ''; while (!feof($ph)) { $data .= fread($ph, 8192); } fclose($ph);Does that work?