Forum Replies Created

Viewing 15 replies - 1 through 15 (of 23 total)
  • Thread Starter mgrace74

    (@mgrace74)

    Thanks for looking into it for me.

    Thread Starter mgrace74

    (@mgrace74)

    My 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.

    Thread Starter mgrace74

    (@mgrace74)

    Dang, my version of phpMyAdmin does not have the export feature…

    Thread Starter mgrace74

    (@mgrace74)

    A 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.

    Thread Starter mgrace74

    (@mgrace74)

    Where 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.

    Thread Starter mgrace74

    (@mgrace74)

    neon, 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.

    Thread Starter mgrace74

    (@mgrace74)

    Thank 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.

    Thread Starter mgrace74

    (@mgrace74)

    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.

    Thread Starter mgrace74

    (@mgrace74)

    Sorry, but no I didn’t.

    I 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.

    Please 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.

    https://www.bmgwebdesign.com

    TIA

    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.

    https://www.bmgwebdesign.com

    TIA

    Forum: Fixing WordPress
    In reply to: Pings Not Working?
    Thread Starter mgrace74

    (@mgrace74)

    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?
    Thread Starter mgrace74

    (@mgrace74)

    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?
    Thread Starter mgrace74

    (@mgrace74)

    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.

Viewing 15 replies - 1 through 15 (of 23 total)