phpstorm

PhpStorm - Synology - CLI Interpreter - Updates

主宰稳场 提交于 2020-07-03 05:40:46
问题 I want to create a new project in PhpStorm, but I can't figure out why I can't add a PHP Interpreter in PhpStorm 2020.1.1. First some info: All is starting from my Synology NAS DS415+ with latest DSM 6.2.3-25426. Installed on NAS: Web Station MariaDB 10 phpMyAdmin PHP 7.2 PHP 7.3 Apache HTTP Server 2.4 SSH-connection is added successfully in PhpStorm. Z-driveletter is /web-folder. So, first things first. I created a /composer folder inside my /web folder. Composer.phar is selected in path as

PhpStorm - Synology - CLI Interpreter - Updates

允我心安 提交于 2020-07-03 05:39:45
问题 I want to create a new project in PhpStorm, but I can't figure out why I can't add a PHP Interpreter in PhpStorm 2020.1.1. First some info: All is starting from my Synology NAS DS415+ with latest DSM 6.2.3-25426. Installed on NAS: Web Station MariaDB 10 phpMyAdmin PHP 7.2 PHP 7.3 Apache HTTP Server 2.4 SSH-connection is added successfully in PhpStorm. Z-driveletter is /web-folder. So, first things first. I created a /composer folder inside my /web folder. Composer.phar is selected in path as

Xdebug PHP 7.1 PhpStorm remote server with Docker. How?

陌路散爱 提交于 2020-06-29 03:34:36
问题 Local: - OS: MacOS - IDE: PhpStorm - Debug Port: 10000 - DBGp Proxy Host: 127.0.0.1 - DBGp Proxy Port: 10000 Remote server: - OS: Ubuntu - Run project via docker and expose 10000 port Docker container: - XDEBUG_CONFIG: "default_enable=1 remote_host=172.30.0.1 remote_enable=1 profiler_enable_trigger=0 remote_port=10000" I enable "Listen debug connections" in PhpStorm Run in terminal: ssh -R 10000:127.0.0.1:10000 root@remote-server Add breakpoints Run site page Xdebug not working:( Xdebug log:

What to include in gitignore for a Laravel and PHPStorm project?

假如想象 提交于 2020-06-24 21:31:20
问题 I'm going to be collaborating on a project using Laravel and PHPStorm. After doing some research and working on a few projects, here is the .gitignore I've come up with so far. /bootstrap/compiled.php /vendor /node_modules composer.phar composer.lock .env.*.php .env.php .DS_Store workspace.xml Thumbs.db Are there any other files that I might be overlooking that could cause conflicts? EDIT: For anyone wondering why Flosculus comment is there, I originally posted that I was having issues with

What to include in gitignore for a Laravel and PHPStorm project?

时光怂恿深爱的人放手 提交于 2020-06-24 21:31:16
问题 I'm going to be collaborating on a project using Laravel and PHPStorm. After doing some research and working on a few projects, here is the .gitignore I've come up with so far. /bootstrap/compiled.php /vendor /node_modules composer.phar composer.lock .env.*.php .env.php .DS_Store workspace.xml Thumbs.db Are there any other files that I might be overlooking that could cause conflicts? EDIT: For anyone wondering why Flosculus comment is there, I originally posted that I was having issues with

What to include in gitignore for a Laravel and PHPStorm project?

两盒软妹~` 提交于 2020-06-24 21:30:10
问题 I'm going to be collaborating on a project using Laravel and PHPStorm. After doing some research and working on a few projects, here is the .gitignore I've come up with so far. /bootstrap/compiled.php /vendor /node_modules composer.phar composer.lock .env.*.php .env.php .DS_Store workspace.xml Thumbs.db Are there any other files that I might be overlooking that could cause conflicts? EDIT: For anyone wondering why Flosculus comment is there, I originally posted that I was having issues with

How to connect PhpStorm with Xdebug

拈花ヽ惹草 提交于 2020-06-16 02:53:28
问题 I hope somebody here can help me with my issue: I recently gotten into my first PHP project and need to set up debugging. I'm aware many people had the same problem before me but I struggle to find a solution. I need to set up PhpStorm with Xdebug and with all settings made its still not working and when I start my debug session i get stuck at this with no further information: This is my project setup: Docker Webapp with Xdebug: 0.0.0.0:80->80/tcp, 0.0.0.0:443->443/tcp PhpStorm PHP Debug

How to connect PhpStorm with Xdebug

五迷三道 提交于 2020-06-16 02:53:07
问题 I hope somebody here can help me with my issue: I recently gotten into my first PHP project and need to set up debugging. I'm aware many people had the same problem before me but I struggle to find a solution. I need to set up PhpStorm with Xdebug and with all settings made its still not working and when I start my debug session i get stuck at this with no further information: This is my project setup: Docker Webapp with Xdebug: 0.0.0.0:80->80/tcp, 0.0.0.0:443->443/tcp PhpStorm PHP Debug

Rebasing a local branch from develop

被刻印的时光 ゝ 提交于 2020-06-10 04:58:26
问题 I want to rebase a feature branch from develop. I am using PhpStorm Git integration and I have 2 different develop branches: refs/remotes/origin/develop refs/heads/develop In order to do not mess up things, which one do I have to choose to rebase? 回答1: I don't know the phpstorm interface for Git, but in the command line I'd do the following: git checkout develop git pull origin develop -> this fetches the remote version of the develop branch and merges it (or rebases it, depending on your

Rebasing a local branch from develop

陌路散爱 提交于 2020-06-10 04:58:25
问题 I want to rebase a feature branch from develop. I am using PhpStorm Git integration and I have 2 different develop branches: refs/remotes/origin/develop refs/heads/develop In order to do not mess up things, which one do I have to choose to rebase? 回答1: I don't know the phpstorm interface for Git, but in the command line I'd do the following: git checkout develop git pull origin develop -> this fetches the remote version of the develop branch and merges it (or rebases it, depending on your