![]() |
Unable to create sitemaps and backup site - Printable Version +- GetSimple Support Forum (http://get-simple.info/forums) +-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3) +--- Forum: Installation & Setup (http://get-simple.info/forums/forumdisplay.php?fid=5) +--- Thread: Unable to create sitemaps and backup site (/showthread.php?tid=1522) |
Unable to create sitemaps and backup site - batka16 - 2011-04-04 I updated to 3.0 getsimple. But now I can not create a sitemap and a backup. I see the word "denied"after clicking a button. Why? How do I fix it? included debug. Message: Warning: file_get_contents(/home/r/rusukrnet/newelectro/public_html/data/other/user.xml) [function.file-get-contents]: failed to open stream: No such file or directory in /home/r/rusukrnet/newelectro/public_html/admin/inc/basic.php on line 218 Notice: Trying to get property of non-object in /home/r/rusukrnet/newelectro/public_html/plugins/p01-contact_gs.php on line 69 Unable to create sitemaps and backup site - Connie - 2011-04-20 zoneding Wrote:I have a website about stone crusher,the sitemap is xtml, I want to make it hyper links,how to change the code? The sitemap which you link in the footer is a sitemap in XML (not xtml) which is generated for search engines and other "engines", but is not intended to be integrated in the content for webbrowsers that is absolutely correct. If you need a sitemap which you want to use in your page content, you will need other functionality which is easy to achieve. What to do: I just tested and it works: you will create a template which contains the sitemap and use that. Follow these steps:
Code: <?php get_page_content(); ?>
Code: <?php get_i18n_navigation(return_page_slug(), 0,99, showall); ?>
if you want to add some content before or after the sitemap, do not replace Code: <?php get_page_content(); ?> Code: <?php get_i18n_navigation(return_page_slug(), 0,99, showall); ?> an example: Code: <div><?php get_page_content(); ?></div> an example? Check here: http://www.urbanistan.de/getsimple/sitemap Cheers, Connie Unable to create sitemaps and backup site - yojoe - 2011-04-21 Connie: when/how is sitemap.xml file being loaded/parsed, because I don't see any reference to it in your guide :/ I was thinking about doing a function to parse sitemap.xml manually, but if one of plugins actually offers such functionality, I wouldn't need to do it anymore. edit: ohhh I was thinking about parsing sitemap.xml file, and you just show all visible menu elements. Those aren't the same ![]() Unable to create sitemaps and backup site - hameau - 2011-04-21 I think zoneding is a spammer. - I can't see any evidence that the linked site is anything to do with GetSimple. - Stone crushing equipment has been very popular here in the last couple of days. Unable to create sitemaps and backup site - n00dles101 - 2011-04-21 yeah he's gone, getting sick of of that stone crusher crap.... Unable to create sitemaps and backup site - Connie - 2011-04-21 yojoe Wrote:Connie: when/how is sitemap.xml file being loaded/parsed, because I don't see any reference to it in your guide :/ Yojoe, a sitemap on a website should show only links to pages in a tree view that's what I did with my suggestion and it shows up like this: http://www.urbanistan.de/getsimple/sitemap I did not compare with a sitemap.xml but these should also show only the pages which are linked in the menu ... I think "my way" is much easier and more obvious ;=) Unable to create sitemaps and backup site - yojoe - 2011-04-21 Actually a thml sitemap isn't just a list of links. It should offer also page description and if possible last change date. As I said, it's not the same ![]() Depends of course on link structure, which may contain all needed things. Anyway, seems I will have to use a cache plugin and grab all the info it contains to create a html sitemap ... some day :] Unable to create sitemaps and backup site - hameau - 2011-04-21 yojoe Wrote:Actually a thml sitemap isn't just a list of links.I would not expect a Site Map or Site Index page on a website to include that extra information, but there is no reason why it could not be shown, I suppose. Whether for a Site Index page or for sitemap.xml, I would not include any hidden pages or other hidden resources. If the Site Index is for visitors and sitemap.xml is to guide the search engines, in both cases I would not want to expose hidden content – after all, it is hidden for a reason. ;-) @connie : Your guide to generating a Site Index is very useful – thanks! I may be missing a detail of the German, but perhaps you could mention that the guide is only for generating a site page, not for generating sitemap.xml (which can be generated from the admin control panel, of course)? Unable to create sitemaps and backup site - polyfragmented - 2011-04-21 yojoe Wrote:Actually a thml sitemap isn't just a list of links.That statement is highly debatable, yojoe. I'm not saying a HTML sitemap can't ever have the info you mentioned, but it does not seem the norm to include more than an hierarchical listing of available pages. You kinda phrased it as if it were a standard to include more stuff, which it isn't, sorry. No offense meant. Unable to create sitemaps and backup site - Connie - 2011-04-22 hameau Wrote:@connie : Your guide to generating a Site Index is very useful – thanks! I may be missing a detail of the German, but perhaps you could mention that the guide is only for generating a site page, not for generating sitemap.xml (which can be generated from the admin control panel, of course)? Hi Nick, that is exactly what I wrote in the first paragraph: Quote:There are 2 kinds of Sitemaps: so for me it was logic. But I described it more detailled now, so the misunderstanding will be avoided. Thanks for the hint! @yojoe, I once had a sitemap with the information like you described it in another, now forgotten CMS. My users / my client were disturbed and I was told that they want clear navigation... the sitemap which you describe would be a mixture of index and navigation and that can be overwhelming sometimes but for sure there can be reasons to use that, but I never saw it in practice Let us see in Wikipedia: http://en.wikipedia.org/wiki/Site_map Quote:Site maps can improve search engine optimization of a site by making sure that all the pages can be found. ..... Unable to create sitemaps and backup site - yojoe - 2011-04-22 polyfragmented Wrote:yojoe Wrote:Actually a thml sitemap isn't just a list of links.That statement is highly debatable, yojoe. I'm not saying a HTML sitemap can't ever have the info you mentioned, but it does not seem the norm to include more than an hierarchical listing of available pages. No prob as it goes bout me. Everyone has his own approach and experience. Mine is like most devs/designers I know: html sitemap is for living people, who needs to find a certain content. The better I group and describe pages, the better for them. Just my 2 cents, you know ![]() Unable to create sitemaps and backup site - mvlcek - 2011-04-22 yojoe Wrote:Everyone has his own approach and experience. And for me the site map is about seeing what information is available on the site. Normally it is sufficient to see the page titles. But the site map should also show pages that are not available via the menu but only via links in the text. And if I want to find something specific I hope that the site has a good search... |