Laravel 5 - webpage showing source code when i hit the back button on my browser - html

Good morning,
I have one problem, that i can't figure out why's happening. I have a website in Laravel 5 and it's working great, except if i hit the back button.
If i'm on one of the pages and hit back to return to the index, for example, the page won't render, just shows the source code on the browser, then if i refresh it, it will render again.
Anyone knows if this could be some kind of Laravel bug or some configuration i messed up?
Thanks in advance

please give a screenshot of the error page then it will help the developer to figure out the problem.
But I think may be you did not write any route for the back button

Related

Google image bug, transparent after clicking on an image

I can't find anybody facing the same problem as mine.
Every time I click an image on google image, suddenly the whole page disappear, but I'm still able to click things just like everything is still there.
I already turn off all extension, use incognito mode, after finally I try to use inspect element, and found attribute stating "Opacity: 0" on the body. And after unchecking the box (Quick disable attribute in inspect element chrome) everything shows up again.
I'm so confused on why this is happening.
Does anyone have ever facing the same problem?
Or how do I fix it?
It's so frustrating, because I have to refresh the page, every time I click on an image, or switch between images
so I was having this one. in the end, it was a virus.
In my case, it was showing an AD screen on the main google page, and in the sources>gstatic.com it had a different source which also was in a [unknown] source.
dug a bit up and discover some adware was using gstatic as a proxy to show ads on all browsers.
I solved it by running malwarebytes, it found it pretty quickly and solved it for me.
Posting this here because I'm hoping it helps people who search for this issue in the future.
part of the log

Error opening up facebook live. Works on other accounts

Hi all,
I am looking to record a live stream/video post on Facebook. I can see the 'Live' button when posting. Once clicked it takes you to this page (see screenshot) then gives this error "something went wrong, but we're working to fix it as soon as we can". Been like this for 2 days now.
This happens in Chrome, Edge and on Iphone. I can record a live stream using other facebook accounts on these formats though. I am using windows 10 if that helps?
The page address is takes you to is:
https://www.facebook.com/live/producer/?target_id=100050905598457&source=CAMERA&entry_point=feedx_sprouts
I know it's not specifically a programming issue, however I wondered if any coders could decipher what issues there may be. The only difference I can see is that the working account has upgraded to the 'new' facebook layout. Unfortunately, I can't update the facebook account I need to actually stream from yet, as facebook are still rolling this out.
Many Thanks

How to create links based on changing text on the screen

I am trying to figure out a way to create links to point to help files in my application based off the text on the screen.
Lets say my application reports the status of a car if it is running or not. If it is running everything is ok, but if it is not running it will display a reason such as:
In Park
Door is open.
Shut off.
Flat tire
When it displays the reason on the main page I want it to have a link pointing to the help file which will include a resolution to get the car back up and running.
The problem I am having is the the reasons change on the fly and update in real time. The resolutions for the problems are all different.
To give some background, the application is asp.net web application. I tried searching the web and I tried linking it to a simple page which had the links to the correct pages but that requires more user involvement. I want it to be click the problem and bring it right to the page.
Any information or suggestions would be great.
Thanks

Links Not Doing Anything

I'm making a rather simple online store page at http://pyentertainment.com/store.html integrating PayPal for payments, and just when I thought I was done I noticed none of the hyperlinks seem to do anything. By this I mean when I click them (I'm using Chrome and the same happens on other browsers too), on the status bar where it normally says "loading www.xyz.com" it changes to something for a fraction of a second and then disappears, not loading a new page; it's way too fast for me to catch what it says.
This happens to the links on the nav bar and to the social media links on the right.
Some context: When you click on an item, the page dims and an iframe comes up showcasing said product, with PayPal cart buttons. View cart/Add to cart open a new tab, but if you close them by clicking "continue shopping" they throw another error which although I'm not too concerned about might be the cause of the problem; I know iframes can be iffy to work with.
I'd appreciate any help. The links work on the rest of the domain, too.
Thanks in advance!
I would suggest downloading firebug from here:
Firebug Home Page
And watching what loads while you're loading your page, it will tell you if the resource is actually being located/served when the page is processing. If it's not, you may want to review how you built your links toe ensure they're properly configured.
Thanks guys, the issue ended up being that I had the entire body to check for clicks, and if the user clicked outside the item display box while it was on, dim it out, like this:
$('body').click(function(event)
{
if(!$(event.target).is('#productDisplay'))
{
$("#darkenBackground").fadeOut();
$("#productDisplay").attr('src','buy/loading.html');
return false;
}
});
I got rid of that feature and instead added a little close button to do the same thing. The links work now! Thank you all for your help :)
i cant give a full answer but it looks like its your dimmer specificly the part that detects the body click. try putting it into an if statement to check that the functon has been called before running the body click function
EDIT
something like
if(product displayed) {
look for click event on body
}

Web Design - Flash AS3 - button bug

I've run into this problem twice in all the site's I've designed and I can't figure out how to fix it. (The flash compiler has not given me any errors for this.)
Here is the link first of all
http://rollingsquare.com/AKJ/akj.html
Once you're in the site click on portfolio and then click on "the excelsior" what happens is that for the first 4-5 clicks it won't do what it's supposed to do and it'll start randomly either stopping at a frame or playing a from a frame. Once it's done it's randomness it all works perfect again, but those initial clicks do not take you anywhere.
This is an externally loaded SWF and I've loaded it with 2 different techniques hoping it was that but that didn't fix it.
I've tried simply placing a UiLoader and linking it and what it is now, a var myLoader.
Anyone run into something like this before?
You should try to be more specific in asking programming questions. I almost took it as a spam link.
Anyway's if I am getting you correct, the initial thumbnail clicks don't load the image.You should probably use individual loader for each of those large images.