We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

http:// link Oxwall changes this in https:// | Forum

Topic location: Forum home » Support » General Questions
Marcel
Marcel Dec 15 '14

I installed oxwall on a https server, but whenever i want to use a link Oxwall changes this in , for example in news, blogs while the url needs to be in http.. How can i fix this?


gr


Marcel

ross Team
ross Dec 15 '14
This is how SSL certificate works, if you have https website and you put http in the URL you should be redirected to https

If you have http website and you put https in the URL, your website should just come without styles. 

ross Team
ross Dec 15 '14
Marcel
Marcel Dec 27 '14
i fix it by myself
Marcel
Marcel Dec 27 '14

I have in the application.php the replace change on line 907

$markup = str_replace("", "", $markup);

Marcel
Marcel Dec 27 '14

("", "", $markup);

Marcel
Marcel Dec 27 '14
hmm between quotation marks http
Marcel
Marcel Dec 27 '14
yw
Yannick
Yannick Feb 5 '16
Still an issue. Had to change in application.php:


941:$markup = str_replace("http:", "http:", $markup);

945:$search[$index] = str_replace($matches[2][$index], str_replace("http:", "http:", $matches[2][$index]), $search[$index]);


Site seems to be functioning normally after this change

JoshWho
JoshWho Feb 5 '16
awesome fix.