how to uninstall compiled php [closed] - php

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.

Related

Source code appears with apache, why repare? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I own a site installed on my linux server but when I put PHP tags at the beginning of page, the source code appears..
How to avoid all the source code displayed ?
thank you in advance
This means that you are being served the file by Apache without it first being seen (processed) by PHP. Here are some troubleshooting tips as to why it isn't being processed by PHP:
Make sure that your file with the PHP tags ends in .php.
Make sure PHP is installed on your server. To install PHP on a debian server run sudo apt-get install php5

Error :- php is not recognised as an internal or external command [closed]

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.

How can I run XAMPP on startup in Windows? [closed]

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 am using Windows 7 and xampplite 1.7.3.
One of my research gives me idea that I need to start automatically the "APACHE2" on services.msc. But when I go to my services there is no Apache2 there, no apache service at all. Please help me how to start xampp automatically as my PC gets ON.
If you check the svc box on XAMPP control panel the service should start automaticly.

PHP Apache conf issue [closed]

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
My Apache install is having issues starting with PHP? The code below kills the start.
#PHP INSTALL START
PHPIniDir "C:\ws\php"
LoadModule php5_module "C:\ws\php\php5apache2_2.dll"
#PHP END
When I remove it, it starts fine. I really need PHP working, so I can get back to work.
Chances are, that php5apache2_2.dll is missing, or incompatible with your version of Apache.
In any case, check your startup logs for the reason of failure.

Set up PHP to work with MySQL on freeBSD? [closed]

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

Categories