Google Picasa 3.9
Informations
Créateur | Messages |
---|---|
percherie
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience2 5 DescriptionPicasa is a discontinued, cross-platform image organizer and image viewer for organizing and editing digital photos. Wikipedia. Captures d'écranCode source#!/bin/bash # Installation de Picasa 3.9 # RealName: Picasa 3.9 # Date : (2012-11-19 14-52) # Last revision : (2019-12-27 01-50) # Author : raybb # CHANGELOG # # 2019-12-27 22:20 [Dadu042]: # - Standardize comments. # - Add POL_Shortcut category. # # 2019-12-27 01-50 [raybb]: # - Upgrade to wine 3.20 to avoid freefont issue # - Remove IE8 Installation (wasn't working and google APIs are no longer working anyway https://www.programmableweb.com/news/picasa-web-albums-data-api-to-be-deprecated/brief/2018/12/08) # - Update download url to archive.org # - If you want to avoid the crash messages add `export POL_IgnoreWineErrors=True` to your start script. # # 2015-02-06 00-34 [strudl]: # Added Wine 1.7.33 x86 # Adding HKEY_CURRENT_USER\Software\Google\Picasa\Picasa2\Preferences GoogleOAuth* value # from a working machine, worked fine till ~2015-01-15 # # 2014-12-08 19-36 [petch]: # Wine 1.6.2 # set $TITLE before POL_Debug_Init call # only use Set_OS after prefix creation # call POL_System_TmpCreate before using $POL_System_TmpDir # only create the prefix once the installer has been located # Is POL running ? [ "$PLAYONLINUX" = "" ] && exit 0 # Charger les librairies source "$PLAYONLINUX/lib/sources" # Nom du script et du disque TITLE="Picasa 3.9" PREFIX="Picasa" WORKING_WINE="2.22" # Controle de version POL_SetupWindow_Init POL_Debug_Init # Nom des raccourcis SHORTCUT="Picasa 3.9" # Nom des fichier BIN BIN="picasa39-setup.exe" # Presentation POL_SetupWindow_presentation "$TITLE" "Google" "http://www.google.com/" "Percherie" "$PREFIX" # Choix du fichier de la source d'installation POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" "$BIN" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" # Téléchargement de Picasa POL_Download "https://web.archive.org/web/2016/https://dl.google.com/picasa/picasa39-setup.exe" INSTALLER="$POL_System_TmpDir/$BIN" fi # Configuration du disque virtuel POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE" POL_SetupWindow_improve_fonts Set_OS "winxp" POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$INSTALLER" # Raccourci pour Picasa POL_Shortcut "Picasa3.exe" "$SHORTCUT" "" "" "Graphics;" # Fermeture de l'assistant d'installation POL_SetupWindow_Close exit |
Contributions
Filters:
ContribuerMembre | Messages | |
pazzz | Vendredi 9 September 2022 à 15:51 | |
pazzz
|
Messages
Réponses |
|
pazzz | Vendredi 9 September 2022 à 15:50 | |
pazzz
|
Messages
Réponses |
|
raybb | Samedi 28 Décembre 2019 à 5:32 | |
raybb
|
MessagesNow that it's fixed it works so well :) Réponses |
|
Dadu042 | Vendredi 27 Décembre 2019 à 22:26 | |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe Differences@@ -6,11 +6,21 @@ # Author : raybb # CHANGELOG +# +# 2019-12-27 22:20 [Dadu042]: +# - Standardize comments. +# - Add POL_Shortcut category. +# # 2019-12-27 01-50 [raybb]: -# Upgrade to wine 3.20 to avoid freefont issue -# Remove IE8 Installation (wasn't working and google apis are no longer working anyway https://www.programmableweb.com/news/picasa-web-albums-data-api-to-be-deprecated/brief/2018/12/08) -# Update download url to archive.org -# If you want to avoid the crash messages add `export POL_IgnoreWineErrors=True` to your start script. +# - Upgrade to wine 3.20 to avoid freefont issue +# - Remove IE8 Installation (wasn't working and google APIs are no longer working anyway https://www.programmableweb.com/news/picasa-web-albums-data-api-to-be-deprecated/brief/2018/12/08) +# - Update download url to archive.org +# - If you want to avoid the crash messages add `export POL_IgnoreWineErrors=True` to your start script. +# +# 2015-02-06 00-34 [strudl]: +# Added Wine 1.7.33 x86 +# Adding HKEY_CURRENT_USER\Software\Google\Picasa\Picasa2\Preferences GoogleOAuth* value +# from a working machine, worked fine till ~2015-01-15 # # 2014-12-08 19-36 [petch]: # Wine 1.6.2 @@ -20,7 +30,7 @@ # only create the prefix once the installer has been located -#Vérifier que PlayOnLinux est exécuté +# Is POL running ? [ "$PLAYONLINUX" = "" ] && exit 0 @@ -67,15 +77,13 @@ POL_Wine_PrefixCreate "$WORKING_WINE" POL_SetupWindow_improve_fonts Set_OS "winxp" - - - + POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$INSTALLER" # Raccourci pour Picasa -POL_Shortcut "Picasa3.exe" "$SHORTCUT" +POL_Shortcut "Picasa3.exe" "$SHORTCUT" "" "" "Graphics;" # Fermeture de l'assistant d'installation POL_SetupWindow_Close Nouveau code source#!/bin/bash # Installation de Picasa 3.9 # RealName: Picasa 3.9 # Date : (2012-11-19 14-52) # Last revision : (2019-12-27 01-50) # Author : raybb # CHANGELOG # # 2019-12-27 22:20 [Dadu042]: # - Standardize comments. # - Add POL_Shortcut category. # # 2019-12-27 01-50 [raybb]: # - Upgrade to wine 3.20 to avoid freefont issue # - Remove IE8 Installation (wasn't working and google APIs are no longer working anyway https://www.programmableweb.com/news/picasa-web-albums-data-api-to-be-deprecated/brief/2018/12/08) # - Update download url to archive.org # - If you want to avoid the crash messages add `export POL_IgnoreWineErrors=True` to your start script. # # 2015-02-06 00-34 [strudl]: # Added Wine 1.7.33 x86 # Adding HKEY_CURRENT_USER\Software\Google\Picasa\Picasa2\Preferences GoogleOAuth* value # from a working machine, worked fine till ~2015-01-15 # # 2014-12-08 19-36 [petch]: # Wine 1.6.2 # set $TITLE before POL_Debug_Init call # only use Set_OS after prefix creation # call POL_System_TmpCreate before using $POL_System_TmpDir # only create the prefix once the installer has been located # Is POL running ? [ "$PLAYONLINUX" = "" ] && exit 0 # Charger les librairies source "$PLAYONLINUX/lib/sources" # Nom du script et du disque TITLE="Picasa 3.9" PREFIX="Picasa" WORKING_WINE="2.22" # Controle de version POL_SetupWindow_Init POL_Debug_Init # Nom des raccourcis SHORTCUT="Picasa 3.9" # Nom des fichier BIN BIN="picasa39-setup.exe" # Presentation POL_SetupWindow_presentation "$TITLE" "Google" "http://www.google.com/" "Percherie" "$PREFIX" # Choix du fichier de la source d'installation POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" "$BIN" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" # Téléchargement de Picasa POL_Download "https://web.archive.org/web/2016/https://dl.google.com/picasa/picasa39-setup.exe" INSTALLER="$POL_System_TmpDir/$BIN" fi # Configuration du disque virtuel POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE" POL_SetupWindow_improve_fonts Set_OS "winxp" POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$INSTALLER" # Raccourci pour Picasa POL_Shortcut "Picasa3.exe" "$SHORTCUT" "" "" "Graphics;" # Fermeture de l'assistant d'installation POL_SetupWindow_Close exit RéponsesSamedi 28 Décembre 2019 à 5:27
|
|
raybb | Vendredi 27 Décembre 2019 à 9:04 | |
raybb
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesHello, In a journey to install Picasa on Linux Mint 19.3 I came across playonlinux. The Picasa installer didn't seem to be working so I took at look at the it and found out why. 3 Main reasons: 1. The download link was broken, so I replaced it with an archive.org version. 2. The freefonts issue was coming up, so I upgraded to wine 2.22. (Note: I tried wine 3 but it didn't seem to do anyting but cause an additonal prompt to install wine-mono) 3. The IE8 install was failing, so I removed it.
I assume the script was installing IE for the Google web albums integration. Those apis are deprecated so that’s no longer useful.
After fixing the above I noticed that Picasa “crashes” each time it closes. However, if anyone can help find the cause of this and fix it would be greatly appreciated.
Differences@@ -6,21 +6,11 @@ # Author : raybb # CHANGELOG -# -# 2019-12-27 22:20 [Dadu042]: -# - Standardize comments. -# - Add POL_Shortcut category. -# # 2019-12-27 01-50 [raybb]: -# - Upgrade to wine 3.20 to avoid freefont issue -# - Remove IE8 Installation (wasn't working and google APIs are no longer working anyway https://www.programmableweb.com/news/picasa-web-albums-data-api-to-be-deprecated/brief/2018/12/08) -# - Update download url to archive.org -# - If you want to avoid the crash messages add `export POL_IgnoreWineErrors=True` to your start script. -# -# 2015-02-06 00-34 [strudl]: -# Added Wine 1.7.33 x86 -# Adding HKEY_CURRENT_USER\Software\Google\Picasa\Picasa2\Preferences GoogleOAuth* value -# from a working machine, worked fine till ~2015-01-15 +# Upgrade to wine 3.20 to avoid freefont issue +# Remove IE8 Installation (wasn't working and google apis are no longer working anyway https://www.programmableweb.com/news/picasa-web-albums-data-api-to-be-deprecated/brief/2018/12/08) +# Update download url to archive.org +# If you want to avoid the crash messages add `export POL_IgnoreWineErrors=True` to your start script. # # 2014-12-08 19-36 [petch]: # Wine 1.6.2 @@ -30,7 +20,7 @@ # only create the prefix once the installer has been located -# Is POL running ? +#Vérifier que PlayOnLinux est exécuté [ "$PLAYONLINUX" = "" ] && exit 0 @@ -77,13 +67,15 @@ POL_Wine_PrefixCreate "$WORKING_WINE" POL_SetupWindow_improve_fonts Set_OS "winxp" - + + + POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$INSTALLER" # Raccourci pour Picasa -POL_Shortcut "Picasa3.exe" "$SHORTCUT" "" "" "Graphics;" +POL_Shortcut "Picasa3.exe" "$SHORTCUT" # Fermeture de l'assistant d'installation POL_SetupWindow_Close Nouveau code source#!/bin/bash # Installation de Picasa 3.9 # RealName: Picasa 3.9 # Date : (2012-11-19 14-52) # Last revision : (2019-12-27 01-50) # Author : raybb # CHANGELOG # 2019-12-27 01-50 [raybb]: # Upgrade to wine 3.20 to avoid freefont issue # Remove IE8 Installation (wasn't working and google apis are no longer working anyway https://www.programmableweb.com/news/picasa-web-albums-data-api-to-be-deprecated/brief/2018/12/08) # Update download url to archive.org # If you want to avoid the crash messages add `export POL_IgnoreWineErrors=True` to your start script. # # 2014-12-08 19-36 [petch]: # Wine 1.6.2 # set $TITLE before POL_Debug_Init call # only use Set_OS after prefix creation # call POL_System_TmpCreate before using $POL_System_TmpDir # only create the prefix once the installer has been located #Vérifier que PlayOnLinux est exécuté [ "$PLAYONLINUX" = "" ] && exit 0 # Charger les librairies source "$PLAYONLINUX/lib/sources" # Nom du script et du disque TITLE="Picasa 3.9" PREFIX="Picasa" WORKING_WINE="2.22" # Controle de version POL_SetupWindow_Init POL_Debug_Init # Nom des raccourcis SHORTCUT="Picasa 3.9" # Nom des fichier BIN BIN="picasa39-setup.exe" # Presentation POL_SetupWindow_presentation "$TITLE" "Google" "http://www.google.com/" "Percherie" "$PREFIX" # Choix du fichier de la source d'installation POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" "$BIN" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" # Téléchargement de Picasa POL_Download "https://web.archive.org/web/2016/https://dl.google.com/picasa/picasa39-setup.exe" INSTALLER="$POL_System_TmpDir/$BIN" fi # Configuration du disque virtuel POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE" POL_SetupWindow_improve_fonts Set_OS "winxp" POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$INSTALLER" # Raccourci pour Picasa POL_Shortcut "Picasa3.exe" "$SHORTCUT" # Fermeture de l'assistant d'installation POL_SetupWindow_Close exit RéponsesEdité par raybb |
|
strudl | Mercredi 11 Février 2015 à 23:45 | |
strudl
|
MessagesHello
After reinstalling the latest version of Picasa on my Windows machine. Log off from Google+ Relog on to Google+ Exporting the GoogleOAuth* values again. And reinstalling Picasa with my script. Stopping Picasa in POL and adding the changed values to the user.reg, the authentication works again. In my case I also had to change the album settings again to sync with the mass upload feature. Maybe updating Picasa with the POL script and on the windows machine, log off and relog on on the Windows machine, exporting the new values and modifying the user.reg will work as well. Best regards Strudl Réponses |
|
strudl | Vendredi 6 Février 2015 à 0:37 | |
strudl
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesHello
I also used Picasa on Ubuntu.
It worked fine with wine 1.7.33 x86
Adding HKEY_CURRENT_USER\Software\Google\Picasa\Picasa2\Preferences GoogleOAuth* values from a working maschine, to the user.reg worked fine for Google authentication till ~2015-01-15.
Now I'm searching for a fix for a while, because the GoogleOAuth Entries won't work any more and Picasa tries to open the google authentication webseite. But this fails.
I'm using Ubuntu 14.10 utopic with POL 4.2.5.
I've also tried wine 1.7.35 and it seams working as well. But I get the same Error: Bei der Authentifizierung Ihres Kontos ist ein Fehler aufgetreten (~Authentication Error)
I've moved the depency walker to the wineprefix and added a link to open depends.exe
But now there are a lot of missing dependencies.
And I've no idear where and how to start. Direct Dependencies to PICASA3.EXE are markt red:
KERNEL32.DLL
COMCTL32.DLL
DDRAW.DLL
IMM32.DLL
IPHLPAPI.DLL
VERSION.DLL
MSVFW32.DLL
AVIFIL32.DLL
WINMM.DLL
WINTRUST.DLL
WS2_32.DLL
USER32.DLL
GDI32.DLL
WINSPPOL.DRV
COMDLG32.DLL
ADVAPI32.DLL
SHELL32.DLL
OLE32.DLL
OLEAUT32.DLL
Can anybody help me fixing this issue?
Best regards
Strudl
Differences@@ -13,19 +13,21 @@ # call POL_System_TmpCreate before using $POL_System_TmpDir # only create the prefix once the installer has been located # - +# 2015-02-06 00-34 [strudl]: +# Added Wine 1.7.33 x86 +# Adding HKEY_CURRENT_USER\Software\Google\Picasa\Picasa2\Preferences GoogleOAuth* values from a working machine, works fine till ~2015-01-15 +# #Vérifier que PlayOnLinux est exécuté [ "$PLAYONLINUX" = "" ] && exit 0 - # Charger les librairies source "$PLAYONLINUX/lib/sources" # Nom du script et du disque TITLE="Picasa 3.9" PREFIX="Picasa" -WORKING_WINE="1.6.2" +WORKING_WINE="1.7.33" # Controle de version POL_SetupWindow_Init @@ -40,7 +42,6 @@ # Presentation POL_SetupWindow_presentation "$TITLE" "Google" "http://www.google.com/" "Percherie" "$PREFIX" - # Choix du fichier de la source d'installation POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] @@ -63,19 +64,15 @@ POL_SetupWindow_improve_fonts Set_OS winxp - # Installation de Internet Explorer 8 POL_Call POL_Install_ie8 - POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$INSTALLER" - # Raccourci pour Picasa POL_Shortcut "Picasa3.exe" "$SHORTCUT" - # Fermeture de l'assistant d'installation POL_SetupWindow_Close exit Nouveau code source#!/bin/bash # Installation de Picasa 3.9 # RealName: Picasa 3.9 # Date : (2012-11-19 14-52) # Last revision : (2014-12-08 19-36) # Author : Percherie # CHANGELOG # 2014-12-08 19-36 [petch]: # Wine 1.6.2 # set $TITLE before POL_Debug_Init call # only use Set_OS after prefix creation # call POL_System_TmpCreate before using $POL_System_TmpDir # only create the prefix once the installer has been located # # 2015-02-06 00-34 [strudl]: # Added Wine 1.7.33 x86 # Adding HKEY_CURRENT_USER\Software\Google\Picasa\Picasa2\Preferences GoogleOAuth* values from a working machine, works fine till ~2015-01-15 # #Vérifier que PlayOnLinux est exécuté [ "$PLAYONLINUX" = "" ] && exit 0 # Charger les librairies source "$PLAYONLINUX/lib/sources" # Nom du script et du disque TITLE="Picasa 3.9" PREFIX="Picasa" WORKING_WINE="1.7.33" # Controle de version POL_SetupWindow_Init POL_Debug_Init # Nom des raccourcis SHORTCUT="Picasa 3.9" # Nom des fichier BIN BIN="picasa39-setup.exe" # Presentation POL_SetupWindow_presentation "$TITLE" "Google" "http://www.google.com/" "Percherie" "$PREFIX" # Choix du fichier de la source d'installation POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" "$BIN" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" # Téléchargement de Picasa POL_Download "http://dl.google.com/picasa/$BIN" INSTALLER="$POL_System_TmpDir/$BIN" fi # Configuration du disque virtuel POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE" POL_SetupWindow_improve_fonts Set_OS winxp # Installation de Internet Explorer 8 POL_Call POL_Install_ie8 POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$INSTALLER" # Raccourci pour Picasa POL_Shortcut "Picasa3.exe" "$SHORTCUT" # Fermeture de l'assistant d'installation POL_SetupWindow_Close exit RéponsesVendredi 6 Février 2015 à 1:32
Vendredi 6 Février 2015 à 1:40
Mardi 28 Avril 2015 à 10:14
|
|
petch | Lundi 8 Décembre 2014 à 19:46 | |
petch
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesChangelog
Differences@@ -11,7 +11,7 @@ # set $TITLE before POL_Debug_Init call # only use Set_OS after prefix creation # call POL_System_TmpCreate before using $POL_System_TmpDir -# only create the prefix one the installer has been located +# only create the prefix once the installer has been located # Nouveau code source#!/bin/bash # Installation de Picasa 3.9 # RealName: Picasa 3.9 # Date : (2012-11-19 14-52) # Last revision : (2014-12-08 19-36) # Author : Percherie # CHANGELOG # 2014-12-08 19-36 [petch]: # Wine 1.6.2 # set $TITLE before POL_Debug_Init call # only use Set_OS after prefix creation # call POL_System_TmpCreate before using $POL_System_TmpDir # only create the prefix once the installer has been located # #Vérifier que PlayOnLinux est exécuté [ "$PLAYONLINUX" = "" ] && exit 0 # Charger les librairies source "$PLAYONLINUX/lib/sources" # Nom du script et du disque TITLE="Picasa 3.9" PREFIX="Picasa" WORKING_WINE="1.6.2" # Controle de version POL_SetupWindow_Init POL_Debug_Init # Nom des raccourcis SHORTCUT="Picasa 3.9" # Nom des fichier BIN BIN="picasa39-setup.exe" # Presentation POL_SetupWindow_presentation "$TITLE" "Google" "http://www.google.com/" "Percherie" "$PREFIX" # Choix du fichier de la source d'installation POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" "$BIN" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" # Téléchargement de Picasa POL_Download "http://dl.google.com/picasa/$BIN" INSTALLER="$POL_System_TmpDir/$BIN" fi # Configuration du disque virtuel POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE" POL_SetupWindow_improve_fonts Set_OS winxp # Installation de Internet Explorer 8 POL_Call POL_Install_ie8 POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$INSTALLER" # Raccourci pour Picasa POL_Shortcut "Picasa3.exe" "$SHORTCUT" # Fermeture de l'assistant d'installation POL_SetupWindow_Close exit RéponsesMercredi 10 Décembre 2014 à 8:17
Edité par petch |
|
SKAL | Lundi 8 Décembre 2014 à 18:03 | |
SKAL
|
MessagesTrying to install this program on a Ubuntu 14.10 with wine-1.6.2 and PlayOnLinux_4.2.5.deb when it starts to install the problem notifies some errors and than does not continues Any chance to fix it? RéponsesLundi 8 Décembre 2014 à 19:47
|
|
weliot | Lundi 15 September 2014 à 9:40 | |
weliot
|
MessagesSame for me. Playonlinux installed Picassa 3.9 together with Wine 1.4.1 and Internet Explorer 8. Picassa works perfectly except that it is impossible to login to Google account as described by SnakeFighter. A method for signing in to Picasa 3.9 under Wine by using registry values from a Windows installation of Picasa 3.9 has been described in: http://tsdgeos.blogspot.fr/2014/07/logging-in-into-picasa-39-under-linux.html and this works even in the absence of Internet Explorer 8. I guess it should work too with the Playonlinux installation of Picasa 3.9 Réponses |
|
SnakeFighter | Mercredi 27 Aoüt 2014 à 20:52 | |
SnakeFighter
|
MessagesThanks for the script! Picsasa installs fine, but I am having a problem signing in with a Google Account. If I click the link (top right-hand corner), the Google authentication window opens, then displays username and password field, then closes as soon as soon as the page has loaded. A dialog appears saying "There was a problem authenitcating your account". Any ideas?
Réponses |
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com