When i click in active plugin, i get Internal Server Error,
How can i solve this problem?
]]>Hi,
sorry to report, its broken. Here are some of the things which won‘t work anymore:
Hope this helps for fixing. If maintained at all.
]]>I suddenly get the following fatal error:
—
Fatal error: Cannot redeclare class HTTPRequest in /home/accountname/public_html/wp-content/plugins/pagerank-tools/lib/html.inc.php on line 148
—
Could this be related to a newer php version?
Hi,
I like this plugin.
I have many emails with pagerank changes from 0 to N/A and next check N/A to 0.
Example:
Old pagerank: 0
New Pagerank: N/A
Difference: 0
and
Old pagerank: N/A
New Pagerank: 0
Difference: 0
Is possible add options to ignore this PR change?
into function – prtools_extend_update_pr()
add this IF – if($act_pr > 0 || $last_pr > 0) {
Thanks
]]>None of the images are showing up on the pagerank tools dashboard, I checked the URL of the images browser side and the path is showing ‘<img src=”/tent/plugins/pagerank-tools/extended/images/pr-2.gif”>’
I have no idea where the ‘tent’ has come from! I can’t figure out why it is showing up as tent instead of wp-content
]]>Hi,
the plugin seems to be installed ok, but I got this message on the plugins page when activated:
The plugin generated 192 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.
Then at pagerank tools page shows a list with all my urls but without values and never was updated.
Like this
n/a https://www.netmdp.com/tag/wpematico/ [visit] tag n/a
n/a https://www.netmdp.com/ [visit] home n/a
I checked the two tables
wp_prtools_url have all urls
ID entrydate lastupdate url_type url pr
66 1294838474 0 tag https://www.netmdp.com/tag/wpematico/ -1
67 1294838474 0 home https://www.netmdp.com/ -1
wp_prtools_pr is empty
I have a multisite wordpress 3.0.4 installed.
If you plan to fix this and if I can do something for help, let me know.
Thank you very much
]]>My mysql slow log query is showing a lot of the following:
SELECT * FROM wp_1_prtools_url WHERE lastupdate<1288258725 OR (lastupdate<1290418725 AND pr=-1) ORDER BY lastupdate LIMIT 0,5;
You’re missing an index on lastupdate
]]>The pagerank-tools.php contains the following:
$prtools_url_table=$wpdb->prefix."prtools_url";
$prtools_pr_table=$wpdb->prefix."prtools_pr";
global $prtools_url_table;
global $prtools_pr_table;
which basically defines the variables – and then sets them as globals : which redefines them as null;
The code needs to be :
global $prtools_url_table;
global $prtools_pr_table;
$prtools_url_table=$wpdb->prefix."prtools_url";
$prtools_pr_table=$wpdb->prefix."prtools_pr"
]]>
The archive is missing a whole set of directories and files.
The main pagerank-tools.php file has the following includes:
include('lib/wp_url.inc.php');
include('res/pagerank.php');
include('functions.inc.php');
include('admin/dashboard.php');
include('admin/pageranks.php');
include('admin/pageranks_listing.inc.php');
include('admin/settings.inc.php');
but only the functions.inc.php file is included in the download.
]]>I got this message on the plugins page when I activated this plugin:
The plugin generated 194 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.
Also it threw the following errors into my php error log:
WordPress database error Specified key was too long; max key length is 1000 bytes for query CREATE TABLE wp_1_prtools_url (^M
ID int(11) NOT NULL AUTO_INCREMENT,^M
entrydate int(11) DEFAULT ‘0’ NOT NULL,^M
lastupdate int(11) DEFAULT ‘0’ NOT NULL,^M
url_type char(50) NOT NULL,^M
url VARCHAR(500) NOT NULL,^M
pr int(11) NOT NULL,^M
UNIQUE KEY id (id),^M
UNIQUE KEY url (url)^M
) made by activate_plugin, do_action, call_user_func_array, prtools_install, dbDelta
This is because my DB is set to UTF8 which uses 3 bytes per character which makes the url key 1500 bytes which exceeds the mysql limit.
]]>line 129 of functions.inc.php has a php shorttag, generating an error on install
]]>