Basically, the file was broken some where along the way from Windows7 to Ubuntu.
How can I look at a binary representation of the file to see what happened?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
PHP command line script still have to have the
<?phpopener in them.will not work, it has to be
This is because there’s no such thing as a “php script”. There are only various text files that have PHP code blocks embedded within them. Even in CLI mode, PHP expects/requires to see at least one
<?phpblock. Otherwise the interpreter won’t kick in and won’t see any of the code, even though you’ve stated it’s a PHP script with the shebang.PHP cli mode is basically a hacked-in afterthought. PHP started out as a server-side CGI script parser and has not fundamentally changed from that mode.