Yahoo Αναζήτηση Διαδυκτίου

Αποτελέσματα Αναζήτησης

  1. 23 Ιουν 2016 · Increasing the timeout in php.ini by adding a line: max_execution_time = {number of seconds i.e. 60 for one minute} Increasing the timeout in your script itself by adding: ini_set ('max_execution_time',' {number of seconds i.e. 60 for one minute}');

  2. 29 Νοε 2011 · If you use PHP's default session handling, the only way to reliably change the session duration in all platforms is to change php.ini.

  3. You must configure INI values to have at least 128 bits in session ID. Do not forget to set an appropriate value for session.sid_bits_per_character, otherwise you will have weaker session ID.

  4. ini_set (string $option, string | int | float | bool | null $value): string | false. Sets the value of the given configuration option. The configuration option will keep this new value during the script's execution, and will be restored at the script's ending.

  5. This list includes the core php.ini directives you can set to configure your PHP setup. Directives handled by extensions are listed and detailed at the extension documentation pages respectively; Information on the session directives for example can be found at the sessions page.

  6. ini_set() Function. The ini_set() function in PHP sets the value of a configuration option. One such option is timeout, which sets the maximum execution time in seconds for PHP scripts. Syntax: php ini_set(string $option, string $value) Parameters: * $option: The configuration option to set (timeout in this case). * $value: The value to set for ...

  7. 18 Οκτ 2023 · There are 4 ways to change the execution time limit in PHP: Change max_execution_time = SECONDS in php.ini. On an Apache webserver, add php_value max_execution_time SECONDS in the .htaccess file. Use set_time_limit(SECONDS) in the PHP script. Finally, we can set the time limit using ini_set("max_execution_time", SECONDS).

  1. Γίνεται επίσης αναζήτηση για