• Posted by thepoolzod 1 year ago.
  • There are 9 posts. The latest reply is from chris.heney
  • not resolved
  • WordPress version: Not Supplied
  • WP e-Commerce version: Not Supplied

Make your store do more.
Visit the Extend » Community Plugins and Premium Upgrades for the latest plugins, addons and customisations for your WP e-Commerce store.

 

  1. thepoolzod
    New Member

    Hi,
    I Wanted to post this under "Installation" but for the directive to post all fatal errors here.

    I just uploaded wp-e-Commerce 3.6.10 to the server (purchased Gold Cart and Grid View as well). I got two flavors -- pointing to different files -- of the same error during activation:

    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 491520 bytes) in /home1/halauoau/public_html/wp-content/plugins/wp-e-commerce/install_and_update.php on line 263

    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 491520 bytes) in /home1/halauoau/public_html/wp-content/plugins/wp-e-commerce/transaction_result_functions.php on line 289

    I deactivated all other plugins, and the e-Commerce activation went successful. But when I reactivate the other plugins, I got this:

    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 30720 bytes) in /home1/halauoau/public_html/wp-admin/includes/template.php on line 718

    At that point, I could not even access the dashboard -- the error never went away until I renamed the plugin.

    Please help. Thanks.

    Posted 1 year ago #

  2. Mrs. V
    New Member

    It's weird. This happened to me too. I have a bunch of plugins running (14 to be exact)... but the fatal error showed when I added a plugin called WP DB BACKUP... I guess it can't handle too many plugins running at the same time, so it crashes. When I deactivated that plugin, wp e-commerce worked (or maybe is not compatible with WP DB BACKUP?)

    Hope that helps on something :)

    Posted 1 year ago #

  3. meloncholy
    Expert

    Google is your friend. :)

    Link, link, link

    You need to increase PHP's memory limit. There may be an option in your control panel (or edit php.ini if it's your own server). Otherwise ask your host.

    Posted 1 year ago #

  4. Mrs. V
    New Member

    Thats the problem, my host do not want or let me change that file.
    Thanks again :)

    Posted 1 year ago #

  5. rayced
    New Member

    I'm having the same problem, before I'll go ahead making a new version of php.ini file with increased memory amount, I would like to understand why 32MB (the actual memory limit standing to my phpinfo) aren't enough to run this plug-ing.
    Thanks.

    Posted 9 months ago #

  6. ebornaments
    New Member

    I also had the fatal error memory issue and increased the memory limit in the php.ini and other files, I also talked to my hosting provider which double checked that I did it correctly and all the right places. The ecommerce plugin works now, my product pages are back up, but the "more details" section for every product now displays instead of just the basic product info and the plus sign for "more details." How do I get the additional product info to only show when a user clicks on the "more details" button? (This issue only started occurring after the mid-December upgrade, everything worked and displayed perfectly until then.)

    Posted 8 months ago #

  7. junjimalaza
    New Member

    is there a way around this like adding

    ini_set(’memory_limit’,'32M’);

    within the install file perhaps???

    I usually get the exact error when activating the plugin, although it works well locally because I\\\\'ve set the memory limit to higher than 8MB.

    Posted 8 months ago #

  8. MaaddMaaxx
    New Member

    Hi folks was having the same issue and found a fix that does not up set hosting companies.

    In the WP base directory you will find a file wp-settings.php , open this in notepad or whatever and change the 12th line to allow more memory. The file installs with 32m as the default. I boosted to 128. I have noticed minimal site slowdown at 128 and may back off to 64. .

    hope it helps.

    MM

    Posted 7 months ago #

  9. chris.heney
    New Member

    First of all 32M should suffice for a descent-sized web page. Unless you are uploading large images and using GD2 for resizing batch uploads. I've experienced that issue many times when making endless loops due to my poor math skills (j/k).

    junjimalaza had a great idea. i am sure you can write a 5-line wordpress plugin to increase memory size _IF_ that is really your issue. e.g:

    <?php
    add_action('pick_a_wordpress_hook_that_happens_first_which_im_not_going_to_look_up','increase_my_stupid_memory_limit');
    function increase_my_stupid_memory_limit() {
       ini_set('memory_limit','128M');
    }
    ?>
    Posted 7 months ago #

RSS feed for this topic

Reply

You must log in to post.