我想将refineryCMS 1.0.9移动到2.根据Move database from 1.0.9 to 2.0.0,最好的方法是移动数据库。但关于如何做到这一点的信息是不可能的(断开链接)www.craigambrose.com/blog/2012/03/04/upgrading-to-refinery-cms-2-dot-0 /
答案 0 :(得分:0)
如果您使用的是mac / unix计算机,则可以按如下方式在本地访问它:
body,html{
padding:0;
margin:0;
}
.test {
animation: fadein 2s;
-moz-animation: fadein 2s; /* Firefox */
-webkit-animation: fadein 2s; /* Safari and Chrome */
-o-animation: fadein 2s; /* Opera */
}
@keyframes fadein {
from {
opacity:0;
}
to {
opacity:1;
}
}
@-moz-keyframes fadein { /* Firefox */
from {
opacity:0;
}
to {
opacity:1;
}
}
@-webkit-keyframes fadein { /* Safari and Chrome */
from {
opacity:0;
}
to {
opacity:1;
}
}
@-o-keyframes fadein { /* Opera */
from {
opacity:0;
}
to {
opacity: 1;
}
}
.columnHeader{
background:yellow;
}
.columnHeader, .column{
-webkit-box-flex: 1; /* This causes that all headers have the same width independently from their content */
width:100%;
font-weight:bold;
font-size:1.2em;
}
#gridHeader{
display: flex; /* current version */
/* This causes that all columns have the same width independently from their content */
width:100%;
align-items: center;
text-align: center;
position:fixed;
top:0px;
left:0px;
height:50px;
background:gray;
}
#gridContent{
display: -webkit-box;
/* This causes that all columns have the same width independently from their content */
width:100%;
background:red;
position:fixed;
top:50px;
bottom:0px;
overflow-y:auto;
overflow-x:hidden;
}
*{
box-sizing:border-box;
}
.custom-row{
height:200px; /* fix this with flex that the equal height is taken*/
overflow-y:auto;
overflow-x:hidden;
border:1px solid blue;
background:orange;
}