Download the PHP package tacoberu/nette-form-fileupload without Composer

On this page you can find all versions of the php package tacoberu/nette-form-fileupload. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package nette-form-fileupload

Nette form FileControl

Uploading files is easy. But if we have the file already uploaded in the system, we can want

A somewhat inconvenient situation is when we get some unrelated error elsewhere in the form. So we return the form for the user to correct it. But the uploaded file or files must be restarted. We solve this with a transaction. Once uploaded, the file is stored in a special storage (by default it is handled as a tempo directory, it can be changed), and entered into the system after successfully saving the form.

We represent image files as images. If the standard renderer is not suitable, we can set our own.

The input value can have three options:

Installation

Use

Transactions

When the file is successfully uploaded to the server, it is automatically moved to the storage, transaction. This will serve to if the form is not processed, but is, for example, passed back to the user for validation reasons, it is not necessary to upload the file again. After successful processing, the file is available using $control->getValue() like the other values.

After the file is uploaded to the system, the transaction can be discarded. Well, in case using the default storage UploadStoreTemp, delete the directory. We can either do this explicitly:

Or leave it to the GC, which will delete it automatically after a certain period of time.

UploadStoreTemp, GC

Automatic greasing is implemented in UploadStoreTemp. it acts like that after the page exits, all relevant transactions are passed through the destructor and checks if the transaction is older than UploadStoreTemp::$gcAgeLimit. This only deletes UploadStoreTemp::$gcMaxCount transactions/directories to spread the load.

This behavior is only a matter of the UploadStoreTemp implementation.


All versions of nette-form-fileupload with dependencies

PHP Build Version
Package Version
Requires php Version >=8.1
nette/forms Version ^3.2
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package tacoberu/nette-form-fileupload contains the following files

Loading the files please wait ....