I am using the trial but cant seem to get live PHP syntax check to work.
When I remove the ";" from any code line endings and save the error isnt reported. How do I fix this?
Thanks
Live PHP Syntax Checking
Moderator: kfury77
Forum rules
Please try to follow these guidelines. This will help to receive faster and more accurate response.
Please try to follow these guidelines. This will help to receive faster and more accurate response.
- Check the Support section of the corresponding product first. Chances are you will find your answer there;
- Do not create new topics for already reported problems. Add your comments to the existing topics instead;
- Create separate topic for each problem request. Do NOT post a number of non-related problem reports in a single topic;
- Give your topic a meaningful title. Titles such as "A question," "Bug report" and "Help!" provide others no clue what your message is about;
- Include the version number of the software you are using;
- This is not an official customer support helpdesk. If you need a prompt and official response, please contact our support team directly instead. It may take a while until you receive a reply in the forum;
Re: Live PHP Syntax Checking
Have you entered the path to your local php.exe file in "Options->Preferences->PHP Settings" ?
And enabled the checkbox on the same config page?
Then it should highlight the first line with errors..
And enabled the checkbox on the same config page?
Then it should highlight the first line with errors..
There are 10 types of people in the world: Those who understand binary and those who don't.
Re: Live PHP Syntax Checking
I have the same problem. Live PHP syntax checking does not work. Path to php.exe is correct. I can start and debug projects, even the button for syntax check is working. I tried different versions of PHP - without success. The corrensponding checkbox is checked, of course.
I am using the portable version of Rapid PHP 13.2 (13.2.0.164) on Windows 7.
I am using the portable version of Rapid PHP 13.2 (13.2.0.164) on Windows 7.
Re: Live PHP Syntax Checking
The error is reported after you press enter to start writing a new line so to test it, remove the ; and then press enter.
Blumentals Software Programmer
Re: Live PHP Syntax Checking
I receive no error after this code:
And it prints a good result...
Code: Select all
echo("Acesta este PJP?")
Re: Live PHP Syntax Checking
In PHP this is allowed and will execute:
but this isn't:
Code: Select all
<?php
echo("Acesta este PJP?")
?>
Code: Select all
<?php
echo("Acesta este PJP?")
echo("Acesta este PJP?")
?>
Blumentals Software Programmer