Replace ALL lowercase occurences of cloudlog by wavelog

This commit is contained in:
int2001
2024-01-17 14:13:23 +00:00
parent 2128f42337
commit 97e87de210
113 changed files with 201 additions and 201 deletions

View File

@@ -9,7 +9,7 @@ defined('BASEPATH') OR exit('No direct script access allowed');
|
| 'app_name' Name of the App 'Cloudlog'
| 'app_version' Set by the dev team.
| 'directory' directory where cloudlog is installed eg "logger"
| 'directory' directory where wavelog is installed eg "logger"
| 'callbook' Selects which Callbook lookup to use defaults "hamqth" but supports "qrz"
*/
@@ -510,7 +510,7 @@ $config['encryption_key'] = 'flossie1234555541';
|
*/
$config['sess_driver'] = 'files';
$config['sess_cookie_name'] = 'ci_cloudlog';
$config['sess_cookie_name'] = 'ci_wavelog';
$config['sess_expiration'] = 0;
$config['sess_save_path'] = '/tmp';
$config['sess_match_ip'] = FALSE;

View File

@@ -64,12 +64,12 @@ if($_POST) {
$ch = curl_init();
$protocol=((!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') || $_SERVER['SERVER_PORT'] == 443) ? "https" : "http";
list($realHost,)=explode(':',$_SERVER['HTTP_HOST']);
$cloudlog_url=$protocol."://".$realHost.":".$_SERVER['SERVER_PORT'];
curl_setopt($ch, CURLOPT_URL,$cloudlog_url);
$wavelog_url=$protocol."://".$realHost.":".$_SERVER['SERVER_PORT'];
curl_setopt($ch, CURLOPT_URL,$wavelog_url);
curl_setopt($ch, CURLOPT_VERBOSE, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch);
curl_setopt($ch, CURLOPT_URL,$cloudlog_url."/index.php/update/dxcc");
curl_setopt($ch, CURLOPT_URL,$wavelog_url."/index.php/update/dxcc");
$result = curl_exec($ch);
delDir(getcwd());
header('Location: '.$protocol."://".$_SERVER['HTTP_HOST'].$_POST['directory']);