'AU', // Australia 'AT', // Austria 'BE', // Belgium 'BG', // Bulgaria 'CA', // Canada 'CN', // China 'CY', // Cyprus 'CZ', // Czech Republic 'DK', // Denmark 'EE', // Estonia 'FI', // Finland 'FR', // France 'DE', // Germany 'GR', // Greece 'HK', // Hong Kong 'HU', // Hungary 'IE', // Ireland 'IT', // Italy 'LV', // Latvia 'LI', // Liechtenstein 'LT', // Lithuania 'LU', // Luxembourg 'MT', // Malta 'NL', // Netherlands 'NO', // Norway 'PL', // Poland 'PT', // Portugal 'RO', // Romania 'SG', // Singapore 'SK', // Slovakia 'SI', // Slovenia 'ES', // Spain 'SE', // Sweden 'US', // United States 'GB', // United Kingdom 'YT', // Mayotte 'RE', // Reunion 'GP', // Guadelope 'GF', // French Guiana 'MQ', ) ); }, /** * The list of which currencies can be used for GooglePay. */ 'googlepay.supported-currencies' => static function (ContainerInterface $container): array { /** * Returns which currencies can be used for GooglePay. */ return apply_filters( 'woocommerce_paypal_payments_googlepay_supported_currencies', // phpcs:disable Squiz.Commenting.InlineComment array( 'AUD', // Australian Dollar 'BRL', // Brazilian Real 'CAD', // Canadian Dollar 'CHF', // Swiss Franc 'CZK', // Czech Koruna 'DKK', // Danish Krone 'EUR', // Euro 'HKD', // Hong Kong Dollar 'GBP', // British Pound Sterling 'HUF', // Hungarian Forint 'ILS', // Israeli New Shekel 'JPY', // Japanese Yen 'MXN', // Mexican Peso 'NOK', // Norwegian Krone 'NZD', // New Zealand Dollar 'PHP', // Philippine Peso 'PLN', // Polish Zloty 'SGD', // Singapur-Dollar 'SEK', // Swedish Krona 'THB', // Thai Baht 'TWD', // New Taiwan Dollar 'USD', ) ); }, 'googlepay.button' => static function (ContainerInterface $container): ButtonInterface { return new Button($container->get('googlepay.url'), $container->get('googlepay.sdk_url'), $container->get('ppcp.asset-version'), $container->get('wc-subscriptions.helper'), $container->get('wcgateway.settings'), $container->get('settings.environment'), $container->get('wcgateway.settings.status'), $container->get('woocommerce.logger.woocommerce'), $container->get('button.helper.context'), $container->has('settings.data.settings') ? $container->get('settings.data.settings') : null); }, 'googlepay.blocks-payment-method' => static function (ContainerInterface $container): PaymentMethodTypeInterface { return new BlocksPaymentMethod('ppcp-googlepay', $container->get('googlepay.url'), $container->get('ppcp.asset-version'), $container->get('googlepay.button'), $container->get('blocks.method')); }, 'googlepay.url' => static function (ContainerInterface $container): string { return plugins_url('/modules/ppcp-googlepay/', $container->get('ppcp.path-to-plugin-main-file')); }, 'googlepay.sdk_url' => static function (ContainerInterface $container): string { return 'https://pay.google.com/gp/p/js/pay.js'; }, 'googlepay.endpoint.update-payment-data' => static function (ContainerInterface $container): UpdatePaymentDataEndpoint { return new UpdatePaymentDataEndpoint($container->get('button.request-data'), $container->get('woocommerce.logger.woocommerce')); }, 'googlepay.enable-url-sandbox' => static function (ContainerInterface $container): string { return 'https://www.sandbox.paypal.com/bizsignup/add-product?product=payment_methods&capabilities=GOOGLE_PAY'; }, 'googlepay.enable-url-live' => static function (ContainerInterface $container): string { return 'https://www.paypal.com/bizsignup/add-product?product=payment_methods&capabilities=GOOGLE_PAY'; }, 'googlepay.settings.connection.status-text' => static function (ContainerInterface $container): string { $is_connected = $container->get('settings.flag.is-connected'); if (!$is_connected) { return ''; } $product_status = $container->get('googlepay.helpers.apm-product-status'); assert($product_status instanceof ApmProductStatus); $environment = $container->get('settings.environment'); assert($environment instanceof Environment); $enabled = $product_status->is_active(); $enabled_status_text = esc_html__('Status: Available', 'woocommerce-paypal-payments'); $disabled_status_text = esc_html__('Status: Not yet enabled', 'woocommerce-paypal-payments'); $button_text = $enabled ? esc_html__('Settings', 'woocommerce-paypal-payments') : esc_html__('Enable Google Pay', 'woocommerce-paypal-payments'); $enable_url = $environment->current_environment_is(Environment::PRODUCTION) ? $container->get('googlepay.enable-url-live') : $container->get('googlepay.enable-url-sandbox'); $button_url = $enabled ? admin_url('admin.php?page=wc-settings&tab=checkout§ion=ppcp-gateway&ppcp-tab=ppcp-credit-card-gateway#ppcp-googlepay_button_enabled') : $enable_url; return sprintf('

%1$s %2$s

%5$s

', $enabled ? $enabled_status_text : $disabled_status_text, $enabled ? '' : '', $enabled ? '_self' : '_blank', esc_url($button_url), esc_html($button_text)); }, 'googlepay.wc-gateway' => static function (ContainerInterface $container): \WooCommerce\PayPalCommerce\Googlepay\GooglePayGateway { return new \WooCommerce\PayPalCommerce\Googlepay\GooglePayGateway($container->get('wcgateway.order-processor'), $container->get('api.factory.paypal-checkout-url'), $container->get('wcgateway.processor.refunds'), $container->get('wcgateway.transaction-url-provider'), $container->get('session.handler'), $container->get('googlepay.url'), $container->get('woocommerce.logger.woocommerce')); }, );
Fatal error: Uncaught TypeError: WooCommerce\PayPalCommerce\Googlepay\GooglepayModule::services(): Return value must be of type array, int returned in /htdocs/wp-content/plugins/woocommerce-paypal-payments/modules/ppcp-googlepay/src/GooglepayModule.php:38 Stack trace: #0 /htdocs/wp-content/plugins/woocommerce-paypal-payments/lib/packages/Inpsyde/Modularity/Package.php(402): WooCommerce\PayPalCommerce\Googlepay\GooglepayModule->services() #1 /htdocs/wp-content/plugins/woocommerce-paypal-payments/lib/packages/Inpsyde/Modularity/Package.php(194): WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Package->addModuleServices(Object(WooCommerce\PayPalCommerce\Googlepay\GooglepayModule), 'registered') #2 /htdocs/wp-content/plugins/woocommerce-paypal-payments/bootstrap.php(30): WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Package->addModule(Object(WooCommerce\PayPalCommerce\Googlepay\GooglepayModule)) #3 /htdocs/wp-content/plugins/woocommerce-paypal-payments/woocommerce-paypal-payments.php(93): WooCommerce\PayPalCommerce\{closure}('/htdocs/wp-cont...') #4 /htdocs/wp-content/plugins/woocommerce-paypal-payments/woocommerce-paypal-payments.php(103): WooCommerce\PayPalCommerce\init() #5 /htdocs/wp-includes/class-wp-hook.php(341): WooCommerce\PayPalCommerce\{closure}('') #6 /htdocs/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters(NULL, Array) #7 /htdocs/wp-includes/plugin.php(522): WP_Hook->do_action(Array) #8 /htdocs/wp-settings.php(593): do_action('plugins_loaded') #9 /htdocs/wp-config.php(98): require_once('/htdocs/wp-sett...') #10 /htdocs/wp-load.php(50): require_once('/htdocs/wp-conf...') #11 /htdocs/wp-blog-header.php(13): require_once('/htdocs/wp-load...') #12 /htdocs/index.php(17): require('/htdocs/wp-blog...') #13 {main} Next Exception: Can't add module WooCommerce\PayPalCommerce\CardFields\CardFieldsModule at this point of application. in /htdocs/wp-content/plugins/woocommerce-paypal-payments/lib/packages/Inpsyde/Modularity/Package.php:627 Stack trace: #0 /htdocs/wp-content/plugins/woocommerce-paypal-payments/lib/packages/Inpsyde/Modularity/Package.php(192): WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Package->assertStatus(-8, 'add module WooC...', '!=') #1 /htdocs/wp-content/plugins/woocommerce-paypal-payments/bootstrap.php(30): WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Package->addModule(Object(WooCommerce\PayPalCommerce\CardFields\CardFieldsModule)) #2 /htdocs/wp-content/plugins/woocommerce-paypal-payments/woocommerce-paypal-payments.php(93): WooCommerce\PayPalCommerce\{closure}('/htdocs/wp-cont...') #3 /htdocs/wp-content/plugins/woocommerce-paypal-payments/woocommerce-paypal-payments.php(103): WooCommerce\PayPalCommerce\init() #4 /htdocs/wp-includes/class-wp-hook.php(341): WooCommerce\PayPalCommerce\{closure}('') #5 /htdocs/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters(NULL, Array) #6 /htdocs/wp-includes/plugin.php(522): WP_Hook->do_action(Array) #7 /htdocs/wp-settings.php(593): do_action('plugins_loaded') #8 /htdocs/wp-config.php(98): require_once('/htdocs/wp-sett...') #9 /htdocs/wp-load.php(50): require_once('/htdocs/wp-conf...') #10 /htdocs/wp-blog-header.php(13): require_once('/htdocs/wp-load...') #11 /htdocs/index.php(17): require('/htdocs/wp-blog...') #12 {main} Next Exception: Can't add module WooCommerce\PayPalCommerce\SavePaymentMethods\SavePaymentMethodsModule at this point of application. in /htdocs/wp-content/plugins/woocommerce-paypal-payments/lib/packages/Inpsyde/Modularity/Package.php:627 Stack trace: #0 /htdocs/wp-content/plugins/woocommerce-paypal-payments/lib/packages/Inpsyde/Modularity/Package.php(192): WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Package->assertStatus(-8, 'add module WooC...', '!=') #1 /htdocs/wp-content/plugins/woocommerce-paypal-payments/bootstrap.php(30): WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Package->addModule(Object(WooCommerce\PayPalCommerce\SavePaymentMethods\SavePaymentMethodsModule)) #2 /htdocs/wp-content/plugins/woocommerce-paypal-payments/woocommerce-paypal-payments.php(93): WooCommerce\PayPalCommerce\{closure}('/htdocs/wp-cont...') #3 /htdocs/wp-content/plugins/woocommerce-paypal-payments/woocommerce-paypal-payments.php(103): WooCommerce\PayPalCommerce\init() #4 /htdocs/wp-includes/class-wp-hook.php(341): WooCommerce\PayPalCommerce\{closure}('') #5 /htdocs/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters(NULL, Array) #6 /htdocs/wp-includes/plugin.php(522): WP_Hook->do_action(Array) #7 /htdocs/wp-settings.php(593): do_action('plugins_loaded') #8 /htdocs/wp-config.php(98): require_once('/htdocs/wp-sett...') #9 /htdocs/wp-load.php(50): require_once('/htdocs/wp-conf...') #10 /htdocs/wp-blog-header.php(13): require_once('/htdocs/wp-load...') #11 /htdocs/index.php(17): require('/htdocs/wp-blog...') #12 {main} Next Exception: Can't add module WooCommerce\PayPalCommerce\PayLaterBlock\PayLaterBlockModule at this point of application. in /htdocs/wp-content/plugins/woocommerce-paypal-payments/lib/packages/Inpsyde/Modularity/Package.php:627 Stack trace: #0 /htdocs/wp-content/plugins/woocommerce-paypal-payments/lib/packages/Inpsyde/Modularity/Package.php(192): WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Package->assertStatus(-8, 'add module WooC...', '!=') #1 /htdocs/wp-content/plugins/woocommerce-paypal-payments/bootstrap.php(30): WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Package->addModule(Object(WooCommerce\PayPalCommerce\PayLaterBlock\PayLaterBlockModule)) #2 /htdocs/wp-content/plugins/woocommerce-paypal-payments/woocommerce-paypal-payments.php(93): WooCommerce\PayPalCommerce\{closure}('/htdocs/wp-cont...') #3 /htdocs/wp-content/plugins/woocommerce-paypal-payments/woocommerce-paypal-payments.php(103): WooCommerce\PayPalCommerce\init() #4 /htdocs/wp-includes/class-wp-hook.php(341): WooCommerce\PayPalCommerce\{closure}('') #5 /htdocs/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters(NULL, Array) #6 /htdocs/wp-includes/plugin.php(522): WP_Hook->do_action(Array) #7 /htdocs/wp-settings.php(593): do_action('plugins_loaded') #8 /htdocs/wp-config.php(98): require_once('/htdocs/wp-sett...') #9 /htdocs/wp-load.php(50): require_once('/htdocs/wp-conf...') #10 /htdocs/wp-blog-header.php(13): require_once('/htdocs/wp-load...') #11 /htdocs/index.php(17): require('/htdocs/wp-blog...') #12 {main} Next Exception: Can't add module WooCommerce\PayPalCommerce\PayLaterConfigurator\PayLaterConfiguratorModule at this point of application. in /htdocs/wp-content/plugins/woocommerce-paypal-payments/lib/packages/Inpsyde/Modularity/Package.php:627 Stack trace: #0 /htdocs/wp-content/plugins/woocommerce-paypal-payments/lib/packages/Inpsyde/Modularity/Package.php(192): WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Package->assertStatus(-8, 'add module WooC...', '!=') #1 /htdocs/wp-content/plugins/woocommerce-paypal-payments/bootstrap.php(30): WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Package->addModule(Object(WooCommerce\PayPalCommerce\PayLaterConfigurator\PayLaterConfiguratorModule)) #2 /htdocs/wp-content/plugins/woocommerce-paypal-payments/woocommerce-paypal-payments.php(93): WooCommerce\PayPalCommerce\{closure}('/htdocs/wp-cont...') #3 /htdocs/wp-content/plugins/woocommerce-paypal-payments/woocommerce-paypal-payments.php(103): WooCommerce\PayPalCommerce\init() #4 /htdocs/wp-includes/class-wp-hook.php(341): WooCommerce\PayPalCommerce\{closure}('') #5 /htdocs/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters(NULL, Array) #6 /htdocs/wp-includes/plugin.php(522): WP_Hook->do_action(Array) #7 /htdocs/wp-settings.php(593): do_action('plugins_loaded') #8 /htdocs/wp-config.php(98): require_once('/htdocs/wp-sett...') #9 /htdocs/wp-load.php(50): require_once('/htdocs/wp-conf...') #10 /htdocs/wp-blog-header.php(13): require_once('/htdocs/wp-load...') #11 /htdocs/index.php(17): require('/htdocs/wp-blog...') #12 {main} Next Exception: Can't add module WooCommerce\PayPalCommerce\PayLaterWCBlocks\PayLaterWCBlocksModule at this point of application. in /htdocs/wp-content/plugins/woocommerce-paypal-payments/lib/packages/Inpsyde/Modularity/Package.php:627 Stack trace: #0 /htdocs/wp-content/plugins/woocommerce-paypal-payments/lib/packages/Inpsyde/Modularity/Package.php(192): WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Package->assertStatus(-8, 'add module WooC...', '!=') #1 /htdocs/wp-content/plugins/woocommerce-paypal-payments/bootstrap.php(30): WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Package->addModule(Object(WooCommerce\PayPalCommerce\PayLaterWCBlocks\PayLaterWCBlocksModule)) #2 /htdocs/wp-content/plugins/woocommerce-paypal-payments/woocommerce-paypal-payments.php(93): WooCommerce\PayPalCommerce\{closure}('/htdocs/wp-cont...') #3 /htdocs/wp-content/plugins/woocommerce-paypal-payments/woocommerce-paypal-payments.php(103): WooCommerce\PayPalCommerce\init() #4 /htdocs/wp-includes/class-wp-hook.php(341): WooCommerce\PayPalCommerce\{closure}('') #5 /htdocs/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters(NULL, Array) #6 /htdocs/wp-includes/plugin.php(522): WP_Hook->do_action(Array) #7 /htdocs/wp-settings.php(593): do_action('plugins_loaded') #8 /htdocs/wp-config.php(98): require_once('/htdocs/wp-sett...') #9 /htdocs/wp-load.php(50): require_once('/htdocs/wp-conf...') #10 /htdocs/wp-blog-header.php(13): require_once('/htdocs/wp-load...') #11 /htdocs/index.php(17): require('/htdocs/wp-blog...') #12 {main} Next Exception: Can't add module WooCommerce\PayPalCommerce\Axo\AxoModule at this point of application. in /htdocs/wp-content/plugins/woocommerce-paypal-payments/lib/packages/Inpsyde/Modularity/Package.php:627 Stack trace: #0 /htdocs/wp-content/plugins/woocommerce-paypal-payments/lib/packages/Inpsyde/Modularity/Package.php(192): WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Package->assertStatus(-8, 'add module WooC...', '!=') #1 /htdocs/wp-content/plugins/woocommerce-paypal-payments/bootstrap.php(30): WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Package->addModule(Object(WooCommerce\PayPalCommerce\Axo\AxoModule)) #2 /htdocs/wp-content/plugins/woocommerce-paypal-payments/woocommerce-paypal-payments.php(93): WooCommerce\PayPalCommerce\{closure}('/htdocs/wp-cont...') #3 /htdocs/wp-content/plugins/woocommerce-paypal-payments/woocommerce-paypal-payments.php(103): WooCommerce\PayPalCommerce\init() #4 /htdocs/wp-includes/class-wp-hook.php(341): WooCommerce\PayPalCommerce\{closure}('') #5 /htdocs/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters(NULL, Array) #6 /htdocs/wp-includes/plugin.php(522): WP_Hook->do_action(Array) #7 /htdocs/wp-settings.php(593): do_action('plugins_loaded') #8 /htdocs/wp-config.php(98): require_once('/htdocs/wp-sett...') #9 /htdocs/wp-load.php(50): require_once('/htdocs/wp-conf...') #10 /htdocs/wp-blog-header.php(13): require_once('/htdocs/wp-load...') #11 /htdocs/index.php(17): require('/htdocs/wp-blog...') #12 {main} Next Exception: Can't add module WooCommerce\PayPalCommerce\AxoBlock\AxoBlockModule at this point of application. in /htdocs/wp-content/plugins/woocommerce-paypal-payments/lib/packages/Inpsyde/Modularity/Package.php:627 Stack trace: #0 /htdocs/wp-content/plugins/woocommerce-paypal-payments/lib/packages/Inpsyde/Modularity/Package.php(192): WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Package->assertStatus(-8, 'add module WooC...', '!=') #1 /htdocs/wp-content/plugins/woocommerce-paypal-payments/bootstrap.php(30): WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Package->addModule(Object(WooCommerce\PayPalCommerce\AxoBlock\AxoBlockModule)) #2 /htdocs/wp-content/plugins/woocommerce-paypal-payments/woocommerce-paypal-payments.php(93): WooCommerce\PayPalCommerce\{closure}('/htdocs/wp-cont...') #3 /htdocs/wp-content/plugins/woocommerce-paypal-payments/woocommerce-paypal-payments.php(103): WooCommerce\PayPalCommerce\init() #4 /htdocs/wp-includes/class-wp-hook.php(341): WooCommerce\PayPalCommerce\{closure}('') #5 /htdocs/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters(NULL, Array) #6 /htdocs/wp-includes/plugin.php(522): WP_Hook->do_action(Array) #7 /htdocs/wp-settings.php(593): do_action('plugins_loaded') #8 /htdocs/wp-config.php(98): require_once('/htdocs/wp-sett...') #9 /htdocs/wp-load.php(50): require_once('/htdocs/wp-conf...') #10 /htdocs/wp-blog-header.php(13): require_once('/htdocs/wp-load...') #11 /htdocs/index.php(17): require('/htdocs/wp-blog...') #12 {main} Next Exception: Can't boot application at this point of application. in /htdocs/wp-content/plugins/woocommerce-paypal-payments/lib/packages/Inpsyde/Modularity/Package.php:627 Stack trace: #0 /htdocs/wp-content/plugins/woocommerce-paypal-payments/lib/packages/Inpsyde/Modularity/Package.php(301): WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Package->assertStatus(4, 'boot applicatio...') #1 /htdocs/wp-content/plugins/woocommerce-paypal-payments/bootstrap.php(32): WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Package->boot() #2 /htdocs/wp-content/plugins/woocommerce-paypal-payments/woocommerce-paypal-payments.php(93): WooCommerce\PayPalCommerce\{closure}('/htdocs/wp-cont...') #3 /htdocs/wp-content/plugins/woocommerce-paypal-payments/woocommerce-paypal-payments.php(103): WooCommerce\PayPalCommerce\init() #4 /htdocs/wp-includes/class-wp-hook.php(341): WooCommerce\PayPalCommerce\{closure}('') #5 /htdocs/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters(NULL, Array) #6 /htdocs/wp-includes/plugin.php(522): WP_Hook->do_action(Array) #7 /htdocs/wp-settings.php(593): do_action('plugins_loaded') #8 /htdocs/wp-config.php(98): require_once('/htdocs/wp-sett...') #9 /htdocs/wp-load.php(50): require_once('/htdocs/wp-conf...') #10 /htdocs/wp-blog-header.php(13): require_once('/htdocs/wp-load...') #11 /htdocs/index.php(17): require('/htdocs/wp-blog...') #12 {main} Next Exception: Can't obtain the container instance at this point of application. in /htdocs/wp-content/plugins/woocommerce-paypal-payments/lib/packages/Inpsyde/Modularity/Package.php:627 Stack trace: #0 /htdocs/wp-content/plugins/woocommerce-paypal-payments/lib/packages/Inpsyde/Modularity/Package.php(520): WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Package->assertStatus(4, 'obtain the cont...', '>=') #1 /htdocs/wp-content/plugins/woocommerce-paypal-payments/bootstrap.php(33): WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Package->container() #2 /htdocs/wp-content/plugins/woocommerce-paypal-payments/woocommerce-paypal-payments.php(93): WooCommerce\PayPalCommerce\{closure}('/htdocs/wp-cont...') #3 /htdocs/wp-content/plugins/woocommerce-paypal-payments/woocommerce-paypal-payments.php(103): WooCommerce\PayPalCommerce\init() #4 /htdocs/wp-includes/class-wp-hook.php(341): WooCommerce\PayPalCommerce\{closure}('') #5 /htdocs/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters(NULL, Array) #6 /htdocs/wp-includes/plugin.php(522): WP_Hook->do_action(Array) #7 /htdocs/wp-settings.php(593): do_action('plugins_loaded') #8 /htdocs/wp-config.php(98): require_once('/htdocs/wp-sett...') #9 /htdocs/wp-load.php(50): require_once('/htdocs/wp-conf...') #10 /htdocs/wp-blog-header.php(13): require_once('/htdocs/wp-load...') #11 /htdocs/index.php(17): require('/htdocs/wp-blog...') #12 {main} thrown in /htdocs/wp-content/plugins/woocommerce-paypal-payments/lib/packages/Inpsyde/Modularity/Package.php on line 627