Title: Playback error
Last modified: November 11, 2016

---

# Playback error

 *  Resolved [jarjekordne1](https://wordpress.org/support/users/jarjekordne1/)
 * (@jarjekordne1)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/playback-error/)
 * Hi,
    everything else is working fine, but if I add playback function (shortcode:[
   fileaway type=”table” playback=”compact”] ) following error occurs:
 * Fatal error: ‘continue’ not in the ‘loop’ or ‘switch’ context in /data05/virt2448/
   domeenid/www.XXXX.XX/wp-content/plugins/file-away/lib/inc/inc.playback.php on
   line 78
 * What could be the problem?
    Many thanks, Mirko

Viewing 1 replies (of 1 total)

 *  Plugin Author [thomstark](https://wordpress.org/support/users/thomstark/)
 * (@thomstark)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/playback-error/#post-8424940)
 * I’m assuming you’re using PHP7, which File Away doesn’t fully support yet.
 * That said, this should fix it:
 * 1. Open up `wp-content/plugins/file-away/lib/inc/inc.playback.php` for editing.
   
   2. Delete the line at the very bottom of that file (should be line 78): `if($
   skipthis) continue;` 3. Open up `wp-content/plugins/file-away/lib/cls/class.fileaway.
   php` for editing. 4. Around line 143, you should see this line: `if($playback)
   include fileaway_dir.'/lib/inc/inc.playback.php';`
 * Replace that line with the following:
 *     ```
       if($playback) 
       {
       	include fileaway_dir.'/lib/inc/inc.playback.php';
       	if(!empty($skipthis)) continue;
       }
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Playback error’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/file-away_e3e2e1.svg)
 * [File Away](https://wordpress.org/plugins/file-away/)
 * [Support Threads](https://wordpress.org/support/plugin/file-away/)
 * [Active Topics](https://wordpress.org/support/plugin/file-away/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/file-away/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/file-away/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [thomstark](https://wordpress.org/support/users/thomstark/)
 * Last activity: [9 years, 6 months ago](https://wordpress.org/support/topic/playback-error/#post-8424940)
 * Status: resolved