File Browser not loading, Editor Plugin gives Internal Server Error

The information in this article is deprecated. WP-Filebase (Pro and Free) don't request to PHP files inside the plugin directory anymore.If the File Browser keeps loading forever or returns "Internal Server Error", its most likely a file permission issue. Some servers with suPHP are configured so that PHP files that are writable (CHMOD 777) cannot be accessed, giving a 5...
Read More

Increase the Upload File Size Limit

When uploading files in the browser the maximum file size is limited by server configuration. WP-Filebase does NOT have a file size limit!To uploading larger files, the upload_max_filesize and post_max_size need to be increased in php.ini.If your server configuration allows it you can add this line to your .htaccess:php_value upload_max_filesize 30MIf you are on...
Read More

Category ZIP URL

WP-Filebase Pro can put all files of a category (and its sub-categories) into a single ZIP files. Users can download whole categories without clicking trough all their files.To provide the link to the ZIP file use %cat_zip_file% in your category template. If you want to insert the links somehwere without using a file list, do it like this (replace 123 with the category ID):...
Read More

FilePage Custom Single Template

File Pages have the Custom Post type wpfb_filepage. By default current theme's single.php is used. To use a custom template for File Pages, create single-wpfb_filepage.php in your theme's directory. You can copy the code from single.php if you don't want to start from scratch.That's it, WordPress will automatically use the new file when it renders the File Page.
Read More

File & Category Template v2

Here's the Template and CSS code for the new default File and Category Template: HTML File Template: <div class="wpfilebase-file-default" onclick="if('undefined' == typeof event.target.href) document.getElementById('wpfb-file-link-%uid%').click();"> <div class="icon"><a href="%file_url%" target="_blank" title="Download %file_display_name%"><img align="m...
Read More

WP-Filebase Pro 3.1.02

Update 3.1.02 has been released today.New Feature: Category ZIP Packages (a ZIP containing all files in the category) New template variable for categories: `%cat_zip_url%` New Option `Category ZIP Files` under Download Settings File Page settings arranged in new tab New Option `File Page URL slug` to change permalink base of File Pages New Option `Comments on Fil...
Read More

WP-Filebase Pro 3.1.01 released

Update 3.1.01 released, with new features and fixes.It introduces a custom post type "wpfb_filepage". For each file, a post of this type is created. If search integration is enabled in WP-Filebase settings these posts will appear in search results. This integrates much better that the File Browser Page with a List of results, since Posts are sorted by dates, and the Date of...
Read More

How-to change Thumbnail size

Thumbnail sizes can be adjusted for files that are either images or PDF, i.e. that WP-Filebase can generate a thumbnail for them.To change the Size, first set WP-Filebase- >Settings-> Display -> Thumbnail Size to the desired value. Then run the tool WP-Filebase -> Rescan Files -> Forced thumbnail update. 
Read More

Custom File Type Icons

WP-Filebase uses WordPress' default file type icons in wp-includes/images/crystal for files without a thumbnail. To use custom icons copy the icon files in PNG format named like pdf.png or audio.png to wp-content/images/fileicons (you have to create that folder first).
Read More

Change Folder & File Permissions

By default, WP-Filebase sets folder permissions to 777 and file permissions to 666. This gives best compatibility with all server setups, although it's not a secure setting.To change the permissions that are applied during Sync, add the following two lines to your wp-config.php:define('WPFB_PERM_FILE', 666); define('WPFB_PERM_DIR', 755);Put them above/* That's ...
Read More

Update: WP-Filebase Pro 3.0.13

New Feature: AJAX Lists (edit a List Template to enable AJAX) New Feature: Upload Notification, all Admins are notified by email when a file is added from the back-end (enable at Settings -> Misc -> Upload Notifications) Added pagenav checkbox to editor plugin Fixed Dropbox Sync Issue when cURL is installed Added Visual Editor for File Description Fixed thumn...
Read More