Title: [Plugin: All in One SEO Pack] Errors
Last modified: August 20, 2016

---

# [Plugin: All in One SEO Pack] Errors

 *  Resolved [nemoxp](https://wordpress.org/support/users/nemoxp/)
 * (@nemoxp)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-all-in-one-seo-pack-errors/)
 * In file “aioseop.class.php” is a notice at line 555: `$has_ut` and i have added`
   isset($has_ut) &&` so the function yoast_get_paged looks like this:
 *     ```
       function yoast_get_paged($link) {
       			$page = get_query_var('paged');
       	        if ($page && $page > 1) {
       	            $link = trailingslashit($link) ."page/". "$page";
       	            if (isset($has_ut) && $has_ut) {
       	                $link = user_trailingslashit($link, 'paged');
       	            } else {
       	                $link .= '/';
       	            }
       			}
       			return $link;
       	}
       ```
   
 * And another notice as line 2129:
    `<input type="text" name="aiosp_google_publisher"
   value="<?php echo $aioseop_options['aiosp_google_publisher']; ?>" size="38"/>`
   and i have added @ in front of `$aioseop_options['aiosp_google_publisher']` and
   now it looks like this:
 * `<input type="text" name="aiosp_google_publisher" value="<?php echo @$aioseop_options['
   aiosp_google_publisher']; ?>" size="38"/>`
 * [http://wordpress.org/extend/plugins/all-in-one-seo-pack/](http://wordpress.org/extend/plugins/all-in-one-seo-pack/)

Viewing 4 replies - 1 through 4 (of 4 total)

 *  Thread Starter [nemoxp](https://wordpress.org/support/users/nemoxp/)
 * (@nemoxp)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-all-in-one-seo-pack-errors/#post-2842391)
 * has_ut error persists after update. Error occurs when accessing second page (“
   older posts”)
 *  [Peter Baylies](https://wordpress.org/support/users/pbaylies/)
 * (@pbaylies)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-all-in-one-seo-pack-errors/#post-2842392)
 * NemoXP,
 * Thanks for the information, I’ll see that it gets fixed; note that $has_ut doesn’t
   have scope there. Really that should look like this:
 *     ```
       function yoast_get_paged($link) {
       		$page = get_query_var('paged');
       	        if ($page && $page > 1) {
       	            $link = trailingslashit($link) ."page/". "$page";
       	            if (function_exists('user_trailingslashit')) {
       	                $link = user_trailingslashit($link, 'paged');
       	            } else {
       	                $link .= '/';
       	            }
       		}
       		return $link;
       	}
       ```
   
 *  Thread Starter [nemoxp](https://wordpress.org/support/users/nemoxp/)
 * (@nemoxp)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-all-in-one-seo-pack-errors/#post-2842393)
 * Another 2 Notices when creating a new post:
    Notice: Undefined index: aiosp_edit
   in /home/dxdhost.ro/public_html/web-host/wp-content/plugins/all-in-one-seo-pack/
   aioseop.class.php on line 1154
 * Notice: Undefined index: nonce-aioseop-edit in /home/dxdhost.ro/public_html/web-
   host/wp-content/plugins/all-in-one-seo-pack/aioseop.class.php on line 1155
 * $awmp_edit = $_POST[“aiosp_edit”];
    $nonce = $_POST[‘nonce-aioseop-edit’];
 * // my change:
    $awmp_edit = (isset($_POST[“aiosp_edit”])?$_POST[“aiosp_edit”]:”);
   $nonce = (isset($_POST[“nonce-aioseop-edit”])?$_POST[“nonce-aioseop-edit”]:”);
 *  [Peter Baylies](https://wordpress.org/support/users/pbaylies/)
 * (@pbaylies)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-all-in-one-seo-pack-errors/#post-2842394)
 * Thank you for the reports, Nemo.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘[Plugin: All in One SEO Pack] Errors’ is closed to new replies.

 * ![](https://ps.w.org/all-in-one-seo-pack/assets/icon.svg?rev=2443290)
 * [All in One SEO – Powerful SEO Plugin to Boost SEO Rankings & Increase Traffic](https://wordpress.org/plugins/all-in-one-seo-pack/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/all-in-one-seo-pack/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/all-in-one-seo-pack/)
 * [Active Topics](https://wordpress.org/support/plugin/all-in-one-seo-pack/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/all-in-one-seo-pack/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/all-in-one-seo-pack/reviews/)

## Tags

 * [notice](https://wordpress.org/support/topic-tag/notice/)

 * 4 replies
 * 2 participants
 * Last reply from: [Peter Baylies](https://wordpress.org/support/users/pbaylies/)
 * Last activity: [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-all-in-one-seo-pack-errors/#post-2842394)
 * Status: resolved