Search results

  1. Y

    White Site with "Top Bar" Ads

    It could be that the sites the redirecting to have the option I've added below that blocks frames # Don't allow any pages to be framed - Defends against CSRF #------------------------------ Header set X-Frame-Options DENY You can test it on my site as I have that option in my .htaccess. When...
  2. Y

    Issue with rewards plugin - Getting error

    Update the plugin
  3. Y

    Pay Per View (PPV) and the length of the link

    Because its the way the script framework is, it won't be changed
  4. Y

    Improve using HTTPS for Login and Register

    The script is already fully SSL compatible, can check it here: https://gourl.us
  5. Y

    FTP Storage server wont work, Need urgent due to limited storage

    Forums are user 2 user support, if you want official support, submit a ticket.
  6. Y

    FTP Storage server wont work, Need urgent due to limited storage

    Check permissions of the directory you're trying to upload to
  7. Y

    .exe files

    The code can easily be modified INSERT INTO site_config VALUES (null, 'blocked_file_hashes', '', 'The file md5 hashes that are not allowed to be uploaded. Separate items with a comma, without spaces.', '', 'string', 'File Uploads'); $blocked = explode(',', SITE_CONFIG_BLOCKED_FILE_HASHES)...
  8. Y

    .exe files

    You could use the code in the post below to block multiple mimetypes http://forum.mfscripts.com/viewtopic.php?f=20&t=1905&start=10#p6936
  9. Y

    How to replace certain words from uploaded file name with underline or something

    You'd need to edit uploader.class.php and put in a str_replace() php function to do that. Something like: $words = array('word1', 'word2', 'word3'); foreach($words AS $word) { $filename = str_replace($word, '_', $filename); } The above code will not work, it is just an example.
  10. Y

    Disable statistics for free users

    You would have to edit the template files to remove the generated links for everyone except admin users, and restrict access to stats.html Some code like: if($Auth->level_id == 20) { //Code only admins can see } else { // some kind of error message }
  11. Y

    problem remote upload

    He's blaming MFScripts because his support period expired, which is not MFScripts fault
  12. Y

    Site Name

    The site name is read from the database, so if you've removed it from there, you'll need to re-add it.
  13. Y

    Site Name

    You have to remove it in the template files
  14. Y

    Request For add type Paid User

    I have to disagree with it being easily added. As you need to edit several files to allow for permissions, paid upgrades, different speeds/storage space/etc....
  15. Y

    Always error display site

    It's not a script problem as I said before. It's your Internet connection between your home and the server you're trying to connect too
  16. Y

    Always error display site

    Its a chrome error and nothing to do with the script http://lmgtfy.com/?q=ERR_NAME_RESOLUTION_FAILED
  17. Y

    Files Search from Home page for Public

    There's already a 3rd party search plugin
  18. Y

    How to banned country from register?

    That plugin bans users from the entire site, not just the registration page
  19. Y

    How to banned country from register?

    Not possible without custom code
  20. Y

    White background in embedded video.

    Or take 2 px of the width in _append_file_download_bottom.php $embedWidth = (int) $pluginSettings['embed_video_size_w'] - 2;