Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have recently installed Win8 on my computer. Then I instaled wamp 2.2 with php 5.4 and I am unable to make short tag work.

I have already put:

"short_open_tag = On"

into the php.ini file and I am sure that apache is loading the right file because the path to "Loaded Configuration File" in phpinfo() is good.

I would be glad for any piece of advice. Thanks.

share|improve this question
5  
Did you restart WAMP after making the change to your php.ini file? – Wayne Whitty Sep 25 '12 at 8:57
3  
WARNING! did you read the comment above the short_open_tag? -> "It's been recommended for several years that you not use the short tag "short cut" and instead to use the full <?php and ?> tag combination. With the wide spread use of XML and use of these tags by other languages, the server can become easily confused and end up parsing the wrong code in the wrong context. But because this short cut has been a feature for such a long time, it's currently still supported for backwards compatibility, but we recommend you don't use them." – Jelmer Sep 25 '12 at 9:00
<?=$someVar; ?> (as replace for <?php echo) should work regardless of the setting short_open_tag in PHP 5.4. Anything other you want to do with short tags isn't recommended, strongly! – Dan Lee Sep 25 '12 at 9:04
@DanLee a lot of people are still using 5.3 and lower. But yes, don't use the short opening tags. – Dainis Abols Sep 25 '12 at 9:07
1  
@DainisAbols I am referring to his question: Then I instaled wamp 2.2 with php 5.4 – Dan Lee Sep 25 '12 at 9:08

1 Answer

Set the :

asp_tags = On and short_open_tag = On 

in both the files \apache\Apache2.2.22\bin\php.ini and \bin\php\php5.4\php.ini and then restart the apache server.

If you don't have access to the php.ini you can try to enable them trough the .htaccess file but it's possible the hosting company disabled this if you are on shared hosting:

php_value short_open_tag 1

Remember to restart your service (apache2, etc) for the edits to php.ini to take effect.

share|improve this answer
I restarted apache, that wasn't a problem I also added aspt_tags but still not working.. So i replaced all the shorten tags and I will not use I guess – mark_ello Sep 25 '12 at 12:18
This solution only worked for me if I did the php_value short_open_tag 1 inside .htaccess. Not sure why it wouldn't work in php.ini, it is showing on in phpinfo() and I have restarted apache. using PHP 5.4- maybe that's it? – Eric Leroy Jun 5 at 20:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.