1For apt (Ubuntu, Debian...):
2
3sudo apt-get install python-dev # for python2.x installs
4sudo apt-get install python3-dev # for python3.x installs
5For yum (CentOS, RHEL...):
6
7sudo yum install python-devel # for python2.x installs
8sudo yum install python3-devel # for python3.x installs
9For dnf (Fedora...):
10
11sudo dnf install python2-devel # for python2.x installs
12sudo dnf install python3-devel # for python3.x installs
13For zypper (openSUSE...):
14
15sudo zypper in python-devel # for python2.x installs
16sudo zypper in python3-devel # for python3.x installs
17For apk (Alpine...):
18
19# This is a departure from the normal Alpine naming
20# scheme, which uses py2- and py3- prefixes
21sudo apk add python2-dev # for python2.x installs
22sudo apk add python3-dev # for python3.x installs
23For apt-cyg (Cygwin...):
24
25apt-cyg install python-devel # for python2.x installs
26apt-cyg install python3-devel # for python3.x installs
11. Go to /public directory remove /storage folder
22. run command
3 ln -s /AnotherAppName/storage/app/public/ /AnotherAppName/public/storage
4 ------------- OR RUN ---------------------
5 php artisan storage:link
1//Remaining is same as before Android 10
2//Only this one extra attribute is required
3
4<application
5 android:requestLegacyExternalStorage="true">
1cloudinary.config({
2 cloud_name: process.env.CLOUDINARY_NAME,
3 api_key: process.env.CLOUDINARY_API_KEY,
4 api_secret: process.env.CLOUDINARY_API_SECRET,
5 shorten: true,
6 secure: true,
7 ssl_detected: true
8})
9
10const response = await cloudinary.uploader.upload(req.file.path)
11console.log(response)