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
There is an error in the code editing the windows file on the linux server.
command.php
oldcode line 29: file_put_contents($PATH,$content);
newcode line29: file_put_contents($PATH,str_replace("\n","\r\n",$content));
editor.php
oldcode line 302: file_put_contents($PATH,$content);
newcode line302: file_put_contents($PATH,str_replace("\n","\r\n",$content));
The text was updated successfully, but these errors were encountered:
There is an error in the code editing the windows file on the linux server.
command.php
oldcode line 29: file_put_contents($PATH,$content);
newcode line29: file_put_contents($PATH,str_replace("\n","\r\n",$content));
editor.php
oldcode line 302: file_put_contents($PATH,$content);
newcode line302: file_put_contents($PATH,str_replace("\n","\r\n",$content));
The text was updated successfully, but these errors were encountered: