By Mario Notaro on Monday, 25 January 2016
Replies 3
Likes 0
Views 0.9K
Votes 0
Hi, I need to change 2 default options but I can't find where to change these.
When I add an image a //nameofthesite.com/images..... is appendended but this make the images not visible. Where can I exclude this?
the 2 is "allow comments" setting inside the composer is set to NO, but I need YES.
Can you pls help? Thx, Mario
Hey Mario,

EasyBlog does not use the protocol and the image will still load fine because the browser will render the image using http:// or https:// respectively .

As for setting the comments to enabled by default, go to Settings > General and under the "Default Options", turn on the "default comment option"
·
Monday, 25 January 2016 19:03
·
0 Likes
·
0 Votes
·
0 Comments
·
yes, probably on site is ok, but I have a problem with Acymailing. Is it possibile to exclude "//nameofthesite.com/"
·
Monday, 25 January 2016 19:16
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Mario,

Unfortunately that is not possible right now as this is the best way to be "protocol" independent. In other words, if you decide to switch from http:// to https:// , you will not have any issues.

However, should you really want to modify this (Do this as your own risk), edit the file /administrator/components/com_easyblog/includes/mediamanager/mediamanager.php and at line 781 locate the codes below,


$root = preg_replace("(^https?://)", "//", EASYBLOG_JOOMLA_URI);


Replace it with,


$root = EASYBLOG_JOOMLA_URI;
·
Monday, 25 January 2016 19:31
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post