/wp-content/plugins/RealConnect/controllers/wppage.php

$pageurl_uri=$wp->request;

line number 28 added as above to overwrite the way current page url is requested in website as older method was creating issue in http or https urls
while displaying search form in controllers/properties.php file line number line number 121

also added global $wp; in function wppage($rc_listing_view_template_file_path = '') {





/wp-content/plugins/RealConnect/models/shared_model.php

sql changed from = to like to handle all url types http, https, http://www., https:www while validating client information from database

old sql
$rows = $this->databaseConnection->get_row("select * from clients  WHERE url = '%".$site_url."'",ARRAY_A);

new sql
$rows = $this->databaseConnection->get_row("select * from clients  WHERE url like '%".$site_url."'",ARRAY_A);







