Search results

  1. Y

    2. local server admin delete file and 500mb upload problem

    Re: 2. local server admin delete file and 500mb upload probl Error 2, delete the php.ini file which came with the script (where index.php is)
  2. Y

    Deleting the Spam

    I don't know. I only have access to the latest version.
  3. Y

    Deleting the Spam

    To delete everything marked as spam, then use this: DELETE FROM `font_comment` WHERE `status` = 'spam';
  4. Y

    Number of visitors to the site

    Edit _header.php Find: </head> Add your google code before the </head> so it looks like this: <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o)...
  5. Y

    i have problem after install script

    Whats your site? As for the admin area message, how to fix it is in the message. Or edit php.ini yourself if you have access to it. See topic below for more info. http://forum.mfscripts.com/viewtopic.php?f=20&t=572
  6. Y

    How to keep users loged in longer

    Glad it is not just me, I have exactly the same problem too. I have scanned the files and cannot even see where cookies are being set (if set at all?)
  7. Y

    Increasing Comment Size

    As standard the comments are limited to 255 characters. You can change that by running this MySQL query. ALTER TABLE `font_comment` CHANGE `comment` `comment` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL;
  8. Y

    Password Protected Files

    Nope its included in v3.3
  9. Y

    Add to the FAQ?

    You have to edit the faq.php file
  10. Y

    3.3 upgrade fail.

    It means that the apikey column already exists. Run all the other queries except that one.
  11. Y

    Number of visitors to the site

    You want to add Google analytic's? https://support.google.com/analytics/answer/1008080
  12. Y

    Video File Converter in .flv

    Definitely possible, but you would need to have extra modules compiled into php. ffmpeg and flvtool are at least 2 modules needed. and if you want to convert more formats (mkv/mpg/mp4/avi/wmv/etc...) you will need more modules in php. Plus you will need a server with a lot of RAM as conversion...
  13. Y

    3.3 Install Fail

    Remove ini_set from the main php.ini file will fix that error. Might also fix the others
  14. Y

    MD5

    md5 hash of the actual file for file verification (checksum) or just a random md5 hash generated at time of upload?
  15. Y

    Number of visitors to the site

    Google Analytics? Statistics software in your hosting control panel (awstats/webalizer/analog stats)
  16. Y

    MD5

    Do you want the md5 to stay the same for all downloaders? (One md5 hash per file) Or does the md5 hash change for each person? (Unique hash created by using certain items from the user db table). Or does the md5 hash need to change each time the page is loaded? (Random hash created when page...
  17. Y

    Number of visitors to the site

    Visiting shortened URL's or total visits on the site?
  18. Y

    Upgrade from 3.2 to 3.3_BETA

    Tim, Send me your _config.inc.php and I will fix it for you
  19. Y

    MD5

    Something like these will work, bottom one being virtually impossible to have any duplicates <?php echo md5(microtime()); ?> Or <?php echo md5(rand()); ?> Or <?php echo md5(rand().microtime()); ?>
  20. Y

    MD5

    What do you mean?