How to use Sitemap Plugin in Wordpress ?

Discussion in 'WordPress' started by poseidon, Oct 30, 2006.

  1. #1
    Ok, just installed sitemap wordpess plugin and activated it but its giving error

    Could not write into /home/my_name/public_html/health-center/sitemap.xml
    Could not write into /home/my_name/public_html/health-center/sitemap.xml.gz
    Code (markup):

     
    poseidon, Oct 30, 2006 IP
  2. disgust

    disgust Guest

    Messages:
    2,417
    Likes Received:
    133
    Best Answers:
    0
    Trophy Points:
    0
    #2
    did you chmod the appropriate files & directories?

    you can do this via FTP or SSH/putty. on most FTPs you can select the files/folders, right click, and there should be a chmod property.

    from the shell it'd be something like

    chmod -R 777 /the/directory/

    -R means recursive, and anything inside "directory" will be chmodded to 777.
     
    disgust, Oct 30, 2006 IP
  3. poseidon

    poseidon Banned

    Messages:
    4,356
    Likes Received:
    246
    Best Answers:
    0
    Trophy Points:
    0
    #3
    is chmod 777 to my full blog directory a good idea ?
     
    poseidon, Oct 30, 2006 IP
  4. disgust

    disgust Guest

    Messages:
    2,417
    Likes Received:
    133
    Best Answers:
    0
    Trophy Points:
    0
    #4
    depends on your hosting situation... you could chmod the files individually if you prefer, or do something like

    chmod -R 777 /the/directory/*

    that would only match all the files in the directory and not chmod the directory itself
     
    disgust, Oct 30, 2006 IP