Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
Since I'm using komodo in ubuntu, I notice that there is no support for PHP's syntax checking. I'm asked to "enter the path to your PHP executable below" but I cannot find such file in my PHP folder...
Where can I find it?
On my Ubuntu system it's /usr/bin/php:
$ whereis php
php: /usr/bin/php
It's usually at /usr/bin/php or maybe /bin/php.
Related
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
So this is my path I have:
C:\wamp\bin\php\php5.4.3
And my php.exe file is in that folder...
I have tried to put:
C:\wamp\bin\php\php5.4.3;
C:\wamp\bin\php\php5.4.3\php.exe
C:\wamp\bin\php
C:\wamp\bin\php;
But none of is not working.
I have no idea why its not working...
Thanks
PHP is not included in your PATH.
Right click your My Computer, then Properties, Advanced System Settings, Environment Variables and then find PATH variable, add your PHP installation dir there. Close your previously launched CMDs, re-launch it, it should work now.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I installed php with make install. Now I go to the directory I compiled my php and do make uninstall. It throws this error make: *** No rule to make target 'uninstall'. stop..
What is going on?
Centos6
PHP 5
If there is no 'uninstall' target, there isn't any automated way to uninstall and remove files.
If by luck you built your php in a 100% dedicated directory (/opt/your/php for example) then uninstalling may be as simple as removing this dedicated directory, as everything generated at build/compile time will be contained inside this directory.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
where can I find precompiled v8js dll for windows? I search but i find only the sources!
There are v8 windows builds available at the project downloads page
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
On my freeBSD machine i installed both php5 and mysql. Both work great independent of eachother, but not together. For example ,when running a simple mysql_connect, it says 'undefined function' Also, on the PHP info page, theres nothing concerning MySQL.
I'm thinking theres an extra step to the php installation to make it work with MySQL.
Any suggestions?
Got it.
sudo portinstall databases/php5-mysql
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I've looked on
etc/apache/httpd.conf
/etc/httpd/conf/http.conf
/etc/httpd/http.conf
Is there somewhere else where this file can be?? Am I missing something...?
Run the following command on the command line:
apachectl configtest
This should attempt to test the config, and it should also tell you where it's testing the config from.
run the following command:
cd /
sudo find *.conf
this should find all .conf files for you, just look threw and see what there is
More information on this command located here: https://help.ubuntu.com/community/find