Jump to content

baskar

Approved members
  • Posts

    4
  • Joined

  • Last visited

About baskar

baskar's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I'VE SOLVED THE PROBLEM! This prtoblem appears only if in PHP setting of your server variables max_upload_size & max_post_size are big. At least more then 1 GB. Solution You need to reduce max_upload_size (max_post_size) in settings of PHP on your server (host). For example, in your php.ini file.
  2. I suppose it smth with revive. I tested this simple code and it works well . But with revive I can't upload!!! <form enctype="multipart/form-data" action="form.php" method="post"> <input type="hidden" name="20000000000000000" value="30000"> Send this file: <input name="userfile" type="file"> <input type="submit" value="Send File"> </form> <?php $uploaddir = '/var/clients/revive/www/images/'; if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploaddir . $_FILES['userfile']['name'])) { print "File is valid, and was successfully uploaded."; } else { print "There some errors!"; } ?>
  3. Hi! During installation i selected the english language. So login (welcome) screen to the system is english. How can i change default language to another? Change of language in the User Preferenses has no effect to the welcome\login screen.
×
×
  • Create New...