Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create a Sitemap for CakePHP?

I want to create a sitemap, but I know very little about the usage of Sitemaps. I use CakePHP. There is a lot software on google and guides, but I still want ask anyway, for an easy way to create sitemaps for CakePHP.

I uploaded the website on the server, it doesn't rely on localhost.

like image 563
meotimdihia Avatar asked Sep 24 '10 18:09

meotimdihia


2 Answers

Here's a quick'n'dirty example for you to play with and adjust to your needs:

In your controller:

public $components = array('RequestHandler');

public function sitemap()
{
    Configure::write('debug', 0);

    $articles = $this->Article->getSitemapInformation();

    $this->set(compact('articles'));
    $this->RequestHandler->respondAs('xml');
}

Your "Article" model:

public function getSitemapInformation()
{
    return $this->find('all', array(/* your query here */));
}

View:

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <?php foreach ($articles as $article): ?>
    <url>
        <loc><?php echo Router::url(/* generate the URLs here */); ?></loc>
        <lastmod><?php echo $time->toAtom(/* last update time here */); ?></lastmod>
        <changefreq>weekly</changefreq>
    </url>
    <?php endforeach; ?>
</urlset>
like image 116
dr Hannibal Lecter Avatar answered Oct 24 '22 00:10

dr Hannibal Lecter


That is a good start, now just add:

Router::parseExtensions('xml'); to routes.php

From there you want to have a route like:

Router::connect('/sitemap', array('controller' => 'posts' ....., 'ext' => 'xml')) that will direct site.com/sitemap.xml to the controller/action where the sitemap is.

create a xml layout with the correct headings, and move the view file to views/posts/xml/file.ctp

like image 4
dogmatic69 Avatar answered Oct 23 '22 23:10

dogmatic69