Quote:
Originally Posted by Delfi_r
The problem with PhotoPost it's not in the core application, but in the plugin that shows images to the forum. And The problem is from a change they made in v8.23 not in 8.30 (i updated form 8.22 to 8.23 but not the plugin, but with the 8.30 update I updated the plugin too. So I have the same problem than Ophelia.
I need the two plugins and I can deactivate PP when I need to make edits on the Dowmloads section, but perhaps there is a sollution for this.
|
Quote:
Originally Posted by Hippy
post the problem over to Chuck @ pp
|
Chuck @ pp has identified the problem and found a solution that involves changes on downlads.php. My forum is working fine now and the changes are minimal
I post here all the reasoning:
Quote:
There is your conflict on edit.
He is using a variable name the same as we use
PHP Code:
`link` = " . $link . ",
renaming our variable does not to solve that hacks problem.
If I rename $link to $dblink in our plugins nothing changes.
If I rename line 1713 of downloads.php file to this then it works
PHP Code:
`link` = '" . $file['link'] . "',
|
I did it and all is working now