eduleon
Forum Replies Created
-
2.7.17.1
Thank, I noticed that is necessary to add “Staff” to every event to be able to see the form in the front-end and report the match result.
Is there any way to set it as default depending on the team in the event/Match?
As the same time for some reason i can’t find the tables in MyPHPadmin associated with the sportpress. Are they hidden?Thank you for the answer.
I’ve changed the data in the fields according to your guide, but the problem persists.
In “my club” page i inserted the shortcode [player_list] to see only my players, but it still showing all players. I’ve just 2 teams and 3 player in each team.
For example i have “My Club” page, so when i login i will see only my team and players stats. Then another page called “Scorebboard” see the top players of all the teams in the league.
Is it possible?I solved the issue by making my site to https using Certbot.
Then i needed to change WordPress Address (URL) and Site Address (URL) under WordPress > settings.
OAuth Plugin wasn’t neccesary with that solution.Forum: Localhost Installs
In reply to: WordPress Error 500 localhost:/wp-admin/setup-config.phpI “Solved” the issue or just a workaround.
Due to the NginX error log in /var/log/nginx/
It says:
“FastCGI sent in stderr: “PHP message: PHP Warning: require_once(/var/www/html/wp-includes/class-wp-textdomain-registry.php): Failed to open stream: No such file or directory in /var/www/html/wp-includes/load.php on line 1346PHP message: PHP Fatal error: Uncaught Error: Failed opening required ‘/var/www/html/wp-includes/class-wp-textdomain-registry.php’ (include_path=’.:/usr/share/php’) in /var/www/html/wp-includes/load.php:1346”It’s refering to the file /var/www/html/wp-includes/class-wp-textdomain-registry.php that has something to do with the language between the wordpress and the server it self i think.
The workaround was to download an erlier version, in my case 6.0.2, and from there upgrade to 6.1.1. Or just download the right one.
Forum: Localhost Installs
In reply to: WordPress Error 500 localhost:/wp-admin/setup-config.phpThe first page i can’t reach should be like that to connect to the database
Forum: Localhost Installs
In reply to: WordPress Error 500 localhost:/wp-admin/setup-config.phpi activated the logs and got
[error] 24438#24438: *39 FastCGI sent in stderr: “PHP message: PHP Warning: require_once(/var/www/html/wp-includes/class-wpdb.php): Failed to open stream: No such file or directory in /var/www/html/wp-includes/load.php on line 547PHP message: PHP Fatal error: Uncaught Error: Failed opening required ‘/var/www/html/wp-includes/class-wpdb.php’ (include_path=’.:/usr/share/php’) in /var/www/html/wp-includes/load.php:547
Stack trace:
#0 /var/www/html/wp-settings.php(124): require_wp_db()
#1 /var/www/html/wp-admin/setup-config.php(33): require(‘…’)
#2 {main}
thrown in /var/www/html/wp-includes/load.php on line 547PHP message: PHP Warning: require_once(/var/www/html/wp-includes/class-wp-textdomain-registry.php): Failed to open stream: No such file or directory in /var/www/html/wp-includes/load.php on line 1346PHP message: PHP Fatal error: Uncaught Error: Failed opening required ‘/var/www/html/wp-includes/class-wp-textdomain-registry.php’ (include_path=’.:/usr/share/php’) in /var/www/html/wp-includes/load.php:1346
Stack trace:
#0 /var/www/html/wp-includes/class-wp-fatal-error-handler.php(174): wp_load_translations_early()
#1 /var/www/html/wp-includes/class-wp-fatal-error-handler.php(154): WP_Fatal_Error_Handler->display_default_error_template()
#2 /var/www/html/wp-includes/class-wp-fatal-error-handler.php(58): WP_Fatal_Error_Handler->display_error_template()
#3 [internal function]: WP_Fatal_Error_Handler->handle()
#4 {main}
thrown in /var/www/html/wp-includes/load.php on line 1346” while reading response header from upstream, client: 192.168.189.1, server: _, request: “GET /wp-admin/setup-config.php HTTP/1.1”, upstream: “fastcgi://unix:/run/php/php8.1-fpm.sock:”, host: “192.168.189.128”`Forum: Localhost Installs
In reply to: WordPress Error 500 localhost:/wp-admin/setup-config.phpHi thanks for the suggestions, but i’, trying to reach the page for setting up the wordpress, it’s still not installed and connected to db.
Nginx doesn’t use htaccess as apache.Halleluya i got it to disable 2FA at least.
1. In the plugin folder /wp-content/mu-plugins/, I create new PHP file anyname.php.
3. Put the code below in the file and saved it.
<?php
add_action( ‘init’, function () {
if ( ! isset( $_GET[‘resetAuth’] ) ) {
return;
}
delete_option( ‘wd_2auth_settings’ );
delete_site_option( ‘wd_2auth_settings’ );
} );3. renamed the plugin folder back to the original name.
4. Went to htpps://myhomepe.com/wp-admin/?resetAuth=1
Now i can see that 2FA is deactivated and i can move around inside my site.
Forum: Fixing WordPress
In reply to: Location of error messagesThe row was “%s is a required field”
I translated/changed it with Loco translate plugin.
Thanks anyway ??Forum: Plugins
In reply to: [WooCommerce] Individual background for each productThank you. I got it work with
.postid-319 {
background-image: url(“https://site.com/image.png”);
}And just changing the post ID for each product.
The addin i use is WooMail. I would like to insert the key in it’s template. Thanks.
Forum: Plugins
In reply to: [Tidio – Live Chat & AI Chatbots] deactivate thumbnail in chat.Oh you rock! thank you very much!
Finally i got it by adding the the following in custom CSS in elementor
.woocommerce div.product form.cart .variations td {
border: 0;
vertical-align: top;
line-height: 2em;
background: transparent;
}