clipbucket/upload/cb_install/modes/upgrade.php

30 lines
1.1 KiB
PHP
Raw Normal View History

2013-10-07 12:17:06 +00:00
<?php
if(userid() || $old_version < 2.3 ):
?>
2015-02-27 15:03:31 +00:00
</div>
<div class="nav_des clearfix">
<div class="cb_container">
<h4 style="color:#fff;">Upgrading</h4>
<p style="color:#fff; font-size:13px;">You are now going to upgrade from <?php echo $old_version?> to <?php echo VERSION?>, please read <strong>
<a href="http://docs.clip-bucket.com/clipbucket-docs/clipbucket-installation" style="color:#fff;text-decoration:underline;">this documentation</a></strong> for further info and help, please click continue upgrade
</p>
</div><!--cb_container-->
</div><!--nav_des-->
<div id="sub_container" >
2013-10-07 12:17:06 +00:00
<form name="installation" method="post" id="installation">
<input type="hidden" name="mode" value="permission" />
2015-02-27 15:03:31 +00:00
<div style="padding:10px 0px" align="right"><?php echo button('Continue to upgrade!',' onclick="$(\'#installation\').submit()" ');?></div>
2013-10-07 12:17:06 +00:00
</form>
<?php
else:
?>
<div class="errorDiv br5px" id="dbresult" style="">
2015-02-27 15:03:31 +00:00
<?php echo msg_arr(array('err'=>'Please first login as Website adminstrator by going to admin_area and then try upgrading your website'))?></div><?php
2013-10-07 12:17:06 +00:00
endif;
?>