17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1949 Views |
-
problems Saving and Publishing

22 May 2008 at 1:05pm
newbie here...installation successful according to install script.
go to do first edit...when I hit Save or Save and Publish...it just runs forever...never stops and never give error message....so I have no idea what's going on or why it's failing...the icon spins and spins and never resolves..and the Save or Publish never happen.are there error messages somewhere??
-
Re: problems Saving and Publishing

22 May 2008 at 8:15pm
Do you have firebug installed? that would be handy for errors
-
Re: problems Saving and Publishing

22 May 2008 at 9:23pm Last edited: 22 May 2008 9:23pm
I've had the same problem.
My solution was disabling the GoogleSitemap ping feature. When enabled, every time you hit save & publish, silverstripe sends a notice to google, so that they know to re read the sitemap.xml
In my case, the webserver, silverstripe is running on, is behind a firewall which blocks all outgoing data.
After disabling this feature in mysite/_config.phpGoogleSitemap::DisableGoogleNotification();
save & publish works fine and as fast as it should be.
Perhaps this could also be a solution for you.
Greetz
Christian
-
Re: problems Saving and Publishing

30 July 2008 at 5:34pm
Thanks for the great question and answer. Resolved my problem.
-
Re: problems Saving and Publishing

21 October 2008 at 11:22am Last edited: 21 October 2008 11:23am
Hi;
I need the same modification but couldnt find that string in _config.php
Is that something about my release (2.2.2) or I'll add it manually?If yes something like that
<?php
global $project;
$project = 'mysite';global $databaseConfig;
$databaseConfig = array(
"type" => "MySQLDatabase",
"server" => "localhost",
"username" => "username",
"password" => "password",
"database" => "database",
);// Sites running on the following servers will be
// run in development mode. See
// http://doc.silverstripe.com/doku.php?id=devmode
// for a description of what dev mode does.
Director::set_dev_servers(array(
'localhost',
'127.0.0.1',
));// This line set's the current theme. More themes can be
// downloaded from http://www.silverstripe.com/cms-themes-and-skin
SSViewer::set_theme('blackcandy');GoogleSitemap::DisableGoogleNotification();
?>
Thanks.
-
Re: problems Saving and Publishing

21 October 2008 at 7:06pm
Hi evren,
you are right. Just put that line in your mysite/_config.php.
This feature is enabled by defaut so you will not find an entry like GoogleSitemap::enable() or so.
-
Re: problems Saving and Publishing

21 October 2008 at 10:33pm
Thanks for your solution.
Maybe your firewall matter gets attentions and it will be fixed to save the page even it can ping to google or not.
| 1949 Views | ||
|
Page:
1
|
Go to Top |





