Community @ The Turning Gate

Support community for TTG plugins and products.

NOTICE

The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.

This forum is now closed, and exists here as a read-only archive.

  • New user registrations are disabled.
  • Users cannot create new topics.
  • Users cannot reply to existing topics.

You are not logged in.

#1 2017-04-28 23:17:02

pideja
Member
From: Montreal
Registered: 2013-02-26
Posts: 1,299

Transferring from one server to another

I'm done with this version of a test site and it's time for me to transfer it to it's proper server.

Is there anything else to check/do other than changing the URL in the Backlight Settings/Personalisation area?

Offline

#2 2017-04-28 23:25:36

rod barbee
Moderator
From: Port Ludlow, WA USA
Registered: 2012-09-24
Posts: 17,830
Website

Re: Transferring from one server to another

I've found that sometimes the images you've uploaded with the Backlight uploader go missing. (mastheads, favicon, etc.). So be sure to check those after the move.

The other thing to do is to change the API url in Lightroom Publisher settings for the Publisher instance that's controlling the site.


Rod 
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site

Offline

#3 2017-04-29 00:13:05

pideja
Member
From: Montreal
Registered: 2013-02-26
Posts: 1,299

Re: Transferring from one server to another

will do.

Thanks Rod

Offline

#4 2017-04-29 03:49:31

pideja
Member
From: Montreal
Registered: 2013-02-26
Posts: 1,299

Re: Transferring from one server to another

Just done transferring the files to the permanent server. A lot of URLs to change. It's almost as if 80% of the navigation and formatting was transferred the rest I'll have to correct manually.


www.nathaliemoliavko-vizotsky.com

Offline

#5 2017-04-29 04:22:18

pideja
Member
From: Montreal
Registered: 2013-02-26
Posts: 1,299

Re: Transferring from one server to another

I think I have the navigation (from tab to tab) correct. But, why is all the formatting done in CSS not operative?

Offline

#6 2017-04-29 04:33:43

rod barbee
Moderator
From: Port Ludlow, WA USA
Registered: 2012-09-24
Posts: 17,830
Website

Re: Transferring from one server to another

the url to the site doesn't work

Just done transferring the files to the permanent server. A lot of URLs to change. It's almost as if 80% of the navigation and formatting was transferred the rest I'll have to correct manually.

Just a guess, but perhaps in your menu set you used Link To: URL a lot rather than Link to: Page, or Link To: Album, etc.

I doubt manually entered urls would automatically be changed to the correct url upon moving the site.


Rod 
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site

Offline

#7 2017-04-29 04:41:49

pideja
Member
From: Montreal
Registered: 2013-02-26
Posts: 1,299

Re: Transferring from one server to another

nathaliemoliavko-visotzky.com

As an example, on the fr side, the Contact+CV tab's CSS is:

@font-face {
	font-family: 'HelveticaNeue';
	src: url(http://nathaliemoliavko-visotzky.com/fr/backlight/custom/css/HelveticaNeue.ttf);}
	
.text p{
		text-align: center;
}
 @media only screen and (min-width: 768px) {
    .contact-form {
    margin: 0 auto !important;
    width: 50%;
    }

.contact-form input {
  max-width: 100% !important;
  }
  .actions input {
  position: relative;
	left: 50%;
}

 	
.copyright p{
	font-style: italic;
	text-align: center;
}

http://pideja.ca/nat/fr/contact/

But of course, it doesn't.

I've checked, and all the files have transferred correctly. All I can see is that there must be some kind of URL mistake somewhere.
All URL's have been corrected to reflect the new server location.

Last edited by pideja (2017-04-29 04:53:22)

Offline

#8 2017-04-29 04:48:34

rod barbee
Moderator
From: Port Ludlow, WA USA
Registered: 2012-09-24
Posts: 17,830
Website

Re: Transferring from one server to another

in the actual css for the main page of the site, the @font-face rule has a malformed url:

@font-face {
	font-family: 'HelveticaNeue';
	src: url(nathaliemoliavko-visotzky.com/backlight/custom/css/HelveticaNeue.ttf);}
	

your nat-fr_contact.css file doesn't appear to exist as it's giving a 404 Page Not Found error. Make sure it's in the proper folder and is named correctly.


Rod 
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site

Offline

#9 2017-04-29 04:55:00

pideja
Member
From: Montreal
Registered: 2013-02-26
Posts: 1,299

Re: Transferring from one server to another

should I add the http:// to the URL in the @font-face rule?

I fixed the Contact link.

Last edited by pideja (2017-04-29 04:55:31)

Offline

#10 2017-04-29 04:55:37

rod barbee
Moderator
From: Port Ludlow, WA USA
Registered: 2012-09-24
Posts: 17,830
Website

Re: Transferring from one server to another

Also on your main Nat page, there's this in your custom css:

<style type="text/css">
#masthead {width: 100%;}
#nav {float: left; width: 10%;}
#content {float: left; width: 80%;}
#sidebar {float: left; width: 10%;}
#footer {width: 100%; clear: both;}
</style>

No need for the style tags. They might even mess things up since they're html tags in a css file.


Rod 
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site

Offline

#11 2017-04-29 04:57:04

rod barbee
Moderator
From: Port Ludlow, WA USA
Registered: 2012-09-24
Posts: 17,830
Website

Re: Transferring from one server to another

pideja wrote:

should I add the http:// to the URL in the @font-face rule?

I fixed the Contact link.

it needs to be a full url or a properly formed relative url.
So either add the http:// or take out the nathaliemoliavko-visotzky.com


Rod 
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site

Offline

#12 2017-04-29 04:59:27

pideja
Member
From: Montreal
Registered: 2013-02-26
Posts: 1,299

Re: Transferring from one server to another

I justed checked: http://www.nathaliemoliavko-visotzky.co … ontact.css works fine.

But, for some reason, it's not doing anything...

Offline

#13 2017-04-29 06:16:32

rod barbee
Moderator
From: Port Ludlow, WA USA
Registered: 2012-09-24
Posts: 17,830
Website

Re: Transferring from one server to another

that's because it's still being sent the nat-fr_contact.css file, which doesn't exist where the page thinks it does.

the source code for the page is looking for the custom css here:

<link rel="stylesheet" href="/nat/fr/backlight/custom/css/nat-fr_contact.css" />

Which means it's looking in the root of the site for a folder tree that starts with /nat/fr/backlight...

But your site does not have a nat/ folder, does it?

Make sure the css file is in nathaliemoliavko-visotzky.com/backlight/custom/css
In Backlight, go to the page template that your Contact page is using and choose the correct css file.


Rod 
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site

Offline

#14 2017-04-29 20:37:12

pideja
Member
From: Montreal
Registered: 2013-02-26
Posts: 1,299

Re: Transferring from one server to another

When I transferred from my test server, I copied/pasted every folder/file to the actual server now being used. Verbatim.
Then I changed all the URLs I could find to lead to the new server, i.e. http://nathaliemoliavko-visotzky.com;
then I checked to see that all the references to CSS had not been altered or changed in any way; the CSS files are stored in:
- http://nathaliemoliavko-visotzky.com/ba … custom/cssfor the main HOME page;
- http://nathaliemoliavko-visotzky.com/fr … custom/css for the French side;
- http://nathaliemoliavko-visotzky.com/en … custom/css for the English side.

Except I forgot about the Backlight settings for the French and English side: the URLs were for the test server. Stupid mistake. The transfer should have taken 30 minutes at the most. Maybe I should write a checklist of the tasks to do when creating/transferring a website with Backlight. Could come in handy.

All is now well, again, in Mudville.

Thanks Rod.

Offline

#15 2017-05-04 06:39:40

pideja
Member
From: Montreal
Registered: 2013-02-26
Posts: 1,299

Re: Transferring from one server to another

There is a post-script to this saga:

Checking the site on Chrome, Firefox and Safari on a MacPro desktop, the Safari HOME page does not show up like it should: the Fr and En buttons are below the image whereas in Chrome, Firefox on Mac or PC the buttons show up over the image.

Doesn't really bother me but it is strange, don't you think?

Offline

Board footer

Powered by FluxBB