Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 years ago.
Improve this question
php composer.phar install,
php composer.phar update, and
php composer.phar self-update
They all just hang and go nowhere. I wonder why
I had a php ide open with with debug on, and another running program was sitting at a breakpoint, roadblocking any php statement.
It's the second time it happened to me.
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 days ago.
Improve this question
enter image description hereenter image description here
I'm stuck in this error
whenever I create a laravel project i get these errors out of nowhere
this is very confusing
I tried to uninstall and reinstall php
and now checking on my system php -v; i have version 8.2.0
and i have laravel installer : 4.4.0
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed last month.
Improve this question
I use PHP "badfarm/zanzara" Telegramm-bot. I had started it by terminal in browser on my Fornex hosting with command php start_bot.php which refers to script "start_bot.php" execution. After that I have closed terminal but the bot did not stop. It has been running several days by now. How could I stop the bot?
Here is an approximate code sample (it's more complicated in real script):
Download and install htop
Start htop by the same command
Press F4 and input php start_bot.php then press ENTER
F9 and select SIGKILL
Done
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
``
I copy and pasted this project file from another machine. The project works well on the previous machine. But now this error occurred. But other travel projects run without conflict on the new machine.
first composer install
check if server is running
check if the db name is same as the env db name
run php artisan key:generate
then php artisan migrate
then php artisan db:seed
now your project should be working
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 3 years ago.
Improve this question
I'm working on a VPS from OVH with php Symfony 4. I use twig for my view and always work. And a couple days ago all my template is blocked on my old version.
I tried to change some other files like robots.txt, it's work fine. But when I change the HTML of my base.html.twig nothing was change. Futhermore, I tried to restart my VPS and twig still not working. I have no error message, it's working correctly on my dev env but not on my prod env. I have no error message and no clues.
I'm little bit confused, if anyone would have an idea.
Thank you in advance for your help !
Maybe it's cache. Try with:
./bin/console cache:clear
or with
rm -rf var/cache/**
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 years ago.
Improve this question
I downloaded a library and the sample code says to use:
require "php-webdriver/lib/__init__.php";
Looking in the php-webdriver/lib/ directory, I do not see this __init__.php file.
Does this have something to do with me downloading the library rather than installing it via Composer?
This work like auto-loader class in php.
Copy and paste below code in file named init.php
Github