photoshopCClinux icon indicating copy to clipboard operation
photoshopCClinux copied to clipboard

SSL certificate problem: certificate has expired

Open hyper-dot opened this issue 3 years ago • 10 comments

Describe the bug All installation went smoothly. I installed vcreddits and all the suffs. But at last it is saying SSL certificate expired.

linux Distribution (please complete the following information):

  • Distro: Endeviour OS (Arch Based)
  • Desktop Environment: no desktop environment (i3WM)
  • gpu: Doesn't shows anything
  • display server: Xorg

Screenshots image

hyper-dot avatar Feb 16 '22 13:02 hyper-dot

Same here

guilherme-n-l avatar Feb 16 '22 13:02 guilherme-n-l

Add the --insecure argument to the curl command in line 197 of the SharedFuncs.sh library like that curl --insecure $3 -o $1 This is a temporary fix to let curl download without taking care of the expired ssl certificate :) https://github.com/Gictorbit/photoshopCClinux/blob/5f8f0adcdd1bbf22205ce9a0a0f3b95272718e00/scripts/sharedFuncs.sh#L197

matissime avatar Feb 16 '22 15:02 matissime

Add the --insecure argument to the curl command in line 197 of the SharedFuncs.sh library like that curl --insecure $3 -o $1 This is a temporary fix to let curl download without taking care of the expired ssl certificate :) https://github.com/Gictorbit/photoshopCClinux/blob/5f8f0adcdd1bbf22205ce9a0a0f3b95272718e00/scripts/sharedFuncs.sh#L197

Worked for me! Thanks

guilherme-n-l avatar Feb 16 '22 23:02 guilherme-n-l

Add the --insecure argument to the curl command in line 197 of the SharedFuncs.sh library like that curl --insecure $3 -o $1 This is a temporary fix to let curl download without taking care of the expired ssl certificate :)

https://github.com/Gictorbit/photoshopCClinux/blob/5f8f0adcdd1bbf22205ce9a0a0f3b95272718e00/scripts/sharedFuncs.sh#L197

Is there some way to let the developer know about this bug and your fix? It's really great that you found a fix :)

silvolde428 avatar Feb 17 '22 01:02 silvolde428

Add the --insecure argument to the curl command in line 197 of the SharedFuncs.sh library like that curl --insecure $3 -o $1 This is a temporary fix to let curl download without taking care of the expired ssl certificate :)

https://github.com/Gictorbit/photoshopCClinux/blob/5f8f0adcdd1bbf22205ce9a0a0f3b95272718e00/scripts/sharedFuncs.sh#L197

How does one do this? I am sorry I sound incredibly dumb, I just started using Linux, I have no idea how to add an argument to a script.

Heidegaff avatar Mar 03 '22 01:03 Heidegaff

Add the --insecure argument to the curl command in line 197 of the SharedFuncs.sh library like that curl --insecure $3 -o $1 This is a temporary fix to let curl download without taking care of the expired ssl certificate :) https://github.com/Gictorbit/photoshopCClinux/blob/5f8f0adcdd1bbf22205ce9a0a0f3b95272718e00/scripts/sharedFuncs.sh#L197

How does one do this? I am sorry I sound incredibly dumb, I just started using Linux, I have no idea how to add an argument to a script.

You find the Photoshop install directory. (Not .PhotoshopCC2019 but the non hidden directory.) Then in the folder named scripts you should find sharedfuncs.sh. open the file with a text editor of your choice, add in the line as required and run the installer again. It should then work

silvolde428 avatar Mar 03 '22 03:03 silvolde428

Add the --insecure argument to the curl command in line 197 of the SharedFuncs.sh library like that curl --insecure $3 -o $1 This is a temporary fix to let curl download without taking care of the expired ssl certificate :) https://github.com/Gictorbit/photoshopCClinux/blob/5f8f0adcdd1bbf22205ce9a0a0f3b95272718e00/scripts/sharedFuncs.sh#L197

How does one do this? I am sorry I sound incredibly dumb, I just started using Linux, I have no idea how to add an argument to a script.

You find the Photoshop install directory. (Not .PhotoshopCC2019 but the non hidden directory.) Then in the folder named scripts you should find sharedfuncs.sh. open the file with a text editor of your choice, add in the line as required and run the installer again. It should then work

After git cloning the installation folder into somewhere on your root, open the scripts folder and there should be a file called "SharedFuncs.sh". Open that file using any text editor and change the contents in line 197 from curl $3 -o $1 to curl --insecure $3 -o $1. Then run the installation as normal and you're good to go.

guilherme-n-l avatar Mar 03 '22 12:03 guilherme-n-l

Add the --insecure argument to the curl command in line 197 of the SharedFuncs.sh library like that curl --insecure $3 -o $1 This is a temporary fix to let curl download without taking care of the expired ssl certificate :)

https://github.com/Gictorbit/photoshopCClinux/blob/5f8f0adcdd1bbf22205ce9a0a0f3b95272718e00/scripts/sharedFuncs.sh#L197

Mine using aria2c how to make it use curl?

Waa11a avatar Mar 05 '22 13:03 Waa11a

Hello @Waa11a and @Heidegaff , when I was starting to learn Linux I used the Gictorbit script but after a long time I wanted to improve some things until I finally created my own script. The Gictorbit script is very good, in fact I mention it in my script that has been my inspiration. If you want maybe an easier script that doesn't give you so many errors, try my script: https://github.com/CSMarckitus/Photoshop

CSMarckitus avatar Mar 11 '22 20:03 CSMarckitus

Same bug here, but it worked like a charm after modifying sharedFuncs.sh! 197 curlpkg=$(package_installed curl $3 -o $1 "summary") Thanks

phaedonv avatar Jul 12 '22 16:07 phaedonv