Embark on a journey of knowledge! Take the quiz and earn valuable credits.
Take A QuizChallenge yourself and boost your learning! Start the quiz now to earn credits.
Take A QuizUnlock your potential! Begin the quiz, answer questions, and accumulate credits along the way.
Take A QuizGeneral Tech Bugs & Fixes 2 years ago
Posted on 16 Aug 2022, this text provides information on Bugs & Fixes related to General Tech. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.
I tried "php -v"
A command like this will only work if you have the CLI version of PHP installed. If you have only the Apache module version of PHP this will not work.
You can install the CLI version with this command:
apt-get install php5-cli
That should make the info and version commands work.
If PHP was installed via your package manager then a command like this might give useful results.
# dpkg -l | grep php ii libapache2-mod-php5 5.3.3-7+squeeze17 server-side, HTML-embedded scripting language (Apache 2 module) ii libphp-phpmailer 5.1-1 full featured email transfer class for PHP ii libzend-framework-php 1.11.9-0ubuntu1 a simple, straightforward, open-source software framework for PHP 5 ii libzend-framework-zendx-php 1.11.9-0ubuntu1 a simple, straightforward, open-source software framework for PHP 5 ii php-apc 3.1.3p1-2 APC (Alternative PHP Cache) module for PHP 5 ii php-html-common 1.2.5-1 A base class for other HTML classes hi php-html-template-it 1.3.0-1 Integrated Templates ...
If PHP wasn't installed with your package manager and instead manually installed, then you might have to simply create a PHP script that looks like this and then access that script through your web browser.
No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that
you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice
sessions to improve your knowledge and scores.
Q
Which operating system you favour and why?
General Tech
10 Answers
Q
What are the most popular tech portals in India?
General Tech
7 Answers
Q
What are best technologies available today for education / aiding learning?
General Tech
3 Answers
Q
What professional training certifications are most marketable?
General Tech
9 Answers
Q
Q
What is the full form of NABARD ?
Banking, Finance & Insurance
Q
How to refresh app upon shaking the device?
Mobile Technologies
Q
What are the govt exams after BCA?
Career Talk
Q
TYPO3 v8. Override function in Core class
General Tech
Q
Why do people in India give so much importance to Government jobs?
Commerce & Accounting
Q
Will Satellite Connectivity in Smartphones Make Mobile Networks Obsolete?
Mobile Technologies
0 Answers
Q
Will Augmented Reality (AR) and Virtual Reality (VR) Revolutionize Mobile Gaming?
Mobile Technologies
0 Answers
Q
Can Smartphones Fully Replace Laptops for Work and Productivity?
Mobile Technologies
0 Answers
Q
Is Foldable Smartphone Technology the Future or Just a Trend?
Mobile Technologies
0 Answers
Q
How Will AI and Machine Learning Shape the Future of Mobile Devices?
Mobile Technologies
0 Answers
Join Our Community Today
Ready to take your education and career to the next level? Register today and join our
growing community of learners and professionals.
manpreet
Best Answer
2 years ago
I'm running Debian 6 and I need to know what version of PHP I'm running, is there a command for this which I can run?
I tried "php -i" and "php -v" from a previous question..