No option for built in server php 5.6 [closed] - php

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 6 years ago.
Improve this question
I have php version 5.6, I am trying to get the built in web server running, BUT I have noticed that there is no option for me to even run it. I apologize, I am a intermediate php guy. I was previously using XAMPP to serve it, but I am trying to incorporate my php development into my gulp workflow with browsersync and gulp-connect-php. Any suggestions are much appreciated and thank you. I have attached my CMD screenshot.

I am stupid. I was looking for the version in the XAMPP admin, which was version 5.6, BUT I only have 5.3 on my machine with the php output -v

Related

PHP is installed and running but not loading on page [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 12 months ago.
Improve this question
I have recently installed Apache, MySQL and PHP, but the page is not loading the PHP code, it's interpreted as HTML comment. All services are enabled but haven't got a clue what's going on. Obviously is not possible to reproduce my localhost environment.
I am on Linux Mint 20 and latest Apache/MySQL/PHP.
Does anyone know how to make PHP work?
Your PHP tags are the short ones. In order to enable them, you need to change short_open_tag=On in php.ini, or just write <?php instead of <?.
///BONUS : the short tag '<?=' can be used without editing the php.ini. It's shorter than:
<?php echo $var; ?>
<?= $var; ?>

Undefined PHP functions that should be included [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 3 years ago.
Improve this question
I'm working on a school project, and I have two identical databases on two different PCs. I'm running the same website, identical files, on each one.
On my laptop, the mysqli_stmt_get_result($stmt) function works perfectly, whereas on my desktop it returns an call to unidentified function error. Likewise, mysqli_stmt_close() works fine on my desktop, but not on my laptop.
I'm using php 7.2.1 on my desktop, and 7.2.14 on my laptop, so these should be included...
If you don't have mysqlnd installed/loaded whatever, you will get an undefined reference when trying to call mysqli_stmt_get_result() as according to the comment here. To get more info about how to install mysqlnd driver you can see this discussion

The mysqli extension is missing. Please check your PHP configuration, Windows 7 [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 7 years ago.
Improve this question
I'm using apache24 with PHP 7.0.3. When requesting http://localhost/phpmyadmin/ I get this error:
The mysqli extension is missing. Please check your PHP configuration. See our documentation for more information.
My PHP config has nothing about slqi to uncomment.
I've looked at the thousand other solutions, and most are for linux and I don't know how to do it for windows.
Please make sure the extension=mysqli.dll isn't commented out into php.ini.
Also make sure that you have the mysqli.dll files exist inside the extensions folder of your php installation.

Add typo3 coding guide lines to php sniffer [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 8 years ago.
Improve this question
I am trying to add typo3 coding guide lines for one my project .What i have done is http://forge.typo3.org/projects/team-php_codesniffer/wiki/Using_the_TYPO3_Coding_Standard. Cloned the GIT repository into my local repository and copy/pasted the folders TYPO3 and TYPO3v4 to /opt/lampp/htdocs/PHP_CodeSniffer/CodeSniffer/Standards . and when i tried this command in console ""/opt/lampp/bin/phpcs -i" 'TYPO3 & TYPO3v4' are not showing as installed standards ??
"/opt/lampp/bin/phpcs --standard=TYPO3 index.php
ERROR: the "TYPO3" coding standard is not installed. The installed coding standards are PSR2, PHPCS, PSR1, Zend, PEAR, Squiz and MySource
"

Update PHP within XAMPP on MAC OSX [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've searched a few forums already and I haven't found a definitve answer. I'm aware that the XAMPP development for MAC OSX has been suspended, however I was hoping someone could outline the steps involved or point me to some other resources.
I'm currently using OSX 10.6.8, XAMPP 1.7.3, and PHP 5.3.1.
I guess this question should also expand to the updating of other components like phpmyadmin and mysql.
Thank you in advance!
I use MAMP and Apache/MySQL/PHP which works perfect on my mac
Maybe one of these will be easier to figure out since they are built for mac? Otherwise, sorry can't help!

Categories