Search This Blog

Showing posts with label Error. Show all posts
Showing posts with label Error. Show all posts

Monday, August 31, 2020

Solved : VSCode: Debugging Error “Breakpoint set but not yet bound" - Angular, Node

 Hi, 

I was facing issue while setting up debugger with chrome with Angular app. My Chrome Launch configuration was : 


    "configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome",
"url": "http://localhost:4200",
"webRoot": "${workspaceFolder}"
}


After investigation found that it was not able to figure out webRoot correctly since my app was one more level down into app folder hence i have changed webRoot Path as below which did trick for me :) 


    "configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome",
"url": "http://localhost:4200",
"webRoot": "${workspaceFolder}/myAppStore/"
}

Relaunched the debug and it worked.

Cheers,

Kapil 


Tuesday, August 9, 2016

Solved Git Error : File name is too long : Stash .


Getting following error while doing git stash (Stashing takes the dirty state of your working directory — that is, your modified tracked files and staged changes — and saves it on a stack of unfinished changes that you can reapply at any time.)

error: lstat("filename "): Filename too long

to solve this i have applied  following then it works

git config core.longpaths true

Cheers,

Kapil

Thursday, October 29, 2015

Solved : Problem accessing /solr/gettingstarted/update. Reason: Not Found , Powered by Jetty:

Recently when i was setting up solr version 5 .. i was trying to load the examples doc given with the package  :

I was facing following error which was due to missing core into Solr when i followed steps given in
the solr document :



Run following commands to post data successfully  to solr with version 5.0 on windows machine


:bin>solr start
:bin>solr create -c gettingstarted
:exampledocs>java -Dc=gettingstarted -jar post.jar *.xml


Cheers
Kapil


Tuesday, October 13, 2015

Solved : Unable to elevate [error:1812 ] Error andriod


Recently while installing android SDK , I was getting following error

"Unable to elevate" error


Solution I tried :

1. Run installer as a administrator
2. Still an issue then disable Firwall and Antivirus .

It solved the problem.

Cheers ,

Kapil

Wednesday, September 9, 2015

Solved : Error resolving version for plugin 'org.apache.tomcat.maven:tomcat7-maven-plugin

Recently I was setting up maven project and trying to deploy application after build on the tomcat server  but during setup POM.xml it was giving following warning message  . 

"Error resolving version for plugin 'org.apache.tomcat.maven:tomcat7-maven-plugin "

After doing some R&D and then i was able to found the solution as below :

Following lines in POM.xml was culprit of the  error "Error resolving version for plugin 'org.apache.tomcat.maven:tomcat7-maven-plugin ":



<plugin>



<groupId>org.apache.tomcat.maven</groupId>


<artifactId>tomcat7-maven-plugin</artifactId>


<configuration>
<path>/</path>
<httpsPort>8080</httpsPort>


</configuration>
 </plugin>

Solution :  Added correct version of plugin as below  to fix this issue :



<plugin>

<groupId>org.apache.tomcat.maven</groupId>

<artifactId>tomcat7-maven-plugin</artifactId>
 >2.0</version>
<configuration>
<path>/</path>
<httpsPort>8080</httpsPort>

</configuration>
</plugin

 

Cheers

Kapil



Popular Posts