/var/softaculous/yourls
NameSizeModeActions
images/-0755rm
php53/-0755rm
php56/-0755rm
php71/-0755rm
php81/-0755rm
php82/-0755rm
.htaccess2410644editdlrm
changelog.txt22560644editdlrm
clone.php40470644editdlrm
config.php37060644editdlrm
extend.php91860644editdlrm
fileindex.php2750644editdlrm
import.php38970644editdlrm
index.php400644editdlrm
info.xml21370644editdlrm
install.js9210644editdlrm
install.php44610644editdlrm
install.xml12980644editdlrm
md537990644editdlrm
mod_upgrade.php33250644editdlrm
notes.txt6520644editdlrm
orig_upgrade.php32900644editdlrm
update_pass.php5360644editdlrm
upgrade.php40800644editdlrm
upgrade.xml3930644editdlrm
_edit.php35410644editdlrm
_edit.xml4330644editdlrm
Edit: /var/softaculous/yourls/orig_upgrade.php (3290B)

' . yourls_s( 'Upgrade not required. Go back to play!', yourls_admin_url('index.php') ) . '

'; } else { /* step 1: create new tables and populate them, update old tables structure, step 2: convert each row of outdated tables if needed step 3: - if applicable finish updating outdated tables (indexes etc) - update version & db_version in options, this is all done! */ // From what are we upgrading? if ( isset( $_GET['oldver'] ) && isset( $_GET['oldsql'] ) ) { $oldver = yourls_sanitize_version($_GET['oldver']); $oldsql = intval($_GET['oldsql']); } else { list( $oldver, $oldsql ) = yourls_get_current_version_from_sql(); } // To what are we upgrading ? $newver = YOURLS_VERSION; $newsql = YOURLS_DB_VERSION; // Verbose & ugly details yourls_debug_mode(true); // Let's go $step = ( isset( $_GET['step'] ) ? intval( $_GET['step'] ) : 0 ); switch( $step ) { default: case 0: ?>

backup your database
(you should do this regularly anyway)' ); ?>

should happen, but this doesn't mean it won't happen, right? ;)" ); ?>

something goes wrong, you'll see a message and hopefully a way to fix." ); ?>

good for you, let it go :)' ); ?>

"; break; case 1: case 2: $upgrade = yourls_upgrade( $step, $oldver, $newver, $oldsql, $newsql ); break; case 3: $upgrade = yourls_upgrade( 3, $oldver, $newver, $oldsql, $newsql ); echo '

' . yourls__( 'Your installation is now up to date ! ' ) . '

'; echo '

' . yourls_s( 'Go back to the admin interface', yourls_admin_url('index.php') ) . '

'; } } ?>