Picture Download Link Picture Download Link
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

Picture Download Link

Started by ron4mac, October 20, 2018, 05:30:45 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

ron4mac

This is a CPG1.5.x version plugin that has been updated for CGP1.6.x
Original thread: http://forum.coppermine-gallery.net/index.php/topic,65849.0.html

zuckelpart

I made a translation for Estonian users (attached).

allvip

1) In debug \plugins\pic_download_link\picture.php from line 69 to 72:
I assume mysql_ should be cpg_db_
Anyway the debug notice is gone.

2. mysqli_close(); I don't know what coppermine uses for it or is fine this way.

3. \plugins\pic_download_link\configuration.php (not text on plugin page, plugin configuration or displayimage.php)


    Notice line 18: Undefined variable: pic_link
    Notice line 19: Undefined variable: pic_link
    Notice line 19: Undefined variable: pic_link
    Notice line 20: Undefined variable: pic_link
    Notice line 21: Undefined variable: pic_link
    Notice line 29: Undefined variable: pic_link



allvip

FIXED

1) init.inc.php on line 18

require_once

should be replaced with

require

2) admin.php line 167

$pic_link['link_whichone']

should be replaced with

$pic_link['whichone'][code]

3) I also belive in init.inc.php

[code]
if (file_exists("./plugins/pic_download_link/lang/{$CONFIG['lang']}.php")) {
    require_once ("./plugins/pic_download_link/lang/{$CONFIG['lang']}.php");
}


should be


if ($CONFIG['lang'] != 'english' && file_exists("./plugins/pic_download_link/lang/{$CONFIG['lang']}.php")) {
    require "./plugins/pic_download_link/lang/{$CONFIG['lang']}.php";
}



allvip

I don't know if is important but in some files like admin.php


require_once('plugins/pic_download_link/init.inc.php');


is without the ./


require_once('./plugins/pic_download_link/init.inc.php');

allvip

This plugin won't take the german language on any page.

allvip

Quote from: allvip on August 12, 2020, 05:41:33 AM
This plugin won't take the german language on any page.

Ctrl F5 did not cleared chache, but firefox restart did.