<em>@rcfun 120215 wrote:</em><blockquote>Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 14151970 bytes) in V:xampphtdocshpibajalibrariesjoomlafilesystemfile.php on line 297
How can i fix this?
Hope someone can help</blockquote>
assuming that you have installed xampp in C: (your post says you have installed it in V:)
open your V:xamppapachebin locate php.ini. open in notepad or notepad++
then around line 241.
[PHP];;;;;;;;;;;;;;;;;;;
; 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 = 32M ; Maximum amount of memory a script may consume (16MB)
[/PHP]
Change it as :
[PHP]; 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 = 60M ; Maximum amount of memory a script may consume (16MB)[/PHP]
save the php.ini
restart xampp.
In case changing the memory_limit=60M doesnot resolve increase the value from 60 to 120. Dont forget to restart the xampp.