Hello Mr D.
Open this file ->
JoomlaFolder\administrator\components\com_easydiscuss\tables\attachments.php
LINE 115 (
http://screencast.com/t/MZxiOlO81b ) DISCUSS_MEDIA -> $DISCUSS_MEDIA2
public function deleteable()
{
$config = DiscussHelper::getConfig();
$storage = DISCUSS_MEDIA . '/' . rtrim( $config->get( 'attachment_path' ) , '/' );
$file = $storage . '/' . $this->path;
public function deleteable()
{
$config = DiscussHelper::getConfig();
$storage = $DISCUSS_MEDIA2 . '/' . rtrim( $config->get( 'attachment_path' ) , '/' );
$file = $storage . '/' . $this->path;
===========================================================================================
LINE 156 '/media/com_easydiscuss/' -> '/uploads'
public function preview()
{
$config = DiscussHelper::getConfig();
$path = $config->get( 'attachment_path' );
$file = JPATH_ROOT . '/media/com_easydiscuss/' . $path . '/' . $this->path;
public function preview()
{
$config = DiscussHelper::getConfig();
$path = $config->get( 'attachment_path' );
$file = JPATH_ROOT . '/uploads' . $path . '/' . $this->path;
============================================================================================
LINE 90 (
http://screencast.com/t/wqYHbrfS ) DISCUSS_MEDIA -> $DISCUSS_MEDIA2
public function delete( $pk = null )
{
// @rule: Test if deletion is possible.
if( !$this->deleteable() )
{
return false;
}
// @rule: Delete the files.
$config = DiscussHelper::getConfig();
$storage = DISCUSS_MEDIA . '/' . rtrim( $config->get( 'attachment_path' ) , '/' );
$file = $storage . '/' . $this->path;
public function delete( $pk = null )
{
// @rule: Test if deletion is possible.
if( !$this->deleteable() )
{
return false;
}
// @rule: Delete the files.
$config = DiscussHelper::getConfig();
$storage = $DISCUSS_MEDIA2 . '/' . rtrim( $config->get( 'attachment_path' ) , '/' );
$file = $storage . '/' . $this->path;
============================================================================================
LINE 179 (
http://screencast.com/t/VvaCYTYS8Po ) -> '/media/com_easydiscuss/' -> '/uploads'
public function download()
{
$config = DiscussHelper::getConfig();
$path = $config->get( 'attachment_path' );
$file = JPATH_ROOT . '/media/com_easydiscuss/' . $path . '/' . $this->path;
public function download()
{
$config = DiscussHelper::getConfig();
$path = $config->get( 'attachment_path' );
$file = JPATH_ROOT . '/uploads' . $path . '/' . $this->path;
Hope this help.