Page 68 of 68 FirstFirst ... 1858666768
Results 671 to 673 of 673
  1. #671
    Join Date
    Aug 2007
    Location
    Gijón, Asturias, Spain
    Posts
    2,761
    Plugin Contributions
    30

    Default Re: Support Thread for Google reCAPTCHA

    ...and?
    Steve
    github.com/torvista: BackupMySQL, Structured Data, Multiple Copy-Move-Delete, Google reCaptcha, Image Checker, Spanish Language Pack and more...

  2. #672
    Join Date
    Feb 2009
    Location
    UK
    Posts
    1,295
    Plugin Contributions
    1

    Default Re: Support Thread for Google reCAPTCHA

    ZC v2.1.0, PHP 8.2, OPC 2.5.4
    Using the latest (as of today) reCAPTCHA version from github.

    Attempting to add reCAPTCHA to OPC's create_account_register page. Although create_account_register 'uses' includes/modules/pages/create_account it has its own header.php file of header_php_create_account_register.php and as such the reCAPTCHA process gives a blank page when creating a registered account, as can be seen from the logs below.

    I am comfortable adding new instances of say CREATE_ACCOUNT_REGISTER, if necessary, but what code would I need for the mod to recognise header_php_create_account_register.php?

    Code:
    [25-Feb-2025 10:09:51 Europe/London] Request URI: /create-account, IP address: 127.0.0.1, Language id 1
    #0 D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\observers\auto.google_recaptcha_observer.php(52): zen_debug_error_handler()
    #1 D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\observers\auto.google_recaptcha_observer.php(52): require()
    #2 D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\traits\NotifierManager.php(106): zcObserverGoogleRecaptchaObserver->update()
    #3 D:\wamp64\www\MY_DOMAIN.co.uk\includes\modules\pages\create_account\header_php_create_account_register.php(38): base->notify()
    #4 D:\wamp64\www\MY_DOMAIN.co.uk\index.php(35): require('D:\\wamp64\\www\\k...')
    --> PHP Warning: require(D:/wamp64/www/MY_DOMAIN.co.uk/includes/classes/vendors/Google/recaptcha/src/autoload.php): Failed to open stream: No such file or directory in D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\observers\auto.google_recaptcha_observer.php on line 52.
    
    [25-Feb-2025 10:09:51 Europe/London] PHP Fatal error:  Uncaught Error: Failed opening required 'D:/wamp64/www/MY_DOMAIN.co.uk/includes/classes/vendors/Google/recaptcha/src/autoload.php' (include_path='.;C:\php\pear') in D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\observers\auto.google_recaptcha_observer.php:52
    Stack trace:
    #0 D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\traits\NotifierManager.php(106): zcObserverGoogleRecaptchaObserver->update(Object(notifier), 'NOTIFY_CREATE_A...', Array, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
    #1 D:\wamp64\www\MY_DOMAIN.co.uk\includes\modules\pages\create_account\header_php_create_account_register.php(38): base->notify('NOTIFY_CREATE_A...')
    #2 D:\wamp64\www\MY_DOMAIN.co.uk\index.php(35): require('D:\\wamp64\\www\\k...')
    #3 {main}
      thrown in D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\observers\auto.google_recaptcha_observer.php on line 52
    
    [25-Feb-2025 10:09:51 Europe/London] Request URI: /create-account, IP address: 127.0.0.1
    --> PHP Fatal error: Uncaught Error: Failed opening required 'D:/wamp64/www/MY_DOMAIN.co.uk/includes/classes/vendors/Google/recaptcha/src/autoload.php' (include_path='.;C:\php\pear') in D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\observers\auto.google_recaptcha_observer.php:52
    Stack trace:
    #0 D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\traits\NotifierManager.php(106): zcObserverGoogleRecaptchaObserver->update(Object(notifier), 'NOTIFY_CREATE_A...', Array, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
    #1 D:\wamp64\www\MY_DOMAIN.co.uk\includes\modules\pages\create_account\header_php_create_account_register.php(38): base->notify('NOTIFY_CREATE_A...')
    #2 D:\wamp64\www\MY_DOMAIN.co.uk\index.php(35): require('D:\\wamp64\\www\\k...')
    #3 {main}
      thrown in D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\observers\auto.google_recaptcha_observer.php on line 52.
    
    [25-Feb-2025 10:09:51 Europe/London] Request URI: /create-account, IP address: 127.0.0.1
    --> PHP Fatal error: Uncaught Error: Failed opening required 'D:/wamp64/www/MY_DOMAIN.co.uk/includes/classes/vendors/Google/recaptcha/src/autoload.php' (include_path='.;C:\php\pear') in D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\observers\auto.google_recaptcha_observer.php:52
    Stack trace:
    #0 D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\traits\NotifierManager.php(106): zcObserverGoogleRecaptchaObserver->update(Object(notifier), 'NOTIFY_CREATE_A...', Array, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
    #1 D:\wamp64\www\MY_DOMAIN.co.uk\includes\modules\pages\create_account\header_php_create_account_register.php(38): base->notify('NOTIFY_CREATE_A...')
    #2 D:\wamp64\www\MY_DOMAIN.co.uk\index.php(35): require('D:\\wamp64\\www\\k...')
    #3 {main}
      thrown in D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\observers\auto.google_recaptcha_observer.php on line 52.
    Simon

  3. #673
    Join Date
    Feb 2009
    Location
    UK
    Posts
    1,295
    Plugin Contributions
    1

    Default Re: Support Thread for Google reCAPTCHA

    Quote Originally Posted by simon1066 View Post
    ZC v2.1.0, PHP 8.2, OPC 2.5.4
    Using the latest (as of today) reCAPTCHA version from github.

    Attempting to add reCAPTCHA to OPC's create_account_register page. Although create_account_register 'uses' includes/modules/pages/create_account it has its own header.php file of header_php_create_account_register.php and as such the reCAPTCHA process gives a blank page when creating a registered account, as can be seen from the logs below.

    I am comfortable adding new instances of say CREATE_ACCOUNT_REGISTER, if necessary, but what code would I need for the mod to recognise header_php_create_account_register.php?

    Code:
    [25-Feb-2025 10:09:51 Europe/London] Request URI: /create-account, IP address: 127.0.0.1, Language id 1
    #0 D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\observers\auto.google_recaptcha_observer.php(52): zen_debug_error_handler()
    #1 D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\observers\auto.google_recaptcha_observer.php(52): require()
    #2 D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\traits\NotifierManager.php(106): zcObserverGoogleRecaptchaObserver->update()
    #3 D:\wamp64\www\MY_DOMAIN.co.uk\includes\modules\pages\create_account\header_php_create_account_register.php(38): base->notify()
    #4 D:\wamp64\www\MY_DOMAIN.co.uk\index.php(35): require('D:\\wamp64\\www\\k...')
    --> PHP Warning: require(D:/wamp64/www/MY_DOMAIN.co.uk/includes/classes/vendors/Google/recaptcha/src/autoload.php): Failed to open stream: No such file or directory in D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\observers\auto.google_recaptcha_observer.php on line 52.
    
    [25-Feb-2025 10:09:51 Europe/London] PHP Fatal error:  Uncaught Error: Failed opening required 'D:/wamp64/www/MY_DOMAIN.co.uk/includes/classes/vendors/Google/recaptcha/src/autoload.php' (include_path='.;C:\php\pear') in D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\observers\auto.google_recaptcha_observer.php:52
    Stack trace:
    #0 D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\traits\NotifierManager.php(106): zcObserverGoogleRecaptchaObserver->update(Object(notifier), 'NOTIFY_CREATE_A...', Array, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
    #1 D:\wamp64\www\MY_DOMAIN.co.uk\includes\modules\pages\create_account\header_php_create_account_register.php(38): base->notify('NOTIFY_CREATE_A...')
    #2 D:\wamp64\www\MY_DOMAIN.co.uk\index.php(35): require('D:\\wamp64\\www\\k...')
    #3 {main}
      thrown in D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\observers\auto.google_recaptcha_observer.php on line 52
    
    [25-Feb-2025 10:09:51 Europe/London] Request URI: /create-account, IP address: 127.0.0.1
    --> PHP Fatal error: Uncaught Error: Failed opening required 'D:/wamp64/www/MY_DOMAIN.co.uk/includes/classes/vendors/Google/recaptcha/src/autoload.php' (include_path='.;C:\php\pear') in D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\observers\auto.google_recaptcha_observer.php:52
    Stack trace:
    #0 D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\traits\NotifierManager.php(106): zcObserverGoogleRecaptchaObserver->update(Object(notifier), 'NOTIFY_CREATE_A...', Array, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
    #1 D:\wamp64\www\MY_DOMAIN.co.uk\includes\modules\pages\create_account\header_php_create_account_register.php(38): base->notify('NOTIFY_CREATE_A...')
    #2 D:\wamp64\www\MY_DOMAIN.co.uk\index.php(35): require('D:\\wamp64\\www\\k...')
    #3 {main}
      thrown in D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\observers\auto.google_recaptcha_observer.php on line 52.
    
    [25-Feb-2025 10:09:51 Europe/London] Request URI: /create-account, IP address: 127.0.0.1
    --> PHP Fatal error: Uncaught Error: Failed opening required 'D:/wamp64/www/MY_DOMAIN.co.uk/includes/classes/vendors/Google/recaptcha/src/autoload.php' (include_path='.;C:\php\pear') in D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\observers\auto.google_recaptcha_observer.php:52
    Stack trace:
    #0 D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\traits\NotifierManager.php(106): zcObserverGoogleRecaptchaObserver->update(Object(notifier), 'NOTIFY_CREATE_A...', Array, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
    #1 D:\wamp64\www\MY_DOMAIN.co.uk\includes\modules\pages\create_account\header_php_create_account_register.php(38): base->notify('NOTIFY_CREATE_A...')
    #2 D:\wamp64\www\MY_DOMAIN.co.uk\index.php(35): require('D:\\wamp64\\www\\k...')
    #3 {main}
      thrown in D:\wamp64\www\MY_DOMAIN.co.uk\includes\classes\observers\auto.google_recaptcha_observer.php on line 52.
    Just re-read the error logs and I think I cleared the vendors/google/recaptcha folder when I did this recent upgrade, I'll check. This post was not needed.
    Last edited by simon1066; 25 Feb 2025 at 12:23 PM.
    Simon

 

 
Page 68 of 68 FirstFirst ... 1858666768

Similar Threads

  1. Support Thread for CKEditor Plugin
    By DivaVocals in forum Addon Admin Tools
    Replies: 213
    Last Post: 18 Nov 2024, 04:17 AM
  2. Back to Top Plugin [Support Thread]
    By picaflor-azul in forum All Other Contributions/Addons
    Replies: 31
    Last Post: 6 Feb 2016, 10:52 PM
  3. v151 Plug 'n' Pay plugin [Support Thread]
    By KetchRescue in forum Addon Payment Modules
    Replies: 5
    Last Post: 28 Nov 2015, 04:56 AM
  4. Justuno Plugin [Support Thread]
    By JustunoApp in forum All Other Contributions/Addons
    Replies: 8
    Last Post: 24 May 2015, 11:00 PM
  5. VendingBox Plugin Support Thread
    By vb_support in forum All Other Contributions/Addons
    Replies: 31
    Last Post: 10 Feb 2013, 07:24 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR