smccandl
Forum Replies Created
-
Forum: Plugins
In reply to: [PWA+PHP Picasa Web Albums for Wordpress] Google Authentication ProblemYes – found and fixed the issue. Please remove and re-install v0.9.9.
Forum: Plugins
In reply to: [PWA+PHP Picasa Web Albums for Wordpress] Google Authentication ProblemBy all means, please grab the beta version and test it out. Once I get some feedback that it’s working well, I will publish it.
https://pwaplusphp.smccandl.net/code/pwaplusphp_v0.9.9_beta.zip
Forum: Plugins
In reply to: [PWA+PHP Picasa Web Albums for Wordpress] Google Authentication ProblemThanks – I corrected the value printed at step 8 to include the root only.
Going to need some more info to figure out why nothing is displayed. Can you open up pwaplusphp.php and add this:
echo $addressData;
in functionn doCurlExec after:
$addressData = curl_exec($ch);
Should be line 75.
Scott
Forum: Plugins
In reply to: [PWA+PHP Picasa Web Albums for Wordpress] Google Authentication ProblemOk, both issues should be resolved.
New version of the zip file is available at the same location.
Multisite issue should be ok now that the code uses wordpress site_url function. unauthorized_client message was displayed because I accidentally left my client_id hardcoded in step 3.
Scott
Forum: Plugins
In reply to: [PWA+PHP Picasa Web Albums for Wordpress] Google Authentication ProblemSo:
1) Need to support multisite — will work on this.
2) For the unauthorized client message, this is probably also related to multisite — due to the wrong redirect_uri the plugin instructed you to enter. Does the redirect_uri in the Project on developer console match the one in the URL displayed in the address bar on the page where you click to Grant Permission?Scott
Forum: Plugins
In reply to: [PWA+PHP Picasa Web Albums for Wordpress] Google Authentication ProblemAll, v0.9.9 beta with support for OAuth2 is available for download and testing at:
https://pwaplusphp.smccandl.net/code/pwaplusphp_v0.9.9_beta.zip
You will need to create a “Project” in the Google Developer Console and provide the Client ID and Client Secret to PWA+PHP. The plugin walks you through all the steps.
Please let me know how it goes.
Scott
Forum: Plugins
In reply to: [PWA+PHP Picasa Web Albums for Wordpress] Google Authentication ProblemVersion using OAuth2 is in the works and will be ready before AuthSub stops working.
Scott
Forum: Plugins
In reply to: [PWA+PHP Picasa Web Albums for Wordpress] Google Authentication ProblemHi all, the message you are getting:
The site “https://co.uk” has not been registered.
Is typically solved as described here, basically you need to register your WP domain at https://accounts.google.com/ManageDomains.
Have you already tried that?
The deprecated message is really just a warning that this AuthSub method of authentication will stop working eventually, but it still works fine as noted by Peter.
The method authentication method replacing AuthSub is called OAUTH2. I have a version of PWA+PHP that sort of works using OAUTH2 but it’s a hassle for users because you need to go create a “Web Application” and generate secret user tokens, etc etc and then manually add them on the plugin config page.
Since AuthSub is still working and much easier for users to setup, that’s the method used by the plugin.
Scott
This is fixed in v0.9.8. Please update and confirm.
Scott
Forum: Plugins
In reply to: [PWA+PHP Picasa Web Albums for Wordpress] Cannot hide "Auto Backup" albumHi JurgenKID, I think I have found the problem you are having and I have posted an updated version of dumpAlbumList.php at:
https://pwaplusphp.smccandl.net/code/
Please download it and replace the current one in wp-content/plugins/pwaplusphp and try the hide_albums again, with “Automatische Backup” or “InstantUpload”.
Please let me know the results.
Thanks,
Scott
Forum: Plugins
In reply to: [PWA+PHP Picasa Web Albums for Wordpress] Cannot hide "Auto Backup" album@gorky5, thanks for letting me know, glad it’s working for you.
@JurgenKID, maybe for other languages the picasa name, i.e. InstantUpload, would work better.
Can you open dumpAlbumList.php and change line 198 from:
} else if (in_array($title,$ALBUMS_TO_HIDE)) {
to:
} else if ( (in_array($title,$ALBUMS_TO_HIDE)) || (in_array($picasa_name,$ALBUMS_TO_HIDE)) ) {
Then try:
[pwaplusphp hide_albums='InstantUpload']
Forum: Plugins
In reply to: [PWA+PHP Picasa Web Albums for Wordpress] Cannot hide "Auto Backup" albumIn this case, [pwaplusphp hide_albums=”Automatische Backup”] should do it. Whatever title is displayed below the album is what you want to use.
Hope this helps,
ScottForum: Plugins
In reply to: [PWA+PHP Picasa Web Albums for Wordpress] Cannot hide "Auto Backup" albumHmm, it seems to work here with v0.9.7 just downloaded from plugin repository and using shortcode:
[pwaplusphp hide_albums=’Auto Backup’]
What shortcode are you using?
Scott
Forum: Plugins
In reply to: [PWA+PHP Picasa Web Albums for Wordpress] Profile AlbumYou can now hide albums in the Free version. Shortcode:
[pwaplusphp hide_albums=’Auto Backup,Another One’]
Make sure there are no spaces on either side of the commas.
Scott
Forum: Plugins
In reply to: [PWA+PHP Picasa Web Albums for Wordpress] Cannot hide "Auto Backup" albumYou can now hide albums in the Free version. Shortcode:
[pwaplusphp hide_albums=’Auto Backup,Another One’]
Make sure there are no spaces on either side of the commas.
Scott