Title: POS2012's Replies | WordPress.org

---

# POS2012

  [  ](https://wordpress.org/support/users/pos2012/)

 *   [Profile](https://wordpress.org/support/users/pos2012/)
 *   [Topics Started](https://wordpress.org/support/users/pos2012/topics/)
 *   [Replies Created](https://wordpress.org/support/users/pos2012/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/pos2012/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/pos2012/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/pos2012/engagements/)
 *   [Favorites](https://wordpress.org/support/users/pos2012/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Feed PRO for WooCommerce by AdTribes – Product Feeds for WooCommerce] Automatic feed refresh fail](https://wordpress.org/support/topic/automatic-feed-refresh-fail/)
 *  [POS2012](https://wordpress.org/support/users/pos2012/)
 * (@pos2012)
 * [2 months, 2 weeks ago](https://wordpress.org/support/topic/automatic-feed-refresh-fail/#post-18831726)
 * I can confirm this issue. 
   Every auto refresh makes 1 item in the XML output.
   But manual refresh makes 43 items in the output.
 * I’m using Version: 13.5.2.1 with the latest WP.
   See this video: [https://share.zight.com/5zuE8lwq](https://share.zight.com/5zuE8lwq)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Internal Link Building] Not working with PHP8](https://wordpress.org/support/topic/not-working-with-php8-2/)
 *  [POS2012](https://wordpress.org/support/users/pos2012/)
 * (@pos2012)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/not-working-with-php8-2/#post-17462645)
 * [@markos33](https://wordpress.org/support/users/markos33/) and [@admsite](https://wordpress.org/support/users/admsite/):
   
   You have to edit the file: internal_link_building.php/wp-content/plugins/internal-
   link-building-plugin/internal_link_building.phpLine 454 find this:
 *     ```wp-block-code
       while (list($name, $ops) = each($keywords)) {
   
       				if($name == 'keywords_time')
       					continue;
   
       				$case = '';
       				if($ops['case'] == 1)
       					$case = ' checked="checked" ';
       				$nofollow = '';
       				if($ops['nofollow'] == 1)
       					$nofollow = ' checked="checked" ';
       				$newwindow = '';
       				if($ops['newwindow'] == 1)
       					$newwindow = ' checked="checked" ';
   
       				$name = str_replace("'","'",stripslashes($name));
   
       				echo "
       					<tr>
       						<td><input type='text' style='width:90%;' value='$name' name='internal_link_building[$x][name]' /></td>
       						<td><input type='text' style='width:90%;' value='$ops[url]' name='internal_link_building[$x][url]' /></td>
       						<td><input type='text' value='$ops[times]' name='internal_link_building[$x][times]' size='4' /></td>
       						<td><input type='text' value='$ops[between]' name='internal_link_building[$x][between]' size='4' /></td>
       						<td><input type='text' value='$ops[before]' name='internal_link_building[$x][before]' size='4' /></td>
       						<td><input type='text' value='$ops[after]' name='internal_link_building[$x][after]' size='4' /></td>
       						<td><input type='checkbox' $case value='1' name='internal_link_building[$x][case]' /></td>
       						<td><input type='checkbox' $nofollow value='1' name='internal_link_building[$x][nofollow]' /></td>
       						<td><input type='checkbox' $newwindow value='1' name='internal_link_building[$x][newwindow]' /></td>
       					</tr>
       					";
       				$x++;
       			}
       ```
   
 * and then remove it, and add this in stead:
 *     ```wp-block-code
       foreach ($keywords as $name => $ops) {
   
           if($name == 'keywords_time')
               continue;
   
           $case = '';
           if($ops['case'] == 1)
               $case = ' checked="checked" ';
           $nofollow = '';
           if($ops['nofollow'] == 1)
               $nofollow = ' checked="checked" ';
           $newwindow = '';
           if($ops['newwindow'] == 1)
               $newwindow = ' checked="checked" ';
   
           $name = str_replace("'","'",stripslashes($name));
   
           echo "
               <tr>
                   <td><input type='text' style='width:90%;' value='$name' name='internal_link_building[$x][name]' /></td>
                   <td><input type='text' style='width:90%;' value='{$ops['url']}' name='internal_link_building[$x][url]' /></td>
                   <td><input type='text' value='{$ops['times']}' name='internal_link_building[$x][times]' size='4' /></td>
                   <td><input type='text' value='{$ops['between']}' name='internal_link_building[$x][between]' size='4' /></td>
                   <td><input type='text' value='{$ops['before']}' name='internal_link_building[$x][before]' size='4' /></td>
                   <td><input type='text' value='{$ops['after']}' name='internal_link_building[$x][after]' size='4' /></td>
                   <td><input type='checkbox' $case value='1' name='internal_link_building[$x][case]' /></td>
                   <td><input type='checkbox' $nofollow value='1' name='internal_link_building[$x][nofollow]' /></td>
                   <td><input type='checkbox' $newwindow value='1' name='internal_link_building[$x][newwindow]' /></td>
               </tr>
               ";
           $x++;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] Fatal Error when upgrading from 1.0.44.1 to 1.0.56.1](https://wordpress.org/support/topic/fatal-error-when-upgrading-from-1-0-44-1-to-1-0-56-1/)
 *  [POS2012](https://wordpress.org/support/users/pos2012/)
 * (@pos2012)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/fatal-error-when-upgrading-from-1-0-44-1-to-1-0-56-1/#post-14071184)
 * [@rankmath](https://wordpress.org/support/users/rankmath/) , excellent! Thank
   you 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] Fatal Error when upgrading from 1.0.44.1 to 1.0.56.1](https://wordpress.org/support/topic/fatal-error-when-upgrading-from-1-0-44-1-to-1-0-56-1/)
 *  [POS2012](https://wordpress.org/support/users/pos2012/)
 * (@pos2012)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/fatal-error-when-upgrading-from-1-0-44-1-to-1-0-56-1/#post-13985837)
 * I had the same upgrade problem. Uploading manually didn’t do it to me. So what
   I did was installing the plugin and then deleting the file:
 * /wp-content/plugins/seo-by-rank-math/includes/updates/update-1.0.49.php
 * That made everything work again.
 * Not sure of that is a proper fix, as I don’t know what update-1.0.49.php actually
   does. But at least WP is working again.
 * Just adds that here to everybody else having problems with this.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MailPoet Newsletters (Previous)] Mailpoet not saving](https://wordpress.org/support/topic/mailpoet-not-saving-2/)
 *  [POS2012](https://wordpress.org/support/users/pos2012/)
 * (@pos2012)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/mailpoet-not-saving-2/page/2/#post-6396762)
 * The plugin update did NOT work any better for me. (V. 2.6.17) The “prototype.
   js” issue was still there.
 * But I can confirm that setting mod_security to OFF did the trick. Now the latest
   version of Mail Poet works.
 * I did not see duplicate problems, but I had issues with editing newsletters that
   was still not sent.
 * Again, I can confirm setting mod_security = Off, did the trick.
 * Thank you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MailPoet Newsletters (Previous)] Mailpoet not saving](https://wordpress.org/support/topic/mailpoet-not-saving-2/)
 *  [POS2012](https://wordpress.org/support/users/pos2012/)
 * (@pos2012)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/mailpoet-not-saving-2/page/2/#post-6396748)
 * Thank you. Do you have a quick fix / beta to get able to send an important email
   now?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MailPoet Newsletters (Previous)] Mailpoet not saving](https://wordpress.org/support/topic/mailpoet-not-saving-2/)
 *  [POS2012](https://wordpress.org/support/users/pos2012/)
 * (@pos2012)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/mailpoet-not-saving-2/#post-6396744)
 * I have had the same issue since WP 4.3 .
 * I have seen before that setting the value “0” to “can_compress_scripts” in the
   MySQL table “prefix_options” have solved similar 404 errors for other plugins,
   but it didn’t this time.
 * I still get wp-admin/admin-ajax.php 404 (Not Found)
    with: prototype.js?ver=2.6.16:
   1528 POST [http://(removed)/wp-admin/admin-ajax.php](http://(removed)/wp-admin/admin-ajax.php)
   404 (Not Found)
 * PS: In Firefox it actuall shows the message “Saving”. But it doesn’t save. In
   Chrome that message is not shown at all
 * **Do you developers replicate the issue, or does this work ok on another servers?**

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