Warning: require_once(../../../wp-load.php): failed to open stream: No such file or directory in /home/name/name-wp/content/plugins/congresslookup/getData.php on line 5
Have you changed your directory structure for your WP install? The wp-load.php is part of core WP and is in the main WP directory which is usually named /wp-content/ (which you have apparently changed the name of in your install). If your core WP files are in /name-wp/ then you need to open /plugins/congresslookup/getData.php file and on line 5 add another directory level to the relative path.
IOW: change (../../../wp-load.php)
to (../../../../wp-load.php)
If you did not change the directory structure of your WP install, and wp-load.php is in your /contents/ directory, then let me know and I’ll have a developer look into the error you are receiving.