Fix image size

This commit is contained in:
2019-02-24 23:54:46 +00:00
parent b5034e10af
commit f40a544920
4 changed files with 123 additions and 99 deletions
+16 -3
View File
@@ -1,6 +1,18 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
function __autoload($classname) {
if (strpos($classname, 'CL_') !== 0) {
$file = APPPATH . 'libraries/' . $classname . '.php';
if (file_exists($file) && is_file($file)) {
@include_once($file);
}
}
}
///home/sameye/mermsemr/adminwww/application/config
/*
|--------------------------------------------------------------------------
| Base Site URL
@@ -23,8 +35,8 @@ defined('BASEPATH') OR exit('No direct script access allowed');
| a PHP script and you can easily do that on your own.
|
*/
$config['base_url'] = '';
//$config['base_url'] = '';
$config['base_url'] = 'https://'.$_SERVER['SERVER_NAME'].'/';
/*
|--------------------------------------------------------------------------
| Index File
@@ -35,7 +47,8 @@ $config['base_url'] = '';
| variable so that it is blank.
|
*/
$config['index_page'] = 'index.php';
//$config['index_page'] = 'index.php';
$config['index_page'] = '';
/*
|--------------------------------------------------------------------------