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 2018-08-21 05:00:21

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

HELP! Error 503

I just tried to see a website I made but I get the HTTP 503 Backend fetch failed error!

What does this mean?

Offline

#2 2018-08-21 05:17:20

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

Re: HELP! Error 503

Site back online...what went wrong?

Anyway, the site is online but no images! I must have touched some setting but how to get back?

pideja.ca/danlev

Offline

#3 2018-08-21 05:27:25

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

Re: HELP! Error 503

For what it's worth, here is the script for the Vegas slideshow:

<script>
	var slideshow = '.background__album';
	$(slideshow).vegas({

		autoplay: true,
		color: '#000000',
		cover: false,
		delay: 10000,
		overlay: false,
		shuffle: false,
		timer: false,
		transition: 'fade2',

		slides: [

					{ src: 'http://pideja.ca/danlev/galleries/portefolio_2018/photos/Portfolio-2018v3b.jpg', caption: '' },
					{ src: 'http://pideja.ca/danlev/galleries/portefolio_2018/photos/Portfolio-2018v3b2.jpg', caption: '' },
					{ src: 'http://pideja.ca/danlev/galleries/portefolio_2018/photos/Portfolio-2018v3b3.jpg', caption: '' },
					{ src: 'http://pideja.ca/danlev/galleries/portefolio_2018/photos/Portfolio-2018v3b4.jpg', caption: '' },
					{ src: 'http://pideja.ca/danlev/galleries/portefolio_2018/photos/Portfolio-2018v3b5.jpg', caption: '' },
					{ src: 'http://pideja.ca/danlev/galleries/portefolio_2018/photos/Portfolio-2018v3b6.jpg', caption: '' },
					{ src: 'http://pideja.ca/danlev/galleries/portefolio_2018/photos/Portfolio-2018v3b7.jpg', caption: '' },
					{ src: 'http://pideja.ca/danlev/galleries/portefolio_2018/photos/Portfolio-2018v3b8.jpg', caption: '' },
					{ src: 'http://pideja.ca/danlev/galleries/portefolio_2018/photos/Portfolio-2018v3b9.jpg', caption: '' },
					{ src: 'http://pideja.ca/danlev/galleries/portefolio_2018/photos/Portfolio-2018v3b_10.jpg', caption: '' },
					{ src: 'http://pideja.ca/danlev/galleries/portefolio_2018/photos/Portfolio-2018v3b11.jpg', caption: '' },
					{ src: 'http://pideja.ca/danlev/galleries/portefolio_2018/photos/Portfolio-2018v3b12.jpg', caption: '' },
					{ src: 'http://pideja.ca/danlev/galleries/portefolio_2018/photos/Portfolio-2018v3b13.jpg', caption: '' },
					{ src: 'http://pideja.ca/danlev/galleries/portefolio_2018/photos/Portfolio-2018v3b14.jpg', caption: '' },
					{ src: 'http://pideja.ca/danlev/galleries/portefolio_2018/photos/Portfolio-2018v3b15.jpg', caption: '' },
					{ src: 'http://pideja.ca/danlev/galleries/portefolio_2018/photos/Portfolio-2018v3_15.jpg', caption: '' },
					{ src: 'http://pideja.ca/danlev/galleries/portefolio_2018/photos/Portfolio-2018v3b16.jpg', caption: '' },
					{ src: 'http://pideja.ca/danlev/galleries/portefolio_2018/photos/Portfolio-2018v3b17.jpg', caption: '' },
					{ src: 'http://pideja.ca/danlev/galleries/portefolio_2018/photos/Portfolio-2018v3b18.jpg', caption: '' },
					{ src: 'http://pideja.ca/danlev/galleries/portefolio_2018/photos/Portfolio-2018v3b19.jpg', caption: '' },
					{ src: 'http://pideja.ca/danlev/galleries/portefolio_2018/photos/Portfolio-2018v3b20.jpg', caption: '' },
		
		],

		init: function (globalSettings) {
			//console.log('Init');


			var vegasControls = 
				'<li><button class="vegas_prev"></button></li>'+
				'<li><button class="vegas_togl"></button></li>'+
				'<li><button class="vegas_next"></button></li>';

			vegasControls = '<ul id="vegas_controls" class="spinal__column">' + vegasControls + '</ul>';
			$('.page__pallet__top').after(vegasControls)

			if ($(slideshow).vegas('playing')) {
				$('.vegas_togl').addClass('vegas-pause');
			} else {
				$('.vegas_togl').addClass('vegas-play');
			}

			$('.vegas_togl').on('click', function() {
				$(this).toggleClass('vegas-pause vegas-play');
				$(slideshow).vegas('toggle');
			});
			$('.vegas_prev').on('click', function() {
				$(slideshow).vegas('previous');
			});
			$('.vegas_next').on('click', function() {
				$(slideshow).vegas('next');
			});

		var vegasCaption = $('<div />').attr({
			id : 'vegas_caption'
		});
		$('.the__gallery').after(vegasCaption);


		},
		play: function (index, slideSettings) {
			//console.log('Play');
		},
		pause: function (index, slideSettings) {
			//console.log('Pause');
		},
		walk: function (index, slideSettings) {
			//console.log('Slide index ' + index + ' image ' + slideSettings.src);

			if (slideSettings.caption != '') {
				$('#vegas_caption').show();
				$('#vegas_caption').html('<p>'+ slideSettings.caption +'</p>');
			} else {
				$('#vegas_caption').hide();
			}

		}

	});
</script>

There are two number 15 slides. How to correct, once the slide show is restored?

Offline

#4 2018-08-21 05:32:00

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

Re: HELP! Error 503

looks like you have javascript in your custom css. I don't know if this is what's messing things up but it shouldn't be there anyway.


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

Offline

#5 2018-08-21 05:36:06

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

Re: HELP! Error 503

Back online with images and all...scared for a minute, there. I reposted the images (twice) and I think that solved at least part of the problem.

Still, don't know how all that happened. Controls don't show up but I am reluctant to fiddle around with the presentation.

Last edited by pideja (2018-08-21 05:36:49)

Offline

#6 2018-08-21 05:37:26

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

Re: HELP! Error 503

Maybe I could do without the css.

Where is the java in here:

#vegas_controls {
position: absolute;
text-align: left;
top: -70px
}

$elmt.vegas({
    slides: [
        { src: '/photo/Portfolio-2018v3b_01.jpg' },
        { src: '/photo/Portfolio-2018v3b_02.jpg' }
        { src: '/photo/Portfolio-2018v3b_03.jpg' }
        { src: '/photo/Portfolio-2018v3b_04.jpg' }
        { src: '/photo/Portfolio-2018v3b_05.jpg' }
        { src: '/photo/Portfolio-2018v3b_06.jpg' }
        { src: '/photo/Portfolio-2018v3b_07.jpg' }
        { src: '/photo/Portfolio-2018v3b_08.jpg' }
        { src: '/photo/Portfolio-2018v3b_09.jpg' }
        { src: '/photo/Portfolio-2018v3b_10.jpg' }
        { src: '/photo/Portfolio-2018v3b_11.jpg' }
        { src: '/photo/Portfolio-2018v3b_12.jpg' }
        { src: '/photo/Portfolio-2018v3b_13.jpg' }
        { src: '/photo/Portfolio-2018v3b_14.jpg' }
        { src: '/photo/Portfolio-2018v3b_15.jpg' }
        { src: '/photo/Portfolio-2018v3b_16.jpg' }
        { src: '/photo/Portfolio-2018v3b_17.jpg' }
        { src: '/photo/Portfolio-2018v3b_18.jpg' }
        { src: '/photo/Portfolio-2018v3b_19.jpg' }
        { src: '/photo/Portfolio-2018v3b_20.jpg' }
    ],
    transition: 'fade 5000 s'
});

or is it all Java. In that case, would it try to override the Backlight-Vegas slideshow controls?

Last edited by pideja (2018-08-21 05:40:14)

Offline

#7 2018-08-21 08:35:50

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

Re: HELP! Error 503

this is script:

elmt.vegas({
    slides: [
        { src: '/photo/Portfolio-2018v3b_01.jpg' },
        { src: '/photo/Portfolio-2018v3b_02.jpg' }
        { src: '/photo/Portfolio-2018v3b_03.jpg' }
        { src: '/photo/Portfolio-2018v3b_04.jpg' }
        { src: '/photo/Portfolio-2018v3b_05.jpg' }
        { src: '/photo/Portfolio-2018v3b_06.jpg' }
        { src: '/photo/Portfolio-2018v3b_07.jpg' }
        { src: '/photo/Portfolio-2018v3b_08.jpg' }
        { src: '/photo/Portfolio-2018v3b_09.jpg' }
        { src: '/photo/Portfolio-2018v3b_10.jpg' }
        { src: '/photo/Portfolio-2018v3b_11.jpg' }
        { src: '/photo/Portfolio-2018v3b_12.jpg' }
        { src: '/photo/Portfolio-2018v3b_13.jpg' }
        { src: '/photo/Portfolio-2018v3b_14.jpg' }
        { src: '/photo/Portfolio-2018v3b_15.jpg' }
        { src: '/photo/Portfolio-2018v3b_16.jpg' }
        { src: '/photo/Portfolio-2018v3b_17.jpg' }
        { src: '/photo/Portfolio-2018v3b_18.jpg' }
        { src: '/photo/Portfolio-2018v3b_19.jpg' }
        { src: '/photo/Portfolio-2018v3b_20.jpg' }
    ],
    transition: 'fade 5000 s'
});

I don't know what effect it has. I imagine it could muck things up though, so take it out.


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

Offline

#8 2018-08-21 15:00:05

Ben
Moderator
From: Melbourne, Australia
Registered: 2012-09-29
Posts: 4,399

Re: HELP! Error 503

It’s JavaScript. Java is an entirely different language.

Offline

#9 2018-08-21 23:49:21

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

Re: HELP! Error 503

Thanks for the "heads up" concerning the javascript. I was trying to modify the time-on-screen and the dissolve rate. I guess I've got to learn more about this.

While we are on that site, there is a text (in black) that seems to be in the top palette and that we can just see tiny parts of it thru the white "scénographie/set designer" text. Look at the "e" and the "/". I've looked at the page/top palette and the page/masthead and I have disabled these. Still, this text lingers on. Any idea where i can delete this?

Offline

#10 2018-08-22 00:09:48

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

Re: HELP! Error 503

pideja wrote:

Thanks for the "heads up" concerning the javascript. I was trying to modify the time-on-screen and the dissolve rate. I guess I've got to learn more about this.

While we are on that site, there is a text (in black) that seems to be in the top palette and that we can just see tiny parts of it thru the white "scénographie/set designer" text. Look at the "e" and the "/". I've looked at the page/top palette and the page/masthead and I have disabled these. Still, this text lingers on. Any idea where i can delete this?

You can modify the vegas script itself to change the dissolve rate:
http://community.theturninggate.net/vie … hp?id=8593

http://ttg-tips-and-tricks.barbeephoto. … ide-shows/

I'm not seeing the text you refer too. In fact, I don't see a top pallet at all. Is this the page you're referring to:
http://pideja.ca/danlev/


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 2018-08-22 00:33:17

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

Re: HELP! Error 503

I'm not seeing the text you refer too. In fact, I don't see a top pallet at all. Is this the page you're referring to:
http://pideja.ca/danlev/

you can see it briefly by going to PANGOLIN PAGE/COLOR/BASE and changing it to yellow. As the page loads, you'll see the words "DANIELE LEVESQUE" in black on the yellow background. That is what shows up thru the white text of the first page.
credentials:http://pideja.ca/danlev/backlight/admin/?a=login  name:admin  pass: tintin

Last edited by pideja (2018-08-22 00:38:01)

Offline

#12 2018-08-22 01:10:36

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

Re: HELP! Error 503

I see the text by changing the Contrast color to yellow, but it's just the masthead. I don't see problems with it.
But you can disable the masthead if you wish. Right now the masthead is in the header.


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

Offline

#13 2018-08-22 01:17:25

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

Re: HELP! Error 503

Thanks Rod. I should have spotted this.

Offline

Board footer

Powered by FluxBB