Deleted portion is still showing in the angular app - html

I am creating an angular app, i just put a thumbnail slider in a page later i removed it. The problem is that html portion of thumbnail is still showing in the page. I've tried everything and at last i pulled the previous version from git there also that portion is showing in local. I'm using Xampp server. Is it a virus? What may be the issue?
Actually this portion is not in the code, but it's still showing, i've deleted the corresponding js files and css too.

Related

Google Chrome: Adding custom image in the tab container

I am trying to customize my Google Chrome browser by adding an image at the very top in the tab container above the search bar. I notice a few themes in the Theme store have images, but I couldn't find how to add custom images from any online source
I also noticed that every time I installed a theme, a file would get downloaded into my computer. I'm not sure where to find this file but could I modify the code to get the desired changes?

Nginx not updating webpages. Using Termux

I am trying to run a small website from my tablet with Termux and Ngnix. The nginx.conf file has been properly configured, and the webpages have been placed in the correct folder. The problem is that when I make changes to the html code, the nginx server doesn't seem to want to update with the new changes.
For example, I had a thumbnail image that would open in a new tab for viewing at full size when clicked. I later changed the html code so the same thumbnail image would open up a page on the site with related text info. I made sure to stop the server before applying any changes to my code, and then restarting the server after the appropriate changes were made. Unfortunately, the server keeps displaying the pages before the changes. It's like the original pages are stuck somewhere in the server's "memory" and don't want to update. Does anyone have any ideas as to what I'm doing wrong? This is getting really frustrating.
Thank you in advance to any who can help me.
Seems the issue was with the browser and not Nginx. I cleared the data from the browser, restarted, and haven't had any issues since. Strange, but it worked.

Images are not showing in ckfinder in eclipse

I have included the CKfinder in my html file. After included this file, I'm able to see the images in folderwise in popup window and able to store the image as well. As per my view, when we click on browse server button, it is creating ckfinder folder and storing all the uploaded images. It is working fine in XAMPP server.
But when I tried to implement the same thing in my Eclipse project, Images folder is not showing. It's showing blank in the popup window.
How to fix this issue? Kindly help me.

Cant access an image in a folder SAILS Js

Now I am working in a half completed project built using angular js and Sails js. In this,recently the profile pics are stored in the folder ../asstes/images/profilepics/.. .jpg. Now I created a new folder called 'Thumb' inside the profilepics folder with the thumbnails of image in profilepics folder.So in the project, Now I am taking images from Thumb folder.But is is not get accessed. When I take inspect element from my web page I got the link as
http://192.168.1.75:9002/images/profilePics/Thumb/46323c0b-c75a-431e-9bff-c1f61de0bcb5.jpg
But not dispalying the image. I copied this link to browser, browser shows error 404. why it happens so?.Any permission issue or something like that?.If I take pic directly from profile pics, it works fine. plzz help
I am not sure but a adress can not be http://192.168.example.something:numbers/youknow/
It happens because you have to sails lift again so you new images and folders become available to Sails. #sulu666

Heroku/Node.js - Deploying does not load CSS?

I'm trying to deploy a site to Heroku using node.js, and I've run into a bit of an issue. When I run my site locally, it looks as I expected it to. However, once I deploy it to Heroku, it seems that it does not recognize the CSS file I have included, despite the fact that it is using the same exact files and file structure.
I have confirmed that my HTML and CSS code is syntactically correct, and that the CSS file is being pushed through Git. I made a commit by changing one thing in the CSS to make sure that it was being pushed (it did).
Here's how I access the CSS file:
<link rel="stylesheet" type="text/css" href="css/style.css">
Here is an image of how the website looks locally (left) and deployed on Heroku (right) using the same exact code (the black boxes are just from me obscuring some personal details).
Website Comparison
Does anyone know why Heroku refuses to use my CSS? I've been racking my brain for 2 days on this can can't figure it out.
I had the exact same problem, it happend I miss one character in my whole code. Let me explain
When I heroku opened my project no css loaded, but interestingly enough jquery was working fine and the css that jquery was getting from the css file was just fine. The css file was not the problem.
Then I found that the browser was blocking some
content.
If you tell the browser to read the blocked content anyways, it will show the page no problem, but it will show a https with a horrible red line crossing it, not an option. Then I checked what content the browser was blocking
(blocked content)
it was my bootstrap link.
So I was linking my bootstrap with http and not https.
I added that letter s and it is working fine now.