Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

ELITE

Privileged
  • Joined

  • Last visited

Solutions

  1. ELITE's post in refresh an iframe without a src was marked as the answer   
    Solved this, after the ajax call added
    .done(function(data) { var result = data; var iframe = document.getElementById('view'); if(iframe.contentDocument) doc = iframe.contentDocument; else if(iframe.contentWindow) doc = iframe.contentWindow.document; else doc = iframe.document; doc.open(); doc.writeln(result); doc.close(); }) this updates the iframe and refreshes the iframe so it works like js fiddle
  2. ELITE's post in unzip a zipped folder into the root was marked as the answer   
    Solved
    <?php $path = 'zip.zip'; $zip = new ZipArchive; if ($zip->open($path) === true) { for($i = 0; $i < $zip->numFiles; $i++) { $filename = $zip->getNameIndex($i); $fileinfo = pathinfo($filename); copy("zip://".$path."#".$filename, "".$fileinfo['basename']); } $zip->close(); } ?>  


  3. ELITE's post in php ftp was marked as the answer   
    Solved
    $conn = ftp_connect("**.***.**.***") or die("Could not connect"); ftp_login($conn,"********","********"); if(ftp_nb_put($conn,"www/white.zip","white.zip",FTP_ASCII)) { echo "uploaded"; } else { echo "failed"; } ftp_close($conn); i was missing the www/
  4. ELITE's post in Foundation 3 navigation and Fancybox javascript clash was marked as the answer   
    you have the jquery library included twice i have removed line 306 and it seems to be working for me

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.