Thứ Ba, 19 tháng 3, 2024

Wordpress wp-admin login access alway not allow access - SOLVED

 

Access to the WordPress wp-admin login is frequently denied, causing frustration. Here's a step-by-step troubleshooting guide:

  1. Check .htaccess: Ensure there are no misconfigurations or rules blocking access in the .htaccess file.

  2. Review Plugins: Deactivate plugins one by one to identify any conflicts causing the access issue.

  3. Verify User Account and Password: Double-check the correctness of the user credentials, ensuring there are no typos or errors.

  4. Inspect Folder and File Permissions: Ensure appropriate permissions are set for folders and files to allow access.

The root cause often lies in a database table, particularly in the mater_options table, where the prefix might be incorrectly set. To resolve this:

  1. Access the mater_options table in the database.
  2. Find the line with the ID 95.
  3. Change the value from O34BC_user_roles to prefix__user_roles, where 'prefix' represents the correct prefix for your WordPress installation.

By following these steps, you can rectify the login access issue and regain control of your WordPress admin panel.


 




Thứ Sáu, 8 tháng 3, 2024

Contact Private Policy enable/disable joomla 5


Admin > Plugins > find 'Content - Confirm Consent'
Enable/Disable, edit text and link contact policy


 

Thứ Năm, 7 tháng 3, 2024

plg-chatgpt-1.0.2 joomla 4-5 not respond - SOLVED

Issue the same you posted, load not respond
Link download: https://github.com/R2H-BV/chatgpt
Detail: joomla 5, tinyMCE or JCE editor - SOVLED
Time : 2024 March 07 20:41
Reason: open api invalid model
Solution: replace model 'gpt-3.5-turbo-instruct, babbage-002, davinci-002'. This base from https://openai.com/
- media\plg_editors-xtd_chatgpt\js\chatgpt-default.js
- Replace lines: 69-74
let raw = JSON.stringify({
    'prompt': input,
    'model': apiModel,
    'max_tokens': apiTokens,
    'temperature': apiTemp
});

To
let raw = JSON.stringify({
    'prompt': input,
    'model': 'gpt-3.5-turbo-instruct',
    'max_tokens': apiTokens,
    'temperature': apiTemp
});

 



Thứ Ba, 27 tháng 2, 2024

Joomla 4/5 missing user Fields and Field Group - SOLVED

Issue: joomla 4/5 admin user > menu Fields And Field Group missing
Reason: User>Options > tab Integration > Edit Custom Fields YES/No

 


Chủ Nhật, 18 tháng 2, 2024

vmError: Empty slug product with id 20, entries exists fo language? en-GB - SOVLED

Description: joomla 4, virtumart 4.2.0 -> error  vmError: Empty slug product with id 20, entries exists fo language? en-GB
Solution:administrator\components\com_virtuemart\models\product.php quote line 1732-1737
Close code test slug

/*if(empty($product->slug)){
                    $msg = 'Empty slug product with id '.$product->virtuemart_product_id.', entries exists for language? '.VmConfig::$vmlangTag;
                    vmError($msg,$msg.' You may contact the administrator');
                } else {
                    vmError('Could not find product with id '.$product->virtuemart_product_id.', still existing?');
                }*/




Chủ Nhật, 7 tháng 1, 2024

Fast check joomla version not login administrator

 Fast check joomla version not login administrator
1. Open file administrator/manifests/files/joomla.xml
2. View <version>3.10.12 or ********</version>

 



 

Thứ Tư, 20 tháng 12, 2023

Joomla4 BreezingForms Pro 1.9.1 JQuery not defined - SOLVED

Detail: FRONT END load BreezingForms -> JQuery not defined
Reason: JQuery not jQuery
Solution: define again
File:administrator\components\com_breezingforms\libraries\crosstec\classes\BFQuickMode.php
Line 45 add: var JQuery = jQuery;