If you want to have a website created and use WordPress together with the WP plugin "Add From Server", you may encounter malfunctions when accessing the admin area.
If a blank page is displayed or you receive a "Call-time pass-by-reference has been removed" error, you should make the following changes to the plugin files:
1) In the file
\wp-content\plugins\add-from-server\class.add-from-server-settings.php
change the following line (approx. line 3):
function __construct($afs) {
to:
function __construct($afs) {
2) In the file
\wp-content\plugins\add-from-server\class.add-from-server.php
change the following line (approx. line 137):
$this->settings = new add_from_server_settings(&$this);
to:
$this->settings = new add_from_server_settings($this);
3) Done.
