Authentication Using OAuth Failed SmartGit Resolution

When I use SmartGit on windows to clone/sync one of my example repositories from bitbucket.org, I meet the HTTP authentication failed error. The detailed error message is The OAuth-access token could not be requested. Most likely your Bitbucket configuration has changed and SmartGit’s stored OAuth credentials are invalid. To resolve, recreate the Bitbucket hosting provider

Authentication Using OAuth Failed SmartGit Resolution Read More »

How To Fix No Add New Button In Fresh Installed WordPress WebSite Appearance And Plugins Page

I install a WordPress website on my local computer first. Then I upload the local WordPress website’s folder to my VPS server. I also import the local WordPress website SQL data into the online WordPress website MySQL database. But when I log in to the WordPress website, I find there is no Add New button

How To Fix No Add New Button In Fresh Installed WordPress WebSite Appearance And Plugins Page Read More »

How To Use Babel To Fix ParseError: ‘import’ and ‘export’ may appear only with ‘sourceType: module’

When I run the command browserify ./js/test1.js -o build.js in the terminal to bundle some js files into one, it throws the error message like ParseError: ‘import’ and ‘export’ may appear only with ‘sourceType: module’. This article will tell you how to fix it using babel to transcompile the js file source code to ES

How To Use Babel To Fix ParseError: ‘import’ and ‘export’ may appear only with ‘sourceType: module’ Read More »

How To Fix Error: Can’t walk dependency graph: Cannot find module from When Run Browserify

When I open a terminal and run the command browserify ./lib/test1.js -o build.js to bundle the file ./lib/test1.js and all it’s dependent js module files into the build.js file, I meet the error Can’t walk dependency graph: Cannot find module ‘core-js/modules/es.array.iterator.js’ from ‘. This article will tell you how to fix this error.

How To Fix Error: Can’t walk dependency graph: Cannot find module from When Run Browserify Read More »

How To Fix Error The term is not recognized as the name of a cmdlet, function, script file, or operable program

When I run the command browserify on the terminal after I install it on windows, it shows the error message browerify : The term ‘browerify’ is not recognized as the name of a cmdlet, function, script file, or operable program. This article will tell you how to fix it.

How To Fix Error The term is not recognized as the name of a cmdlet, function, script file, or operable program Read More »