René's URL Explorer Experiment


Title: nvim freezes on xdebug connection, then `Error starting Vdebug: ` in the statusline · Issue #500 · vim-vdebug/vdebug · GitHub

Open Graph Title: nvim freezes on xdebug connection, then `Error starting Vdebug: ` in the statusline · Issue #500 · vim-vdebug/vdebug

X Title: nvim freezes on xdebug connection, then `Error starting Vdebug: ` in the statusline · Issue #500 · vim-vdebug/vdebug

Description: I'm an Xdebug n00b, so excuse me if this is something dumb and I just don't know what I'm doing. I believe my configs are setup correctly. I'm using nvim, but have Local by Flywheel for setting up my development environment. I could only...

Open Graph Description: I'm an Xdebug n00b, so excuse me if this is something dumb and I just don't know what I'm doing. I believe my configs are setup correctly. I'm using nvim, but have Local by Flywheel for setting up ...

X Description: I'm an Xdebug n00b, so excuse me if this is something dumb and I just don't know what I'm doing. I believe my configs are setup correctly. I'm using nvim, but have Local by Flywheel...

Opengraph URL: https://github.com/vim-vdebug/vdebug/issues/500

X: @github

direct link

Domain: patch-diff.githubusercontent.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"nvim freezes on xdebug connection, then `Error starting Vdebug: \u003cclass 'EOFError'\u003e` in the statusline","articleBody":"I'm an Xdebug n00b, so excuse me if this is something dumb and I just don't know what I'm doing.\r\nI believe my configs are setup correctly. I'm using nvim, but have _Local by Flywheel_ for setting up my development environment. I could only find one other person on the Internet who's doing the same thing:\r\nhttps://webdevstudios.com/2019/04/16/debugging-wordpress-with-local-by-flywheel-neovim-and-xdebug/\r\nBut I believe their tutorial is outdated.\r\n\r\nBasically, I mark a breakpoint, start Vdebug. Then:\r\n**/tmp/xdebug.log**\r\n```\r\nStarted\r\nListening on port 9000\r\n```\r\n\r\n...nothing happens, until I go to localhost:9000; then:\r\n\r\n```\r\nFound client\r\nFinishing socket server\r\nGot connection, starting\r\ncreate session\r\nkeymapper: reload_keys\r\nstart session\r\n```\r\nAt this point, nvim is locked up. I can't move the cursor up or down, can't run any vim commands.\r\n`localhost:9000` is still spinning at this point and hasn't loaded anything. When I stop the page, nvim frees up again.\r\nHowever, it spits out `Error starting Vdebug: \u003cclass 'EOFError'\u003e` in the statusline.\r\nThe Vdebug buffers have never opened at any point along the way.\r\n\r\n**~/.vimrc**\r\n```\r\n\" Vdebug\r\nlet g:vdebug_options = {\r\n\\   \"port\"                : \"9000\",\r\n\\   \"server\"              : \"127.0.0.1\",\r\n\\   \"timeout\"             : 20,\r\n\\   \"on_close\"            : \"detach\",\r\n\\   \"break_on_open\"       : 0,\r\n\\   \"ide_key\"             : \"vdebug\",\r\n\\   \"debug_window_level\"  : 0,\r\n\\   \"debug_file_level\"    : 2,\r\n\\   \"path_maps\"           : { \"/app/public/\": \"/home/dan/Local Sites/surgicorps/app/public/\" },\r\n\\   \"debug_file\"          : \"/tmp/xdebug.log\",\r\n\\   \"watch_window_style\"  : \"compact\",\r\n\\   \"layout\"              : \"horizontal\",\r\n\\   \"marker_default\"      : \"⬦\",\r\n\\   \"marker_closed_tree\"  : \"▸\",\r\n\\   \"marker_open_tree\"    : \"▾\"\r\n\\}\r\n```\r\n\r\n**php.ini**\r\n```\r\n[xdebug]\r\n{{#if os.windows}}\r\nzend_extension = php_xdebug.dll\r\n{{else}}\r\nzend_extension = {{extensionsDir}}/xdebug.so\r\n{{/if}}\r\n\r\nxdebug.remote_enable=1\r\nxdebug.remote_connect_back=On\r\nxdebug.remote_handler=dbgp\r\nxdebug.remote_port=\"9000\"\r\nxdebug.remote_host=\"127.0.0.1\"\r\nxdebug.idekey=\"vdebug\"\r\nxdebug.profiler_enable=1\r\nxdebug.remote_autostart=1\r\nxdebug.show_error_trace=On\r\n```\r\n\r\n**nvim**\r\n```\r\nNVIM v0.4.4\r\nBuild type: Release\r\nLuaJIT 2.1.0-beta3\r\nCompilation: /usr/bin/cc -g -O2 -fdebug-prefix-map=/build/neovim-aKIhK1/neovim-0.4.4=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=1 -DDISABLE_LOG -Wdate-time -D_FORTIFY_SOURCE=1 -O2 -DNDEBUG -DMIN_LOG_LEVEL=3 -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wshadow -Wconversion -Wmissing-prototypes -Wimplicit-fallthrough -Wvla -fstack-protector-strong -fno-common -fdiagnostics-color=always -DINCLUDE_GENERATED_DECLARATIONS -D_GNU_SOURCE -DNVIM_MSGPACK_HAS_FLOAT32 -DNVIM_UNIBI_HAS_VAR_FROM -I/build/neovim-aKIhK1/neovim-0.4.4/build/config -I/build/neovim-aKIhK1/neovim-0.4.4/src -I/usr/include -I/usr/include/lua5.1 -I/build/neovim-aKIhK1/neovim-0.4.4/build/src/nvim/auto -I/build/neovim-aKIhK1/neovim-0.4.4/build/include\r\nCompiled by team+vim@tracker.debian.org\r\n\r\nFeatures: +acl +iconv +tui\r\nSee \":help feature-compile\"\r\n\r\n   system vimrc file: \"$VIM/sysinit.vim\"\r\n  fall-back for $VIM: \"/usr/share/nvim\"\r\n```\r\n\r\n**nvim :checkhealth**\r\n```\r\nhealth#nvim#check\r\n========================================================================\r\n## Configuration\r\n  - OK: no issues found\r\n\r\n## Performance\r\n  - OK: Build type: Release\r\n\r\n## Remote Plugins\r\n  - OK: Up to date\r\n\r\n## terminal\r\n  - INFO: key_backspace (kbs) terminfo entry: key_backspace=\\177\r\n  - INFO: key_dc (kdch1) terminfo entry: key_dc=\\E[3~\r\n  - INFO: $COLORTERM='truecolor'\r\n\r\n## tmux\r\n  - OK: escape-time: 0ms\r\n  - INFO: $TERM: tmux-256color\r\n\r\nhealth#provider#check\r\n========================================================================\r\n## Clipboard (optional)\r\n  - OK: Clipboard tool found: xclip\r\n\r\n## Python 2 provider (optional)\r\n  - INFO: `g:python_host_prog` is not set.  Searching for python2 in the environment.\r\n  - INFO: Multiple python2 executables found.  Set `g:python_host_prog` to avoid surprises.\r\n  - INFO: Executable: /usr/bin/python2\r\n  - INFO: Other python executable: /bin/python2\r\n  - INFO: Python version: 2.7.18\r\n  - INFO: pynvim version: 0.4.2\r\n  - OK: Latest pynvim is installed.\r\n\r\n## Python 3 provider (optional)\r\n  - INFO: `g:python3_host_prog` is not set.  Searching for python3 in the environment.\r\n  - INFO: Multiple python3 executables found.  Set `g:python3_host_prog` to avoid surprises.\r\n  - INFO: Executable: /usr/bin/python3\r\n  - INFO: Other python executable: /bin/python3\r\n  - INFO: Python version: 3.8.5\r\n  - INFO: pynvim version: 0.4.2\r\n  - OK: Latest pynvim is installed.\r\n```\r\n\r\n**php_info() | PHP -v 7.4.3**\r\n![image](https://user-images.githubusercontent.com/23065167/106795676-5d00f180-6628-11eb-9ab7-b26b040c0e03.png)\r\n","author":{"url":"https://github.com/l00sed","@type":"Person","name":"l00sed"},"datePublished":"2021-02-03T19:13:20.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/500/vdebug/issues/500"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:959af36e-f8e9-8e2c-411f-a7283d218b01
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idCF82:5CD99:4BE73F:625DC6:698E8ABE
html-safe-nonce3422cdde77a6cca37c23b09446453264c1cdf36dae599637ddd4d6fcae730554
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDRjgyOjVDRDk5OjRCRTczRjo2MjVEQzY6Njk4RThBQkUiLCJ2aXNpdG9yX2lkIjoiODM2NTAyOTcyNjUzMjU2OTc5MCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac55f688ccdf84da175f0890f94dc36b2d49a0cbd7753559c254a9e0bd16a55e6e
hovercard-subject-tagissue:800619528
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/vim-vdebug/vdebug/500/issue_layout
twitter:imagehttps://opengraph.githubassets.com/c1eb6816189e6c40ebca0fac694eaf31b35b09d790c25917db5fda3c2a7958aa/vim-vdebug/vdebug/issues/500
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/c1eb6816189e6c40ebca0fac694eaf31b35b09d790c25917db5fda3c2a7958aa/vim-vdebug/vdebug/issues/500
og:image:altI'm an Xdebug n00b, so excuse me if this is something dumb and I just don't know what I'm doing. I believe my configs are setup correctly. I'm using nvim, but have Local by Flywheel for setting up ...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamel00sed
hostnamegithub.com
expected-hostnamegithub.com
Nonecb2828a801ee6b7be618f3ac76fbf55def35bbc30f053a9c41bf90210b8b72ba
turbo-cache-controlno-preview
go-importgithub.com/vim-vdebug/vdebug git https://github.com/vim-vdebug/vdebug.git
octolytics-dimension-user_id37241739
octolytics-dimension-user_loginvim-vdebug
octolytics-dimension-repository_id4597834
octolytics-dimension-repository_nwovim-vdebug/vdebug
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id4597834
octolytics-dimension-repository_network_root_nwovim-vdebug/vdebug
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasee6b91a7e6e46287d26887e3fb7a4161657bab8f7
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/vim-vdebug/vdebug/issues/500#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fvim-vdebug%2Fvdebug%2Fissues%2F500
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fvim-vdebug%2Fvdebug%2Fissues%2F500
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=vim-vdebug%2Fvdebug
Reloadhttps://patch-diff.githubusercontent.com/vim-vdebug/vdebug/issues/500
Reloadhttps://patch-diff.githubusercontent.com/vim-vdebug/vdebug/issues/500
Reloadhttps://patch-diff.githubusercontent.com/vim-vdebug/vdebug/issues/500
vim-vdebug https://patch-diff.githubusercontent.com/vim-vdebug
vdebughttps://patch-diff.githubusercontent.com/vim-vdebug/vdebug
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fvim-vdebug%2Fvdebug
Fork 158 https://patch-diff.githubusercontent.com/login?return_to=%2Fvim-vdebug%2Fvdebug
Star 1.3k https://patch-diff.githubusercontent.com/login?return_to=%2Fvim-vdebug%2Fvdebug
Code https://patch-diff.githubusercontent.com/vim-vdebug/vdebug
Issues 48 https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/issues
Pull requests 7 https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/pulls
Actions https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/actions
Projects 0 https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/projects
Wiki https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/wiki
Security 0 https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/security
Insights https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/pulse
Code https://patch-diff.githubusercontent.com/vim-vdebug/vdebug
Issues https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/issues
Pull requests https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/pulls
Actions https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/actions
Projects https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/projects
Wiki https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/wiki
Security https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/security
Insights https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/pulse
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/vim-vdebug/vdebug/issues/500
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/vim-vdebug/vdebug/issues/500
nvim freezes on xdebug connection, then Error starting Vdebug: in the statuslinehttps://patch-diff.githubusercontent.com/vim-vdebug/vdebug/issues/500#top
https://github.com/l00sed
https://github.com/l00sed
l00sedhttps://github.com/l00sed
on Feb 3, 2021https://github.com/vim-vdebug/vdebug/issues/500#issue-800619528
https://webdevstudios.com/2019/04/16/debugging-wordpress-with-local-by-flywheel-neovim-and-xdebug/https://webdevstudios.com/2019/04/16/debugging-wordpress-with-local-by-flywheel-neovim-and-xdebug/
https://user-images.githubusercontent.com/23065167/106795676-5d00f180-6628-11eb-9ab7-b26b040c0e03.png
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.