Allowed memory size of 134217728 bytes exhausted

When I'm clicking Forum Index or Forum Home I'm getting this error "Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 523800 bytes) in /home/mihangai/public_html/modules/boonex/forum/classes/en/BxXslTransform.php on line 31"

Can anybody tells me what to do to eliminate such error?

Quote · 5 Feb 2013

In php.ini change memory_limit to a higher value. Try doubling it.

Quote · 5 Feb 2013

 

In php.ini change memory_limit to a higher value. Try doubling it.

 I'm sorry to ask you where can I re locate that file to upgrade the memory?

Quote · 5 Feb 2013

 

 

In php.ini change memory_limit to a higher value. Try doubling it.

 I'm sorry to ask you where can I re locate that file to upgrade the memory?

 The php.ini will be in the root directory of your Dolphin installation (ex. /public_html/)

Nothing to see here
Quote · 5 Feb 2013

 Thank you Zarcon, I don't have that file what should I do?

 

 

In php.ini change memory_limit to a higher value. Try doubling it.

 I'm sorry to ask you where can I re locate that file to upgrade the memory?

 The php.ini will be in the root directory of your Dolphin installation (ex. /public_html/)

 

Quote · 5 Feb 2013

Not all hosts allow per directory ini files so you need to find out if it does.

First go into your dolphin admin under tools then host tools.

You will see the values that dolphin detected. Make note of them.

Now create a php.ini file in the root of your dolphin site and put this in it.

magic_quotes_gpc = Off
safe_mode = Off
allow_url_include = Off
allow_url_fopen = On
register_globals = Off
upload_max_filesize = 1000M
post_max_size = 2000M
memory_limit = 512M
max_input_time = 3000
max_execution_time = 3000
short_open_tag = On


Now go back into admin and host tools, reload. See if anything has changed.

https://www.deanbassett.com
Quote · 5 Feb 2013

Or use php info, ghis will be useful for future yse too....

Create a php.ini in your dolphin root.

Create another file called phpinfo.php. In that file type...

 <? Php

Phpinfo ();

?>

 

Now go to yourpath/phpinfo.php in your browser. Search (ctrl+f) for php.ini, all the loaded files will be listed, hopefully including your own php.ini.

Quote · 5 Feb 2013

 Hi,

 

Thank you very much I managed after placing at .htaccess now it is working.

Not all hosts allow per directory ini files so you need to find out if it does.

First go into your dolphin admin under tools then host tools.

You will see the values that dolphin detected. Make note of them.

Now create a php.ini file in the root of your dolphin site and put this in it.

magic_quotes_gpc = Off
safe_mode = Off
allow_url_include = Off
allow_url_fopen = On
register_globals = Off
upload_max_filesize = 1000M
post_max_size = 2000M
memory_limit = 512M
max_input_time = 3000
max_execution_time = 3000
short_open_tag = On


Now go back into admin and host tools, reload. See if anything has changed.

 

Quote · 5 Feb 2013

 

 Hi,

 

Thank you very much I managed after placing at .htaccess now it is working.

Not all hosts allow per directory ini files so you need to find out if it does.

First go into your dolphin admin under tools then host tools.

You will see the values that dolphin detected. Make note of them.

Now create a php.ini file in the root of your dolphin site and put this in it.

magic_quotes_gpc = Off
safe_mode = Off
allow_url_include = Off
allow_url_fopen = On
register_globals = Off
upload_max_filesize = 1000M
post_max_size = 2000M
memory_limit = 512M
max_input_time = 3000
max_execution_time = 3000
short_open_tag = On


Now go back into admin and host tools, reload. See if anything has changed.

 

 Explain your reference to .htaccess. You did not edit it did you?

https://www.deanbassett.com
Quote · 5 Feb 2013
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.