mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Replace ALL lowercase occurences of cloudlog by wavelog
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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']);
|
||||
|
||||
Reference in New Issue
Block a user