Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Mike Jolley (a11n)

    (@mikejolley)

    No pages load – get in touch with your web host.

    Thread Starter ilovechinese

    (@ilovechinese)

    I installed Jquery update and add

    /* Fix issues with jquery overlay blocking checkout button */
    .woocommerce .blockUI.blockOverlay {
    position: relative!important;
    display: none!important;
    }

    into woo commerce .css. the place order page works fine now on desktop or iPad, but not for iPhone. in addition, the add to cart on the page before going to the product detail doesn’t work. The cart widget does not work.

    Plugin Author Mike Jolley (a11n)

    (@mikejolley)

    This is not a fix; you’re just hiding the overlay

    The cart etc pages wouldn’t load for me. If you have a server error log you may also want to check that for errors.

    Hi there, I have the same issue i think.

    store wordpress and woocommerce installed at:

    http://www.grips.goldmad.co.uk

    – works fine, you can add products to the cart and checkout with no issues

    Now this is the problem

    http://www.goldmad.co.uk/gmgrips

    his page is on my main site with an iframe to the http://www.grips.goldmad.co.uk site – everything looks ok but when I click Proceed to checkout I get a blank page in Firefox and No button response when using chrome

    Any suggestions?

    Thank you and keep up the good work

    Thread Starter ilovechinese

    (@ilovechinese)

    [08-Aug-2015 07:49:26 UTC] PHP Fatal error: Maximum execution time of 30 seconds exceeded in /home2/ab38773/public_html/wp-includes/post.php on line 2129
    [08-Aug-2015 07:49:36 UTC] PHP Fatal error: Out of memory (allocated 252444672) (tried to allocate 64 bytes) in /home2/ab38773/public_html/wp-content/plugins/transposh-translation-filter-for-wordpress/core/shd/simple_html_dom.php on line 625
    [08-Aug-2015 07:49:36 UTC] PHP Fatal error: Unknown: Cannot use output buffering in output buffering display handlers in Unknown on line 0
    [08-Aug-2015 21:51:32 UTC] PHP Fatal error: Class ‘WC_Order’ not found in /home2/ab38773/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/includes/class-wcpdf-export.php on line 25
    [08-Aug-2015 21:51:34 UTC] PHP Fatal error: Class ‘WC_Order’ not found in /home2/ab38773/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/includes/class-wcpdf-export.php on line 25
    [09-Aug-2015 07:50:18 UTC] PHP Fatal error: Maximum execution time of 30 seconds exceeded in /home2/ab38773/public_html/wp-includes/formatting.php on line 209
    [09-Aug-2015 07:50:28 UTC] PHP Fatal error: Out of memory (allocated 247988224) (tried to allocate 32 bytes) in /home2/ab38773/public_html/wp-content/plugins/transposh-translation-filter-for-wordpress/core/shd/simple_html_dom.php on line 878
    [09-Aug-2015 07:50:28 UTC] PHP Fatal error: Unknown: Cannot use output buffering in output buffering display handlers in Unknown on line 0
    [10-Aug-2015 05:06:54 UTC] WordPress数据库查询SELECT SQL_CALC_FOUND_ROWS wp_posts.ID FROM wp_posts INNER JOIN wp_postmeta ON ( wp_posts.ID = wp_postmeta.post_id ) INNER JOIN wp_postmeta ON wp_posts.ID = wp_postmeta.post_id WHERE 1=1 AND (
    ( wp_postmeta.meta_key = ‘_bbp_forum_id’ AND CAST(wp_postmeta.meta_value AS SIGNED) = ‘0’ )
    ) AND wp_posts.post_type IN (‘reply’, ‘topic’) AND ((wp_posts.post_status = ‘publish’ OR wp_posts.post_status = ‘closed’)) AND ( wp_postmeta.meta_key = ‘enclosure’ ) GROUP BY wp_posts.ID ORDER BY wp_posts.post_date DESC LIMIT 0, 10时发生Not unique table/alias: ‘wp_postmeta’错误,这是由require(‘wp-blog-header.php’), wp, WP->main, WP->parse_request, apply_filters(‘request’), call_user_func_array, bbp_request, apply_filters(‘bbp_request’), call_user_func_array, bbp_request_feed_trap, bbp_display_replies_feed_rss2, bbp_has_replies, WP_Query->__construct, WP_Query->query, WP_Query->get_posts查询的。
    [10-Aug-2015 07:47:06 UTC] PHP Fatal error: Maximum execution time of 30 seconds exceeded in /home2/ab38773/public_html/wp-includes/functions.php on line 3062
    [10-Aug-2015 07:47:15 UTC] PHP Fatal error: Out of memory (allocated 247988224) (tried to allocate 73 bytes) in /home2/ab38773/public_html/wp-content/plugins/transposh-translation-filter-for-wordpress/core/shd/simple_html_dom.php on line 930
    [10-Aug-2015 07:47:15 UTC] PHP Fatal error: Unknown: Cannot use output buffering in output buffering display handlers in Unknown on line 0
    [10-Aug-2015 08:02:00 UTC] PHP Fatal error: Class ‘WC_Order’ not found in /home2/ab38773/public_html/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/includes/class-wcpdf-export.php on line 25
    [11-Aug-2015 03:31:27 UTC] PHP Parse error: syntax error, unexpected ‘.’ in /home2/ab38773/public_html/wp-content/themes/storefront-child/functions.php on line 86
    [11-Aug-2015 07:50:46 UTC] PHP Fatal error: Maximum execution time of 30 seconds exceeded in /home2/ab38773/public_html/wp-includes/post.php on line 2097
    [11-Aug-2015 07:50:55 UTC] PHP Fatal error: Out of memory (allocated 247201792) (tried to allocate 72 bytes) in /home2/ab38773/public_html/wp-content/plugins/transposh-translation-filter-for-wordpress/core/shd/simple_html_dom.php on line 856
    [11-Aug-2015 07:50:55 UTC] PHP Fatal error: Unknown: Cannot use output buffering in output buffering display handlers in Unknown on line 0

    IloveChinese, I have this problem all the time with my current hosting company. You need to up your memory limit from 48mb to 64mb. Go into your cPanel>File Manager(make sure to click on the option for hidden files)>then search for php.ini and change the memory limit.

    Then, you may need to edit your .htaccess file and add the code below

    # These Lines Added By Hosting Company please do not remove

    <IfModule mod_suphp.c>
    suPHP_ConfigPath /home/YOURUSERNAME/public_html
    </IfModule>

    <Files php.ini>
    order allow,deny
    deny from all
    </Files>

    # End of Hosting Company Entries

    Hope this helps 🙂

    Thread Starter ilovechinese

    (@ilovechinese)

    thanks. i tried, and nothing happened.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘The place order page doesn't work’ is closed to new replies.