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. Set the number of seconds a script is allowed to run. If this is reached, the script returns a fatal error. The default limit is 30 seconds or, if it exists, the max_execution_time value defined in the php.ini. When called, set_time_limit () restarts the timeout counter from zero.

  4. 11 Ιουλ 2008 · Here's how I do it. The PHP. ini_set('max_execution_time', 300); //300 seconds = 5 minutes. Place this at the top of your PHP script and let your script loose! Recent Features. Create a CSS Flipping Animation.

  5. 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.

  6. Here's an example of how you can use ini_set to increase the PHP script timeout to 300 seconds (5 minutes): ini_set('max_execution_time', 300); You can also use this function to check the current value of the max_execution_time configuration option:

  7. Using the ini_set() function you can temporarily change the execution environment, as if the php.ini file was different. Note that your change is only in effect for the current script, and will revert back when the script ends.