Recent content by McGeek

  1. McGeek

    Bug Maximum File Size: 1048576 = 0GB? AdminCP

    I have also added a byte calculator to the Phrase: "dbtech_downloads_extension_max_file_size" Here is the code :) Max Extension Size <dfn>Please enter the maximum size, in bytes, that files of this extension can be. <br /> Below is a byte calculator that will automatically calculate Kb, MB...
  2. McGeek

    Bug adding file ext in admincp with similar proprieties

    Fixed it: dbtech/downloads/actions/admin/doaddextension.php Line 20 to 23 Change $check = $db->query_first(" SELECT * FROM " . TABLE_PREFIX . "dbtech_downloads_extensions WHERE extension = '" . $db->escape_string($extension) . "' OR mime = '" . $db->escape_string($mime) . "' "); to $check =...
  3. McGeek

    Bug Maximum File Size: 1048576 = 0GB? AdminCP

    Fixed this as well: dbtech/downloads/core/class_download.php, line 193 change public static function convert_filesize($size, $round=2) { $size = floatval($size); $kb = 1 * 1024; $mb = $kb * 1024; $gb = $mb * 1024; if ($size < $mb) { $size = round($size / $kb, $round) ...
  4. McGeek

    Bug Maximum File Size: 1048576 = 0GB? AdminCP

    This is not really a "OMG! the whole thing doesn't work" bug... but none the less it is a bug If you have these setting the Maximum File Size will be set to 0GB, which is incorrect. Extension : cs Mime-Type : text/plain Max Extension Size : 1048576 (exactly 1MB in bytes) Max Height : 0 Max...
  5. McGeek

    Bug adding file ext in admincp with similar proprieties

    I've added an ext for .cs for c sharp files Extension : cs Mime-Type : text/plain Max Extension Size : 2000 Max Height : 0 Max Width : 0 Extension Group : Files Now I'm trying to add a "c" file Extension : c Mime-Type : text/plain Max Extension Size : 2000 Max Height : 0 Max Width : 0...
  6. McGeek

    Bug Warning: require_once([path]/includes/functions_wysiwyg.php) [function.require-once]:

    Also getting the same error on /dbtech/downloads/actions/listings.php, line 97 Warning: require_once([path]/includes/functions_wysiwyg.php) [function.require-once]: failed to open stream: No such file or directory in [path]/dbtech/downloads/actions/listings.php on line 97 Fatal error...
  7. McGeek

    Bug Warning: require_once([path]/includes/functions_wysiwyg.php) [function.require-once]:

    Ok, never mind that didn't work (I didn't have any downloads, so the code didn't brake I guess) I'm getting this error Fatal error: Call to undefined function convert_wysiwyg_html_to_bbcode() in /home/blizzy/public_html/forums/dbtech/downloads/actions/search.php on line 102 Witch I guess is...
  8. McGeek

    Bug Warning: require_once([path]/includes/functions_wysiwyg.php) [function.require-once]:

    dbtech/downloads/actions/search.php, line 89
  9. McGeek

    Bug Warning: require_once([path]/includes/functions_wysiwyg.php) [function.require-once]:

    Putting a comment over "require_once(DIR . '/includes/functions_wysiwyg.php');" seems to have fixed it.
  10. McGeek

    Bug Warning: require_once([path]/includes/functions_wysiwyg.php) [function.require-once]:

    downloads.php?do=search&type=downloads Warning: require_once([path]/includes/functions_wysiwyg.php) [function.require-once]: failed to open stream: No such file or directory in [path]/dbtech/downloads/actions/search.php on line 89 Fatal error: require_once() [function.require]: Failed opening...
  11. McGeek

    Bug 404 error on deleting file ext in admincp

    fixed it File: dbtech/downloads/actions/admin/removeextension.php Error: print_confirmation($vbphrase['dbtech_downloads_extension_delete_confirmation'], 'downloads', 'killextension', array('extensionid' => $extid)); change to...
  12. McGeek

    Bug 404 error on deleting file ext in admincp

    I'm trying to delete an extension type, and I keep getting a 404 error. I think I have figured out what the problem is, I just don't know where to change it. On the "Confirm Action" window when you hit yes it takes you too "downloads.php?do=killextension" and not "vbdownloads.php?do=killextension"
  13. McGeek

    Bug Can't upload

    Just bought pro, I didn't want to wait for a reply, I had the cash so I decided to buy pro :)
  14. McGeek

    Bug Can't upload

    I have the same problem/error Running VB 4.1.5, vBCredits Pro (latest ver), vBDownload light (latest ver) on a Custom theme Browser: Chrome Edit: I have cleared the cache and still get the error Tried it on default theme as well and still getting the error
  15. McGeek

    Can't download vBNotifications Pro...

    Never mind It works now
Back
Top