This came about thanks to Mark on the Renoise forum. Thanks for finally pointing me in the right direction for this.
http://forum.renoise.com/index.php?/topic/38738-renoise-linux-and-pulseaudio/
This came about thanks to Mark on the Renoise forum. Thanks for finally pointing me in the right direction for this.
http://forum.renoise.com/index.php?/topic/38738-renoise-linux-and-pulseaudio/
| <?php | |
| use Phinx\Migration\AbstractMigration; | |
| class FrenchTranslation extends AbstractMigration | |
| { | |
| public function up() | |
| { | |
| $this->execute(\Directus\phinx_update($this->getAdapter(), 'directus_fields', [ 'translation' => '{"fr-FR": {"action"}}' ], [ 'collection' => 'directus_activity', 'field' => 'action' ])); |
| <?php | |
| // public/cliserver.php (router script) | |
| if (php_sapi_name() !== 'cli-server') { | |
| die('this is only for the php development server'); | |
| } | |
| $path = $_SERVER['DOCUMENT_ROOT'].'/'.$_SERVER['SCRIPT_NAME']; | |
| if (is_file($path)) { | |
| return false; |