Hello,

I am simulating a model using PHP which I want to upload on the web. The model has lottzzz of calculations and I am getting this weird error everytime I submit the user input form. Then error is

Fatal error: Maximum execution time of 60 seconds exceeded in C:\Program Files\xampp\htdocs\sample2.php on line 253

where sample2.php is the file that does the computation.

Can anyone help me with it??

Thanks

    Basically, your calculations are taking longer than PHP allows. You can use [man]set_time_limit/man to get around this problem.

      You're welcome πŸ™‚
      Remember to mark this thread resolved (if it is).

        Write a Reply...