PDA

View Full Version : How to add an image to my URL?


New Joe
08-08-2014, 12:38 PM
So I'm going to move my site to a new URL

To make it easy just going to move the files, then change the info in the Admin panel and use the same data base.

So i need to clear out the old VB files of the old folder, But i what I want it to put an image in place for the old URL so when someone goes to it they see that image.

I know how to do it with the VB software and files but as I will be removing the files I need to now how to do it as in just it's own file for the image.

Hope someone understand the about LOL

--------------- Added 1407509489 at 1407509489 ---------------

Ok, worked it out, just use a php file, i've called it index.php

And used this code:
<center> <img src="XXX.jpg" width="500" height="500" alt=> <center>

But I'd like it so you can't actually right click and 'Save image' 'Copy Image' with your mouse when on the url page and the image is there.

Any ideas?

tbworld
08-08-2014, 04:40 PM
And used this code:
<center> <img src="XXX.jpg" width="500" height="500" alt=> <center>But I'd like it so you can't actually right click and 'Save image' 'Copy Image' with your mouse when on the url page and the image is there.

Any ideas?

I think this is what you are after. :)

https://vborg.vbsupport.ru/showthread.php?t=310210


There is no method to completely stop someone from copying your image, as this is the design of the web. The modification above will just slow them down a bit.

Lynne
08-08-2014, 04:50 PM
You realize that in order for someone to 'see' an image, the browser actually downloads that image and it's in their browser cache? And, you can view the page source by using keystrokes instead of using your mouse? The only way to stop someone from downloading your image is to not show them the image in the first place.