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
It looks like this piece is missing in FX.php 6.0, snippet from my copy of FX.php 4.5.3
} elseif( $this->isFOpenQuery ) {
$f = fopen( $this->dataServer, 'rb' );
$data = '';
if( ! $f ) {
return new FX_Error( "Failed to retrieve FOpen( '" . $this->dataServer . "', 'rb' ) File not found?" );
} else {
while( ! feof( $f ) )
$data .= fread( $f, 4096 );
fclose( $f );
}
I see the $this->isPostQuery part is missing too, will grep
Found in: datasource_classes/RetrieveFM7Data.class.php
Now only the sample code is missing, but I guess it's better to read the function and reconstruct.
WPE is too slow.
... and unstable.
The text was updated successfully, but these errors were encountered: