Knowledge Base
Troubleshooting
Resource Limits In order to make sure that is not the case and that everyting is ok, open your php.ini file and set the resource limites to a higher value, most important ones are max_execution_time and memory_limit
By default the values are:
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
max_execution_time = 60 ; Maximum execution time of each script, in seconds
max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
memory_limit = 16M ; Maximum amount of memory a script may consume (16MB)
Change them to
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
max_execution_time = 0 ; Maximum execution time of each script, in seconds
max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
memory_limit = 256M ; Maximum amount of memory a script may consume (16MB)
Max Execution Time = 0 (Means that there is no timeout)
Memory Limit = 256M (PHP will use up to 256MB of memory for allocation)
Remember, after making these changes you need to restart the web server. In a shared environment/hosting environment you should contact your provider. This task requries administrator rights to be performed.
Usually, this much resources are only needed for upgrade or install. (Initiating Database, etc...) after they can be set to original values.
| < Prev | Next > |
|---|
BugHotel Reservation System was designed to run on just about any web server, with very little effort needed during installation. Here are some of the key requirements for BugHotel Reservation System to run on.
BugHotel Reservation System was designed to simplify the task of online booking. It provides users a unique, intuitive and easy to use interface that improves the way people use the web today. Through personalization and rich features, BugHotel Reservation System enhances the entire Web experience.