mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-23 15:09:37 +00:00
VilesciFrameset
This commit is contained in:
@@ -11,7 +11,7 @@ defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
| and disable it back when you're done.
|
||||
|
|
||||
*/
|
||||
$config['migration_enabled'] = FALSE;
|
||||
$config['migration_enabled'] = TRUE;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
||||
@@ -51,6 +51,6 @@ defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
*/
|
||||
$route['person/(:any)'] = 'person/view/$1';
|
||||
$route['person'] = 'person';
|
||||
$route['default_controller'] = 'welcome';
|
||||
$route['default_controller'] = 'Vilesci';
|
||||
$route['404_override'] = '';
|
||||
$route['translate_uri_dashes'] = FALSE;
|
||||
|
||||
@@ -20,13 +20,11 @@ class Migration_Create_basedb extends CI_Migration {
|
||||
|
||||
public function down()
|
||||
{
|
||||
$this->db->simple_query('DROP SCHEMA addon;');
|
||||
$this->db->simple_query('DROP SCHEMA bis;');
|
||||
$this->db->simple_query('DROP SCHEMA bis;');
|
||||
$this->db->simple_query('DROP SCHEMA campus;');
|
||||
$this->db->simple_query('DROP SCHEMA fue;');
|
||||
$this->db->simple_query('DROP SCHEMA kommune;');
|
||||
$this->db->simple_query('DROP SCHEMA lehre;');
|
||||
$this->db->simple_query('DROP SCHEMA reports;');
|
||||
$this->db->simple_query('DROP SCHEMA sync;');
|
||||
$this->db->simple_query('DROP SCHEMA system;');
|
||||
$this->db->simple_query('DROP SCHEMA testtool;');
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<frameset rows="55px,*" frameborder="0" framespacing="0">
|
||||
<frame src="../vilesci/top.php" id="top" name="top" scrolling="No"/>
|
||||
<frame src="<?php echo base_url('vilesci/top.php')?>" id="top" name="top" scrolling="No"/>
|
||||
<frameset border="4" frameborder="1" framespacing="0" cols="200px,*" >
|
||||
<frame style="border-right: 3px; border-right-style:solid; border-right-color: grey;" src="../vilesci/left.php" id="nav" name="nav" />
|
||||
<frame frameborder="1" src="../vilesci/main.php" id="main" name="main" />
|
||||
<frame style="border-right: 3px; border-right-style:solid; border-right-color: grey;" src="<?php echo base_url('vilesci/left.php')?>" id="nav" name="nav" />
|
||||
<frame frameborder="1" src="<?php echo base_url('vilesci/main.php')?>" id="main" name="main" />
|
||||
</frameset>
|
||||
<noframes>
|
||||
<body bgcolor="#FFFFFF">
|
||||
This application works only with a frames-enabled browser.<br />
|
||||
<a href="../vilesci/main.php">Use without frames</a>
|
||||
<a href="<?php echo base_url('vilesci/main.php')?>">Use without frames</a>
|
||||
</body>
|
||||
</noframes>
|
||||
</frameset>
|
||||
|
||||
@@ -16,6 +16,7 @@ SET escape_string_warning = off;
|
||||
COMMENT ON DATABASE fhcomplete IS 'FH-Complete 3.0';
|
||||
|
||||
-- Rollen im System
|
||||
-- CREATE ROLE wawi LOGIN PASSWORD 'admin';
|
||||
-- CREATE ROLE wawi LOGIN PASSWORD 'vilesci';
|
||||
-- CREATE ROLE wawi LOGIN PASSWORD 'wawi';
|
||||
-- CREATE ROLE wawi LOGIN PASSWORD 'web';
|
||||
|
||||
Reference in New Issue
Block a user