- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Start Page
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-02-2009 09:16 AM
Re: Start Page
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-02-2009 10:41 AM
I thought for sure there would be a simple way to do this, but I can't even find where the url for the start page is being stored.
I know it's not in the database, there are no database transactions when setting the home page.
When setting the home page to www.google.com, I wasn't able to find any files in Documents and Settings, or in the Sage Client directory that had "google" in the file using windows file search.
I wasn't able to find any reference to google in the registry.
I hope someone from Sage can come give us some insight on where they are storing that data, and why they aren't storing somewhere we can get to it.
Re: Start Page
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-02-2009 10:48 AM
I'm not aware of anywhere to change it in the database. I believe it would need to be changed on each machine.
Check out this folder:
C:\Documents and Settings\All Users\Application Data\Sage\Common Desktop
You could edit the .html and .gif files there.
Tim
Programmer Analyst
rodmant@robbinstbm.com
Version 7.30.6.0 (March 2011)
Re: Start Page
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-03-2009 09:13 AM
Assuming you want to substitute the start page with an alternate web
page you can do the following:
1) Modify the file C:\Documents and Settings\All Users\Application Data\Sage\Common Desktop\Start Page\1033\Merge1\InformationCenter.htm by adding a new javascript function
function OverrideHomePage() { window.location = "http://www.google.com/"; }
2) Within the existing javascript function GeneratePage(), add the following line after the call to GenerateSideBar ()
window.focus();
3) Add the following event to the Body element of the page
onFocus="OverrideHomePage()"
*The call to the new function works better in the onFocus event than just replacing the existing call in the onLoad event but necessitates the additional line of code to set the focus to the page after running the onLoad event
*Don't ask me what the difference is between Merge1 and Merge2 folders, I had made a change like this several months ago and never had to make it to the Merge2 folder
*It loads the original InformationCenter page and then redirects so you will visually see the original page and a second or so later be redirected to the url you set in OverrideHomePage()
*Depending on the web page you are redirecting to, you may get scripting errors with this approach (i.e www.cnn.com)
NOTE: This is nothing more than a hack but nonetheless should work depending on what you are trying to accomplish ![]()
Re: Start Page
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
06-25-2010 07:33 AM
I know this is a really old post, but I just had to search on this issue and came across this result. This can be changed in the database for all users. You just need to look at the DesktopSettings column of tsmUserDesktop. It's XML, but there is a start page field in there.
Re: Start Page
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
06-25-2010 10:28 AM


