Search results

  1. Y

    Payment Gateways

    Would be good if Payza would fix their site so people can sign up though I see the following with FF19.0 and IE9
  2. Y

    Payment Gateways

    You might have to edit the language in the adminCP ACP > Configuration > Translations > manage translations > In the "Filter Results:" box put: terms_and_conditions_text then click on edit and add the text there
  3. Y

    Payment Gateways

    Just edit the terms.php page and add a new section
  4. Y

    sql query

    Something like this should work for the amount of files uploaded. SELECT COUNT (*) FROM file WHERE userId ='USERS_ID' LIMIT 1; As for total size, something like: SELECT SUM(fileSize) FROM file WHERE userId = 'USERS_ID'; The MySQL query above will return the total bytes uploaded. Swap out...
  5. Y

    ability to disable PayPal

    I replied to your post on my forums here: http://www.yetisharemods.com/topic/47-what-modifications-would-you-like-to-see/?p=100
  6. Y

    Options we need admin

    I know that, but it doesn't stop people from doing it.
  7. Y

    Uploading error, can't save a file...

    Do you have the error_log file? If you do, whats the last 30 lines from it? Also what is the contents of the .htaccess file?
  8. Y

    Uploading error, can't save a file...

    First thing I would do is change in the php.ini file max_execution_time = 30 To 1 hour max_execution_time = 3600 Or 24 hours max_execution_time = 84600 Because thats he maximum time a script is allowed to run for. Also check your files directory is chmod to 0755 Also see if you have a file...
  9. Y

    Options we need admin

    I do not think having a "lite" and "premium" versions of the script is a good idea. Especially when there is a file hosting script that does have the other servers features already built in to it and it is FREE. Yes I agree that having these features would be extremely beneficial to the script...
  10. Y

    Payment Gateways

    You do not need a merchant account with skrill to accept payments. I have a standard account and accept payments through that
  11. Y

    Payment Gateways

    https://www.dwolla.com/ Worldpay http://www.pixelprospector.com/the-big-list-of-payment-processors/
  12. Y

    Any themes for sale?

    The only downside to this script that I have found so far is the lack of a easy to use template system such as smarty or savant (codeignighter is way too complex). As the script is currently, all the html is built into the php files and difficult to edit/template because of this. I have put a...
  13. Y

    Upgrade problem

    You'll need to add the HTML for the #kavat div below the <!-- end url uploader --> place holder
  14. Y

    Upgrade problem

    What page is "kuvat" meant to be?
  15. Y

    progress translation

    In File: /js/jquery.zclip.min.js Find: alert("Copied text to clipboard:\n\n"+g)}
  16. Y

    Upgrade problem

    index.php lines 70 - 74 Find: <ul> <li><a href="#fileUpload"><?php echo UCWords(t('file_upload', 'file upload')); ?></a></li> <li><a href="#urlUpload"><?php echo UCWords(t('remote_url_upload', 'remote url upload')); ?></a></li> <!--<li><a href="#ftpUpload"><?php echo...
  17. Y

    progress translation

    I think the same _indexJS.inc.php Line 170: $(document).attr("title", progress+"% Uploaded - <?php echo PAGE_NAME; ?> - <?php echo SITE_CONFIG_SITE_NAME; ?>");
  18. Y

    Upgrade problem

    Where in the header? Where the "my files"/"my folders" links are or where the "File Upload"/Remote URL Upload" tabs are?
  19. Y

    Upgrade problem

    That's a weird one Try this CSS (Its from my site) @charset 'UTF-8'; /* site styles */ html, body { margin:0; padding:0; font-family:"Lucida Grande", Helvetica, Arial, "Arial Unicode", sans-serif; font-size:12px; color:#333; height:100%; background-color:#EEEEEE; } .globalPageWrapper {...
  20. Y

    Upgrade problem

    Did you add the extra CSS styles (Google/Twitter/Facebook button) to screen.css? Because it could be causing a conflict somewhere. It might be better to separate the extra styles into a different CSS File and add it to _header.php