Unable to checkout wso2 samples - wso2

I am trying to checkout wso2 tutorials as mentioned at this link:
https://docs.wso2.com/display/IS500/Configuring+Single+Sign-On+with+SAML+2.0#ConfiguringSingleSign-OnwithSAML2.0-Prerequisites
Using the svn I am getting next error:
Could anyone please suggest the solution - how to avoid this error ?

Looks like you are having a problem with your svn client.
You can either got URL from browser and download the content or use command line tool to download the content.
http://svn.wso2.org/repos/wso2/carbon/platform/branches/turing/products/is/5.0.0/modules/samples/sso/
wget -r --no-parent http://svn.wso2.org/repos/wso2/carbon/platform/branches/turing/products/is/5.0.0/modules/samples/sso/

Related

ERROR: Unable to download webpage: HTTP Error 403: Forbidden in youtube-dl

I want to download Udemy site videos with youtube-dl.
This is a sample code:
enter image description here
I also used the following command but the problem was not solved
youtube-dl --rm-cache-dir
I also use the latest version of youtube-dl.
Please help me!
https://github.com/ytdl-org/youtube-dl/issues/26600
It's a known issue. There's no fix for it at this time. Udemy changed how their cookies and session-id's are handled.
First, find the directory which youtube-dl
For me it was '/usr/bin/youtube-dl' in Ubuntu 20.04.
Then grant the permission sudo chmod a+rx /usr/bin/youtube-dl.
Then enter the command.
This worked for me though the download speed is really low.
Hope this will work for you as well.
** Try --verbose if the problem is still there.

How to Download and install Coldfusion in Local Linux?

Am newbie to Coldfusion,Am tried to download and install coldfusion in my local using below link,
Download link
Once am filled form Got error like below image.
How to download and install coldfusion in linux?Is it possible to download and install in localhost?
#geetha-janarthanan , Error 403 might be coming from the broswer. Please try an alternate browser. I just tried the download link in IE/Chrome (latest version) and its downloading correctly.

'.' is not recognized

I was following this tutorial for aws-php sdk Tutorial.
I Installed composer manually by using Composer-Setup.exe.
So when I am trying to install composer by clicking composer.json>Composer>install
this error appeared.
And if you have some proper tutorial for using php-sdk, please comment it here.
The tutorial is 2years outdated.
What you are trying to do is execute composer.
The correct way to execute composer in a windows based system is:
php composer.phar install
or
c:\path\to\php php composer.phar install
The approach of using ./ works with linux based systems after you have made the file executable. You generally do not require that in windows.
Go through the following links for details:
https://www.codementor.io/php/tutorial/composer-install-php-dependency-manager
https://www.codementor.io/php/tutorial/composer-install-php-dependency-manager

Django hosting on pythonanywhere.com/

How can I upload my finished django local project to pythonanywhere.com? Is there any option or I should to do file by file?
I have right now something like this My Django website on pythonanywhere
but I don't see there how to upload my finished project :(
I uploaded a zip file but how to unzip it by bash console?
To unzip the file from a bash console, just start one from the "Consoles" tab and then run unzip filename.zip.
from here:
Getting code and content in and out is easy — you can use our built-in
browser-based editor and Bash consoles, scp, or you can use git,
mercurial and other VCS's to push and pull your code. You can even
sync up via Dropbox.
update
The Dropbox feature is not available anymore, and see first comment below

Facebook SDK 4.0 - Composer Not Finding Repository

I'm trying to download the facebook/php-sdk-v4 repository into my project, running the "php composer.phar update" command.
I recently added this to the require section of my composer.json file:
"facebook/php-sdk-v4": "4.0.*",
Upon running the update command, I am given the following error:
---> Your requirements could not be resolved to an installable set of packages.
Problem 1
- The requested package facebook/php-sdk-v4 1.0.0 could not be found.
It seems that I have set it up exactly according to the Facebook Graph API instructions as listed on this page:
https://developers.facebook.com/docs/php/gettingstarted/4.0.0
But... It's still unable to find the repository.
Does anybody know the name of the Facebook SDK 4.0 repository or see any reason why this process I am following isn't working?
Thanks for listening!