You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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?
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
The text was updated successfully, but these errors were encountered: