Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)
  • 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

    @markos33 and @admsite:

    You have to edit the file: internal_link_building.php

    /wp-content/plugins/internal-link-building-plugin/internal_link_building.php

    Line 454 find this:

    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:

    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++;
    }

    @rankmath , excellent! Thank you 🙂

    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.

    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.

    Thank you. Do you have a quick fix / beta to get able to send an important email now?

    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 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)