Advanced search  

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Pages: [1] 2 3   Go Down

Author Topic: Fullsize access plugin for cpg1.5.x  (Read 51381 times)

0 Members and 1 Guest are viewing this topic.

Αndré

  • Administrator
  • Coppermine addict
  • *****
  • Country: de
  • Offline Offline
  • Gender: Male
  • Posts: 15764
Fullsize access plugin for cpg1.5.x
« on: May 04, 2012, 03:05:40 pm »

This is the cpg1.5.x port of the fullsize_access plugin by Klaus Schwarzburg. The port has been created as a freelance job (link), so there's just limited support.

From the original announcement thread:
this plugin controls access for downloading fullsize images and adds several features:

- restrict access to fullsize pics to registered users
- adds a download link to the image information section
- adds a fullsize download history (datetime,username,ip) table and a statistics page
- sending email to admin and/or customer for each download
- zip download link to download all pics in an album and in favorites
- clicking on medium sized pic to show fullsize pic is disabled
- Secure image files on the file system level via chmod

Most settings can be controlled by a configuration page added to the admin menu. Plugin language is english only, but some settings are in german. This may be improved in a future version... At the moment all registered users are allowed to download fullsize images. You can change this behavior by editing the file fullsize_check.php.

The zip download feature bypasses cpg's build-in favorites zip download. I recommend to switch off the cpg favorites-zip download in the cpg-config page if you want to use this plugin.


The optional file security feature will prevent users to download pics by entering the pics url directly and it works like this:
- if a fullsize pic is requested, the plugin first changes the file attributes from 660 (safe) to 666 (unsafe) and then sends the file to the user. After the download the attribute is set back to 660.
- The fullsize access conig panel has  buttons to secure and unsecure all files
- The file attribute is changed via ftp

If you want to use this feature you have to edit the file 'fullsize_secure.php'. At the beginning of the file there is a section where you must specify your ftp login and the path for the ftp client to the coppermine root.  New pics that are added to the cpg gallery are not automatically secured. You must use the secure button in the plugins config page. So this feature is only useful for galleries were only 1 or a few people are uploading pics.
I'm not an unix/apache expert and the security feature is open for discussion. On my present webserver the file attribute change from 660 to 666 is not needed to download the file via the script. However this was different on my old system.... Any suggestions are welcome!

The album ZIP download feature has been disabled, as it doesn't work (missing library).
« Last Edit: May 04, 2012, 03:28:21 pm by Αndré »
Logged

Mimer

  • Translator
  • Coppermine frequent poster
  • **
  • Offline Offline
  • Gender: Male
  • Posts: 129
    • Fjotte
Re: Fullsize access plugin for cpg1.5.x
« Reply #1 on: June 26, 2012, 03:29:48 pm »

Hi

I would like to change the plugin, so a specific user group can access fullsize and not all registred users.
For a test I changed fullsize_check.php:
Code: [Select]
<?php
function fullsize_check_user(){
if( USER_GROUP=='Testing' ){
return(true);
} else{
return(false);
}
}
?>
This doesn't do the trick.
Do I have to change something in the codebase.php as well?

Best regards
Mimer  8)
Logged

Αndré

  • Administrator
  • Coppermine addict
  • *****
  • Country: de
  • Offline Offline
  • Gender: Male
  • Posts: 15764
Re: Fullsize access plugin for cpg1.5.x
« Reply #2 on: June 27, 2012, 10:52:34 am »

Try
Code: [Select]
<?php
function fullsize_check_user(){
global $USER_DATA;
if($USER_DATA['group_name'] == 'Testing'){
return(true);
} else{
return(false);
}
}
?>
Logged

Mimer

  • Translator
  • Coppermine frequent poster
  • **
  • Offline Offline
  • Gender: Male
  • Posts: 129
    • Fjotte
Re: Fullsize access plugin for cpg1.5.x
« Reply #3 on: June 28, 2012, 11:37:03 am »

Tnx - works fine now.

Mimer  8)
Logged

paquets

  • Coppermine regular visitor
  • **
  • Offline Offline
  • Posts: 59
Re: Fullsize access plugin for cpg1.5.x
« Reply #4 on: August 27, 2012, 09:57:32 pm »

Hi,

Great plugin! Do you know if it would be possible to move the download link from the file info section and position it right under the image itself in displayimage.php?

Thank you!
Logged

Αndré

  • Administrator
  • Coppermine addict
  • *****
  • Country: de
  • Offline Offline
  • Gender: Male
  • Posts: 15764
Re: Fullsize access plugin for cpg1.5.x
« Reply #5 on: August 29, 2012, 10:53:31 am »

That's possible by using the file_data plugin hook.
Logged

paquets

  • Coppermine regular visitor
  • **
  • Offline Offline
  • Posts: 59
Re: Fullsize access plugin for cpg1.5.x
« Reply #6 on: August 29, 2012, 11:06:17 am »

Thank you André.

Would it be simply a case of replacing "file_info" by "file_data" in fullsize_access/codebase.php? I'm not familiar how plugin hooks work.
Logged

Αndré

  • Administrator
  • Coppermine addict
  • *****
  • Country: de
  • Offline Offline
  • Gender: Male
  • Posts: 15764
Re: Fullsize access plugin for cpg1.5.x
« Reply #7 on: August 29, 2012, 12:55:34 pm »

I doubt that this will work. But as I hadn't looked at the code, I don't know.

I'm not familiar how plugin hooks work.
Have a look at the docs and maybe some other plugins, that use that plugin hook to add something below the picture.
Logged

paquets

  • Coppermine regular visitor
  • **
  • Offline Offline
  • Posts: 59
Re: Fullsize access plugin for cpg1.5.x
« Reply #8 on: August 31, 2012, 09:39:06 pm »

I will have a look and if I figure it out, I'll report it back here.
Thank you.
Logged

phill104

  • Administrator
  • Coppermine addict
  • *****
  • Country: gb
  • Offline Offline
  • Gender: Male
  • Posts: 4885
    • Windsurf.me
Re: Fullsize access plugin for cpg1.5.x
« Reply #9 on: November 27, 2012, 11:10:39 am »

Interesting idea changing perms that way. For users with root access it might be easier to have a specific group (chown) setup on the server so images in the albums folder could only be called up by a script belonging to that group and not a general user guessing the URL. The problem as ever with this kind of script it how an individuals server is setup.
Logged
It is a mistake to think you can solve any major problems just with potatoes.

taucher0815

  • Coppermine newbie
  • Country: 00
  • Offline Offline
  • Gender: Male
  • Posts: 6
    • Imagedatabase
Re: Fullsize access plugin for cpg1.5.x
« Reply #10 on: December 24, 2012, 06:55:31 pm »

Hi all!

First of all: Merry Christmas!

I really like the plugin but I have a little issue.
It is running on CPG 1.5.20 with no ability to use the php internal mail sending.
I set up my mail-providers details in the general cpg setup und all works well.

Any chance to get this enabled here, too?

Many thanks
Sven

(http://www.sportfotos-oberbayern.de)
Logged

taucher0815

  • Coppermine newbie
  • Country: 00
  • Offline Offline
  • Gender: Male
  • Posts: 6
    • Imagedatabase
Re: Fullsize access plugin for cpg1.5.x
« Reply #11 on: December 27, 2012, 11:47:18 am »

Hi all!

OK, the above topic can be ignored.

A few more questions:
a) Is it possible to add more text to the mail a user gets after downloading an image?
b) Is there a way to insert the Album-Name and the user name as a variable?
c) For the access rights of the full sized image: The "secured" images are getting the rights 660. In the settings of coppermine there is an option to set the default access rights of files. When setting 660 there, does this save the step from securing images via the plug in?

Many thanks
Sven

(http://www.sportfotos-oberbayern.de)
Logged

Αndré

  • Administrator
  • Coppermine addict
  • *****
  • Country: de
  • Offline Offline
  • Gender: Male
  • Posts: 15764
Re: Fullsize access plugin for cpg1.5.x
« Reply #12 on: December 28, 2012, 11:12:36 am »

no ability to use the php internal mail sending.
It seems that the plugin doesn't use the cpg mail function, but the PHP function mail.

OK, the above topic can be ignored.
Please post your solution.


a) Is it possible to add more text to the mail a user gets after downloading an image?
Have a look at the file fullsize_secure.php and check the mail functions. I guess you either have to adjust that line:
Code: [Select]
$txt = $CONFIG['plugin_ks_fullsize_message_for_customer'] . "\n";or adjust the corresponding config value.


b) Is there a way to insert the Album-Name and the user name as a variable?
Should be possible by adjusting the some code near the code you found in a).


c) For the access rights of the full sized image: The "secured" images are getting the rights 660. In the settings of coppermine there is an option to set the default access rights of files. When setting 660 there, does this save the step from securing images via the plug in?
If Coppermine has sufficient permissions to change that, I guess you won't be able to access any generated files (thumbnails, intermediate-sized versions). I haven't checked that nor looked at the code. I suggest to test this on your gallery.
Logged

taucher0815

  • Coppermine newbie
  • Country: 00
  • Offline Offline
  • Gender: Male
  • Posts: 6
    • Imagedatabase
Re: Re: Fullsize access plugin for cpg1.5.x
« Reply #13 on: December 28, 2012, 08:34:53 pm »

Hi André!

It seems that the plugin doesn't use the cpg mail function, but the PHP function mail.
Please post your solution.
Initially I wanted to host the large gallery on my own server at home via dyndns... Due to bandwidth reasons and a good offer from my webhoster I upgraded my plan there.

Have a look at the file fullsize_secure.php and check the mail functions. I guess you either have to adjust that line:
Code: [Select]
$txt = $CONFIG['plugin_ks_fullsize_message_for_customer'] . "\n";or adjust the corresponding config value.

OK, I will have a look.

Thanks so far!
Sven
Logged

taucher0815

  • Coppermine newbie
  • Country: 00
  • Offline Offline
  • Gender: Male
  • Posts: 6
    • Imagedatabase
Re: Fullsize access plugin for cpg1.5.x
« Reply #14 on: December 28, 2012, 08:51:35 pm »

Hi Andrč!

The message text is stored in the config-table where the values are defined as varchar(255)...

That's the reason for the limited message size.

Sven
Logged

allvip

  • Coppermine addict
  • ****
  • Country: 00
  • Offline Offline
  • Posts: 1362
Re: Fullsize access plugin for cpg1.5.x
« Reply #15 on: September 14, 2013, 11:51:26 pm »

Fatal error: Call to undefined function ftp_connect() in /gallery/plugins/fullsize_access/fullsize_secure.php on line 177 error when I clik secure all files.

I edited the fullsize_secure.php:

Code: [Select]


////////////////////// section to edit

// edit ftp user/host data here:
$ftp_server = "ftp.myhost.de";
$ftp_user_name = "my filezilla usename";
$ftp_user_pass = "file zilla pass";
$ftppath_to_cpg = '/gallery/'; // this is the path to your cpg dir starting from your home page root (what the ftp sees by default)

////////////////////// end section to edit


my gallery:

http://allvip.us/gallery/index.php
Logged

allvip

  • Coppermine addict
  • ****
  • Country: 00
  • Offline Offline
  • Posts: 1362
Re: Fullsize access plugin for cpg1.5.x
« Reply #16 on: September 14, 2013, 11:53:08 pm »

ftp.myhost.de is changed to my file zilla host too
Logged

Αndré

  • Administrator
  • Coppermine addict
  • *****
  • Country: de
  • Offline Offline
  • Gender: Male
  • Posts: 15764
Logged

allvip

  • Coppermine addict
  • ****
  • Country: 00
  • Offline Offline
  • Posts: 1362
Re: Fullsize access plugin for cpg1.5.x
« Reply #18 on: September 16, 2013, 03:58:21 pm »

done.ftp suport not showing.

anyway I'm moving my gallery to another host and I will use .htaccess for hotlinking.

yahoo host does not allows many many things.
Logged

JohannM

  • Coppermine frequent poster
  • ***
  • Offline Offline
  • Posts: 252
Re: Fullsize access plugin for cpg1.5.x
« Reply #19 on: January 09, 2016, 05:39:46 pm »

Hi there

I disabled "image information" completely since I do not want to have my website visitors or registered users to see it.

Question: Is there a way to configure this:

1. To enable only my group "VIP" to be able to download
2. Display a simple button "DOWNLOAD" just below or above the intermediate picture based on my usergroup "VIP" ?

Thank you in advance.

JohannM
( www.youth-sport-fotos.com)
Logged
Pages: [1] 2 3   Go Up
 

Page created in 0.031 seconds with 19 queries.