wtschth
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: paginatorIt is in this album, but also in other albums when I reduce the amount of pictures per page.
http://reis.anneschuth.nl/fotoalbum/?album=StukjeFietsenHere is the link to the album list:
http://reis.anneschuth.nl/fotoalbum/Forum: Fixing WordPress
In reply to: No albums showingWhauw, you are great!
It works!Magic trick?
Thanks a lot, I won’t bother you again 🙂
Forum: Fixing WordPress
In reply to: No albums showingThanks for helping me.
I found out that fopen is not allowed by my server, see my phpinfo:
http://reis.anneschuth.nl/phpinfo.php
cURL is allowed so I found this piece of code:if (function_exists('curl_init')) { $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $data = curl_exec($ch); curl_close($ch); } else { @ini_set('allow_url_fopen', 1); $data = file_get_contents($url); }Sadly it is not working for me and i don’t know why 🙁
Now I see on the page I madeKPICASA_GALLERY(myname)
Forum: Fixing WordPress
In reply to: No albums showingNice update, at least now i know what the problem is, thanks!
I get thisError: your PHP configuration does not allow kPicasa Gallery to connect to Picasa Web Albums. Please ask your administrator to enable file_get_contents()
Now I can’t change my php settings but I tried unsuccesfully to write around this “file_get_contents()” problem. There seems to be a solution though, I found this link.
By the way I am using WP 2.2.2 and kPicasa 0.0.3Thanks a lot!