Forum Replies Created

Viewing 15 replies - 76 through 90 (of 93 total)
  • Forum: Plugins
    In reply to: Unlisted Albums

    After 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 Albums

    Alright, 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: paginator

    This 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 showing

    Not all servers allow you to overwrite those settings. I think that’s what happening here.

    Forum: Fixing WordPress
    In reply to: No albums showing

    seller12, “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: paginator

    I 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.

    Great 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!

    First, 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_GALLERY

    Previously 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 Albums

    Hmm, 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.

    Can 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.

    Simply go on http://picasaweb.google.com/ and click on “Create a new Google Account”. Your username will be what you input in “Desired username”.

    Again, 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 showing

    No 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 showing

    I 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 showing

    Maybe 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?

Viewing 15 replies - 76 through 90 (of 93 total)