mgrace74
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I Am At A Complete LossThanks for looking into it for me.
Forum: Fixing WordPress
In reply to: I Am At A Complete LossMy host is bluedomino.com and their phpmyadmin version 2.2.3. Not sure if I have ssh access but I can run queries from the admin panel.
Forum: Fixing WordPress
In reply to: I Am At A Complete LossDang, my version of phpMyAdmin does not have the export feature…
Forum: Fixing WordPress
In reply to: I Am At A Complete LossA link would be sufficient. Can you tell me how to perform a backup of the database using the command line? I really do not want to lose the data. Thanks.
Forum: Fixing WordPress
In reply to: I Am At A Complete LossWhere can I find a fresh install of 1.5? I’m looking on the download site and all I find is 1.5.1.
neon-I can access the database through a server utility called phpMyAdmin 2.2.3 and I think I will need some command lines.
Forum: Fixing WordPress
In reply to: I Am At A Complete Lossneon, after doing a fresh install how would I port the old data to it. My database looks good, and the current one has a prefix of wp2_. I also have created tables with a prefix of wp_. What do I put in the wp-config file for the prefix?
Thanks for all your help so far neon and Cypher.
Forum: Fixing WordPress
In reply to: I Am At A Complete LossThank you cypher, baby steps can be a great thing.
I ran p.php successfully, I got a page of all of my sites PHP Version 4.3.4 info.
Forum: Fixing WordPress
In reply to: Down and Out? Hope Not. But Need Help.The upgrade still does nothing at all. I get a blank screen. The install does the same thing. Here is my steps:
I deleted all wp files off of my server
I downloaded and extracted a fresh version of 1.5.1
I changed the wp-config.php file.
I uploaded all files to my server.This is so frustrating. I thank you for your time though.
Forum: Fixing WordPress
In reply to: Strange Ad Jump On Menu MouseoverSorry, but no I didn’t.
Forum: Fixing WordPress
In reply to: Upgrade 1.5 > 1.5.1I just tried doing a fresh install of 1.5 and get the same thing. Blank page when I try to run install.php. Please, and help is appreciated.
Forum: Fixing WordPress
In reply to: Upgrade 1.5 > 1.5.1Please help. I can not do anything right now. No rollback, no upgrade. All I get is a blank page no matter where I try to go on my server.
I’m getting a blank screen even when I try to run the upgrade.php. Please help. I can’t login to admin control panel either.
TIA
Forum: Fixing WordPress
In reply to: Upgrade 1.5 > 1.5.1I’m getting a blank screen even when I try to run the upgrade.php. Please help. I can’t login to admin control panel either.
TIA
Forum: Fixing WordPress
In reply to: Pings Not Working?I meant manually do a trackback…and I haven’t run across anybody’s site in WP that let’s me do that.
Forum: Fixing WordPress
In reply to: Pings Not Working?What’s so very frustrating is that even when I manually ping a site like technorati, or someone’s personal blog with the feature to manually ping their site, my site still does not show up in their list of trackbacks.
Forum: Fixing WordPress
In reply to: Pings Not Working?ifelse – I just updated my profile to include my website. I also checked the issue with the bug. Thanks, but my code seems to be fine:
// Send a Trackback
function trackback($trackback_url, $title, $excerpt, $ID) {
global $wpdb;
$title = urlencode($title);
$excerpt = urlencode($excerpt);
$blog_name = urlencode(get_settings('blogname'));
$tb_url = $trackback_url;
$url = urlencode(get_permalink($ID));
$query_string = "title=$title&url=$url&blog_name=$blog_name&excerpt=$excerpt";
$trackback_url = parse_url($trackback_url);
$http_request = 'POST ' . $trackback_url['path'] . ($trackback_url['query'] ? '?'.$trackback_url['query'] : '') . " HTTP/1.0rn";
$http_request .= 'Host: '.$trackback_url['host']."rn";
$http_request .= 'Content-Type: application/x-www-form-urlencoded; charset='.get_settings('blog_charset')."rn";
$http_request .= 'Content-Length: '.strlen($query_string)."rn";
$http_request .= "User-Agent: WordPress/" . get_settings('version');
$http_request .= "rnrn";
$http_request .= $query_string;
if ( '' == $trackback_url['port'] )
$trackback_url['port'] = 80;
$fs = @fsockopen($trackback_url['host'], $trackback_url['port'], $errno, $errstr, 4);
@fputs($fs, $http_request);
/*
$debug_file = 'trackback.log';
$fp = fopen($debug_file, 'a');
fwrite($fp, "n*****nRequest:nn$http_requestnnResponse:nn");
while(!@feof($fs)) {
fwrite($fp, @fgets($fs, 4096));
}
fwrite($fp, "nn");
fclose($fp);
*/
@fclose($fs);$wpdb->query("UPDATE $wpdb->posts SET pinged = CONCAT(pinged, 'n', '$tb_url') WHERE ID = '$ID'");
$wpdb->query("UPDATE $wpdb->posts SET to_ping = REPLACE(to_ping, '$tb_url', '') WHERE ID = '$ID'");
return $result;
}ceo – I know that my trackbacks and pinging technorati is not working. I’ve been checking sites that I have used the trackback feature for, and have gotten nothing. In fact, I can’t say that it has ever worked properly.