Recent content by jaredesguerra4757

  1. J

    Set password on registration

    Ok , thanks for the reply , makes sense.
  2. J

    Set password on registration

    Ysmods , I think you need to change this $newPassword = $password; with $newPassword = Password::createHash($password); Else when the user tries to login , the password hash does not match since the password was initially saved as plain text. Please correct me if i am wrong.
  3. J

    Nginx optimisation for video streaming

    Has anyone use the settings mentioned on this page - http://www.nginxtips.com/optimizing-nginx-for-video-sites/ for streaming videos ? That post is basically talking about using nginx mp4 and fly module and disabling the nginx gzip compression for streaming videos. Any input is welcome.
  4. J

    FTP mod and account deletion

    Please corret me if i am wrong, but when an account is deleted from the site does the FTP account associated with that account get deleted as well ? I am asking this cuz I am testing the script right now and when an account is deleted and recreated , FTP details do not validate and i get the...
  5. J

    Video stays pending forever on media converter

    Are you using SSH as root ? , if so and the script is not running as root then this might be a permissions issue.
  6. J

    RAM requirement?

    Move the script to a separate server and add the current server as a new file server in your admin setting. So all your file servers will be remote .
  7. J

    Convert mkv to mp4

    Mkv and Mp4 have the same files inside a different container , so converting from one to another does not make sense. If you are comfortable with writing your own code , have a look at this - http://askubuntu.com/questions/396883/how-to-simply-convert-video-files-i-e-mkv-to-mp4 I should point...