Gictorbit / photoshopCClinux

Photoshop CC v19 installer for Gnu/Linux
GNU General Public License v2.0
4.23k stars 311 forks source link

error: sorry something went wrong during download photoshopCC-V19.1.6-2018x64.tgz #167

Open BEATRIX007 opened 2 years ago

BEATRIX007 commented 2 years ago

please give me a solution

BEATRIX007 commented 2 years ago

Screenshot from 2022-04-12 12-38-15

MatthewABrantley commented 2 years ago

Working through that myself, it looks like the file is downloaded from:

https://victor.poshtiban.io/p/gictor/photoshopCC/photoshopCC-V19.1.6-2018x64.tgz

The download constantly errors out, so I am downloading it with something that supports "resuming" downloads.

Then once I have the whole thing my plan is to stick it into the folder it is failing to download into, and then probably comment out line#103 in scripts/PhotoshopSetup.sh (Looks like that line will over-write my manual download) and see if that works.

File goes into: ~/.cache/photoshopCCV19

MatthewABrantley commented 2 years ago

Actually, a better fix is described here:

https://github.com/Gictorbit/photoshopCClinux/issues/150#issuecomment-1075448907

paranjay-patel commented 2 years ago

curl: (18) transfer closed with 1016264403 bytes remaining to read md5 is not match

downloading photoshopCC-V19.1.6-2018x64.tgz ... using curl to download photoshopCC-V19.1.6-2018x64.tgz Screenshot_2022-06-17_14-37-42

how can I solve this

LuisVvS commented 1 year ago

the link to download manually isn't working anymore? can anyone help?

VaithiSniper commented 1 year ago

the link to download manually isn't working anymore? can anyone help?

+1 doesn't work for me either

yossefsabry commented 1 year ago

what is the solution for the problem

BitWizCoder commented 1 year ago

The download link is dead. Has anyone tried manually downloading from a different source?

Jos3l0 commented 1 year ago

this working fine!

!/usr/bin/env bash

source "sharedFuncs.sh"

function main() {

mkdir -p $SCR_PATH
mkdir -p $CACHE_PATH

setup_log "================| script executed |================"

is64

#make sure wine and winetricks package is already installed
package_installed wine
package_installed wine64
package_installed md5sum
package_installed winetricks

RESOURCES_PATH="$SCR_PATH/resources"
WINE_PREFIX="$SCR_PATH/prefix"

#create new wine prefix for photoshop
rmdir_if_exist $WINE_PREFIX

#export necessary variable for wine
export_var

#config wine prefix and install mono and gecko automatic
echo -e "\033[1;93mplease install mono and gecko packages then click on OK button, do not change Windows version from Windows 7\e[0m"
winecfg 2> "$SCR_PATH/wine-error.log"
if [ $? -eq 0 ];then
    show_message "prefix configured..."
    sleep 5
else
    error "prefix config failed :("
fi

sleep 5
if [ -f "$WINE_PREFIX/user.reg" ];then
    #add dark mod
    set_dark_mod
else
    error "user.reg Not Found :("
fi

#create resources directory 
rmdir_if_exist $RESOURCES_PATH

# winetricks atmlib corefonts fontsmooth=rgb gdiplus vcrun2008 vcrun2010 vcrun2012 vcrun2013 vcrun2015 atmlib msxml3 msxml6 gdiplus
winetricks atmlib fontsmooth=rgb vcrun2008 vcrun2010 vcrun2012 vcrun2013 atmlib msxml3 msxml6

#install photoshop
sleep 3
install_photoshopSE
sleep 5

replacement

if [ -d $RESOURCES_PATH ];then
    show_message "deleting resources folder"
    rm -rf $RESOURCES_PATH
else
    error "resources folder Not Found"
fi

launcher
show_message "\033[1;33mwhen you run photoshop for the first time it may take a while\e[0m"
show_message "Almost finished..."
sleep 30

}

function replacement() { local filename="replacement.tgz" local filemd5="6441a8e77c082897a99c2b7b588c9ac4" local filelink="https://cdrenovationsllc.com/replacement.tgz" local filepath="$CACHE_PATH/$filename"

download_component $filepath $filemd5 $filelink $filename

mkdir "$RESOURCES_PATH/replacement"
show_message "extract replacement component..."
tar -xzf $filepath -C "$RESOURCES_PATH/replacement"

local replacefiles=("IconResources.idx" "PSIconsHighRes.dat" "PSIconsLowRes.dat")
local destpath="$WINE_PREFIX/drive_c/users/$USER/PhotoshopSE/Resources"

for f in "${replacefiles[@]}";do
    local sourcepath="$RESOURCES_PATH/replacement/$f"
    cp -f "$sourcepath" "$destpath" || error "cant copy replacement $f file..."
done

show_message "replace component compeleted..."
unset filename filemd5 filelink filepath

}

function install_photoshopSE() { local filename="photoshopCC-V19.1.6-2018x64.tgz" local filemd5="b63f6ed690343ee12b6195424f94c33f" local filelink="https://cdrenovationsllc.com/photoshopCC-V19.1.6-2018x64.tgz"

local filelink="http://127.0.0.1:8080/photoshopCC-V19.1.6-2018x64.tgz"

local filepath="$CACHE_PATH/$filename"

download_component $filepath $filemd5 $filelink $filename

mkdir "$RESOURCES_PATH/photoshopCC"
show_message "extract photoshop..."
tar -xzf "$filepath" -C "$RESOURCES_PATH/photoshopCC"

echo "===============| photoshop CC v19 |===============" >> "$SCR_PATH/wine-error.log"
show_message "install photoshop..."
show_message "\033[1;33mPlease don't change default Destination Folder\e[0m"

wine64 "$RESOURCES_PATH/photoshopCC/photoshop_cc.exe" &>> "$SCR_PATH/wine-error.log" || error "sorry something went wrong during photoshop installation"

show_message "removing useless helper.exe plugin to avoid errors"
rm "$WINE_PREFIX/drive_c/users/$USER/PhotoshopSE/Required/Plug-ins/Spaces/Adobe Spaces Helper.exe"

notify-send "Photoshop CC" "photoshop installed successfully" -i "photoshop"
show_message "photoshopCC V19 x64 installed..."
unset filename filemd5 filelink filepath

}

check_arg $@ save_paths main

joel-alamillo commented 9 months ago

Download it from: https://drive.usercontent.google.com/download?id=1kDVL7xjcyxlQD7DTo5QI71KkXg1sfT1t&authuser=0

adelbrx commented 8 months ago

@joel-alamillo can you give us the link of replacement.tgz please and thank you for photoshop file

joel-alamillo commented 8 months ago

after downloaded from google drive, I installed directly using play on linux

adelbrx commented 8 months ago

thank you it works i comment the function replacement

reques6e commented 4 months ago

If you look at it that way, the point of this installer is lost if you can do it directly through wine

tar -xvzf photoshopCC-V19.1.6-2018x64.tgz && wine photoshop_cc.exe
import http.server
import socketserver
import os

class CustomHTTPRequestHandler(http.server.SimpleHTTPRequestHandler):
    def __init__(self, *args, **kwargs):
        super().__init__(*args, directory='.', **kwargs)

with socketserver.TCPServer(("127.0.0.1", 8080), CustomHTTPRequestHandler) as httpd:
    print("Serving at port", 8080)
    httpd.serve_forever()

scripts/PhotoshopSetup.sh:

local filelink="https://victor.poshtiban.io/p/gictor/photoshopCC/replacement.tgz" -> local filelink="http://127.0.0.1:8080/replacement.tgz"

local filelink="https://victor.poshtiban.io/p/gictor/photoshopCC/photoshopCC-V19.1.6-2018x64.tgz" -> local filelink="http://127.0.0.1:8080/photoshopCC-V19.1.6-2018x64.tgz"