Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Forum: Fixing WordPress
    In reply to: 2.7.1 Theme Issue
    hugocgc

    (@hugocgc)

    Same error here. I discovered this error occur when the folders name contains the character “-“. Then you just have to change the name.

    hugocgc

    (@hugocgc)

    I was with this problem too , but I think I solved.

    In sitemap-core.php on line 2181 I replaced $this->RemoteOpen for the function file_get_contents
    when occurr an error, Google returns a page with “Error 400”, then on line 2183 i just replaced

    if($pingres==NULL || $pingres===false) {

    for this:

    if($pingres==NULL || $pingres===false || strpos($pingres,”Error”)!==false) {

    Well, this works for me.

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