• i am migrating to a new server, and now there is a Parse error: syntax error, unexpected end of file in /wp-content/plugins/seo-ultimate/modules/author-links/author-links.php on line 1….i am a newbie at code.any and all help greatly appreciated

    <?php/** * Author Highlighter Module * * @since 7.4 if (class_exists(‘SU_Module’)) {define(‘SU_AUTHORLINKS_MODE_OFF’, 0);define(‘SU_AUTHORLINKS_MODE_SINGLEAUTHOR’, 1);define(‘SU_AUTHORLINKS_MODE_MULTIAUTHOR’, 2);class SU_AuthorLinks extends SU_Module { function get_module_title() { return __(‘Author Highlighter’, ‘seo-ultimate’); } function get_parent_module() { return ‘misc’; } function get_settings_key() { return ‘author-links’; } function init() { add_filter(‘user_contactmethods’, array(&$this, ‘add_google_profile_field’)); add_action(‘su_head’, array(&$this, ‘output_author_link_tags’)); } function admin_page_contents() { $mode = $this->get_mode(); switch ($mode) { case SU_AUTHORLINKS_MODE_OFF: $this->print_message(‘warning’, __(‘In order for author highlighting to work, your authors with Google+ accounts need to add their Google+ URLs to their profile page on this site. Why don’t you start by adding your Google+ URL to your profile?’, ‘seo-ultimate’)); break; case SU_AUTHORLINKS_MODE_SINGLEAUTHOR: $this->child_admin_form_start(); $this->textblock(__(‘Since this site only has one registered user who has written posts, Author Highlighter is providing that user’s Google+ profile image to Google for it to use when any page on this WordPress site appears in Google’s search result listings. If at some point you were to add an additional user to this site and that user were to write some posts, then additional options would show up in this section.’, ‘seo-ultimate’)); $this->child_admin_form_end(); break; case SU_AUTHORLINKS_MODE_MULTIAUTHOR: $users_with_gp = get_users(array( ‘fields’ => array(‘ID’, ‘user_login’, ‘display_name’) , ‘meta_key’ => ‘googleplus’ , ‘meta_value’ => ” , ‘meta_compare’ => ‘!=’ )); $this->child_admin_form_start(); $user_dropdown_options = array(‘none’ => __(‘(None)’, ‘seo-ultimate’)); foreach ($users_with_gp as $user) { $user_dropdown_options[$user->ID] = $user->display_name ? $user->display_name : $user->user_login; } $this->dropdown(‘home_author’, $user_dropdown_options, __(‘Author of Blog Homepage’, ‘seo-ultimate’)); $this->dropdown(‘archives_author’, $user_dropdown_options, __(‘Author of Archive Pages’, ‘seo-ultimate’)); $this->child_admin_form_end(); break; } } function get_users_with_gp() { static $users_with_gp = null; if ($users_with_gp === null) { $users_with_gp = get_users(array( ‘fields’ => array(‘ID’, ‘user_login’, ‘display_name’) , ‘meta_key’ => ‘googleplus’ , ‘meta_value’ => ” , ‘meta_compare’ => ‘!=’ )); } return $users_with_gp; } function get_mode() { if (count($this->get_users_with_gp()) > 0) { //We have at least one user who provided a Google+ profile if (is_multi_author()) return SU_AUTHORLINKS_MODE_MULTIAUTHOR; else return SU_AUTHORLINKS_MODE_SINGLEAUTHOR; } else { return SU_AUTHORLINKS_MODE_OFF; } } function add_google_profile_field( $contactmethods ) { $contactmethods[‘googleplus’] = __(‘Google+ Profile URL’, ‘seo-ultimate’); return $contactmethods; } function output_author_link_tags() { if (is_404()) return; $user_id = false; $mode = $this->get_mode(); switch ($mode) { case SU_AUTHORLINKS_MODE_OFF: return; break; case SU_AUTHORLINKS_MODE_SINGLEAUTHOR: $users_with_gp = (array)$this->get_users_with_gp(); $user = reset($users_with_gp); $user_id = $user->ID; break; case SU_AUTHORLINKS_MODE_MULTIAUTHOR: if (is_home()) { $home_author = $this->get_setting(‘home_author’, ‘none’); if (is_numeric($home_author)) $user_id = $home_author; } elseif (is_singular()) { global $post; if (is_object($post)) $user_id = $post->post_author; } elseif (is_author()) { global $wp_query; $user_id = $wp_query->get_queried_object_id(); } elseif (is_archive()) { $archives_author = $this->get_setting(‘archives_author’, ‘none’); if (is_numeric($archives_author)) $user_id = $archives_author; } break; } if ($user_id !== false) { $url = get_user_meta($user_id, ‘googleplus’, true); $url = su_esc_attr($url); if ($url) echo “\t<link rel=\”author\” href=\”$url\” />\n”; } } }}?>

Viewing 4 replies - 1 through 4 (of 4 total)
  • Disable the SEO Ultimate plugin as that’s what’s generating the errors and contact the plugin developer for support.

    Thread Starter gridfree

    (@gridfree)

    i cant get into wp to disable it. can i just delete the plugin folder?

    Thread Starter gridfree

    (@gridfree)

    i deleted the folder, did some editing php for the change of server and location, i have admin up and working but the front end gives this code.
    Warning: require(_html/farm/farm/wp-blog-header.php):failed to open stream: No such file or directory in /home/gridfree/public_html/farm/index.php on line 17

    NOTE i do not have 2 farm folders….where is this string located, to remove one of the farm folders from the php line?

    Thread Starter gridfree

    (@gridfree)

    lol, total newbie move i got that fixed… now images are not showing up correctly the images.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘migration error Parse error: syntax error, unexpected end of file in’ is closed to new replies.