To limit the display of the queue so your browser does not freeze up do the following.
Open
funcs.php
FIND:
PHP Code:
$get = "SELECT id,sid,title,type,url FROM wcddl_queue ORDER BY id ASC";
REPLACE WITH:
PHP Code:
$get = "SELECT id,sid,title,type,url FROM wcddl_queue ORDER BY id ASC LIMIT 0, 1000";
**Change 1000 to how many you would like displayed, e.g:250,500,750...**
Credit to frontlinegamerz .