Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - pixelkitty

Pages: [1]
1
there is nothing stopping the site visitor from clicking EDIT - VIEW SOURCE

waste of time trying to stop that really.

All my script is designed to do is remind people that copyright is enforced. They already have the image downloaded onto their machine as soon as they view the site so ... *shrug*

2
I have a script that I am currently using at pixelkitty.net to disable right click of images only.

This way, visitors can still use other right click functions such as bookmark, back, open in new window/tab etc on the page itself.

Is it possible to put this script into 4images instead of the current 'disable right click' script?

I want to do this as I find the current disable script is too restrictive, as I use right click extensively for navigation and other purposes when I am within my own sites.

The script I use at the above site is below, for those who may want it.

Code: [Select]
// JavaScript Document
var clickmessage="© Copyright by {site_name}"

function disableclick(e) {
if (document.all) {
if (event.button==2||event.button==3) {
if (event.srcElement.tagName=="IMG"){
alert(clickmessage);
return false;
}
}
}
else if (document.layers) {
if (e.which == 3) {
alert(clickmessage);
return false;
}
}
else if (document.getElementById){
if (e.which==3&&e.target.tagName=="IMG"){
alert(clickmessage)
return false
}
}
}

function associateimages(){
for(i=0;i<document.images.length;i++)
document.images[i].onmousedown=disableclick;
}

if (document.all)
document.onmousedown=disableclick
else if (document.getElementById)
document.onmouseup=disableclick
else if (document.layers)
associateimages()

3
Rob, would you mind posting your solution as I am also having problems with NetPBM with 4images.

I know NetPBM is installed and configured correctly, as I am using it with another app.

4
Installation, Update & Configuration / Thumb´s again :(
« on: February 20, 2003, 07:20:30 AM »
I am having the same issue with netpbm

I know my path is correct, as when I change it, I get a NetPbm path incorrect or not installed error.

I get as far as selecting the image to the thumbnailed, and get the error:

Create thumbnail for: orange flower (orange_flower.jpg) ....  
   Error creating thumbnail!


I cannot use Image:Magick as my host will not install it.

Help would be much appreciated, as so far 4images seems to be the best tool on the market!

5
Discussion & Troubleshooting / create category generates db error
« on: February 20, 2003, 07:09:58 AM »
Quote from: V@no
check again installation guide. /admin/ folder in not the only one folder u need do CHMOD on.  :wink:
http://4homepages.de/forum/viewtopic.php?p=17276#17276



Thanks V@no, but I have already chmod'd the directories and files listed - redid them just in case - using WS-FTP and telnet also, just to check.

Is there something else I may be missing?

6
Discussion & Troubleshooting / create category generates db error
« on: February 20, 2003, 06:58:58 AM »
Warning: mkdir() failed (Permission denied) in /public_html/photo/admin/categories.php on line 78

Warning: mkdir() failed (Permission denied) in /public_html/photo/admin/categories.php on line 81

Warning: mkdir() failed (Permission denied) in /public_html/photo/admin/categories.php on line 78

Warning: mkdir() failed (Permission denied) in /public_html/photo/admin/categories.php on line 81
Category added

permissions are set to 777 on admin and all files contained therein.

Even though I get the error each time, the category is created.

Any help much appreciated.

Pages: [1]