Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Request fix, mode needs to be set explicitly to 'b' in the popen2.popen2() function #1

Open
ohlogic opened this issue Sep 21, 2014 · 1 comment

Comments

@ohlogic
Copy link

ohlogic commented Sep 21, 2014

line 16 of php.py needs to be changed to :

(out, inp) = popen2.popen2("php", mode='b')

This fixes an error when sending a string over 4KB (for example, to a write to file function)

Also, just to note, to resolve another error that might occur in one's application code, escape the single quote in a string sent to php code within python. e.g., str = str.replace("'", "'")

TY

@brool
Copy link
Owner

brool commented Oct 11, 2014

Thank you! I'm trying to make a test case for this so I can know that I've fixed the bug -- would it be possible for you to give me the case that you hit?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants