Miguel Martinez Lopez
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: admin-ajax.php 404 (Not Found)hi! It could be a plugin or it could be also that your server has limited resources. Another possibility is many installations in the same server.
Start deactivating all plugins to see if the problem still happens. Otherwise check the features of your hosting plan and ask to your hosting provider.
Forum: Fixing WordPress
In reply to: Searc-bar doesn’t work.is there a
search.php
file in your theme? Observe your action form. The url of the action attribute is the home page. At the same time, the select has no name attribute.Forum: Fixing WordPress
In reply to: Links in dashboard are brokenHi Tim, I would disable all plugins and I would use a default theme in WordPress. Could you please confirm if you are still logged after clicking the links that you mention inside the admin interface?
Forum: Fixing WordPress
In reply to: Update from Ubuntu 18.04 to 22.04Hi! Doing this upgrade , you lost the configuration files of your web server. You have to recover the configuration files of the apache webserver and install in the right places or create again the configuration files.
- This reply was modified 1 year, 9 months ago by Miguel Martinez Lopez.
Maybe this tutorial can help:
You have to change the configuration of MySQL server to use the new password hash length.
Forum: Fixing WordPress
In reply to: Error, conflict?You are in maintenance mode. The issue very probably disappear if you add this to
wp-config.php
:define('WPLANG', '');
Doing this you are disabling localization. Also if you are not anymore in maintenance mode , that issue will not appear. But i am thinking that maybe there is a bug in the core. The file
wp-includes/formatting.php
, containing the definition oftrailingslashit
, is not still loaded when callingload_textdomain
, inwp_load_translations_early
, and called this last one inwp_maintenace
, when we are in maintenance mode. I hope that other users can confirm this.- This reply was modified 1 year, 9 months ago by Miguel Martinez Lopez.
- This reply was modified 1 year, 9 months ago by Miguel Martinez Lopez.
- This reply was modified 1 year, 9 months ago by Miguel Martinez Lopez.
- This reply was modified 1 year, 9 months ago by Miguel Martinez Lopez.
Forum: Fixing WordPress
In reply to: Posts do not appear on the Dashboardhi, can you add this code and answer the result here?
add_action('init', function(){ print_r(wp_count_posts()); exit; });
You can try this code creating for example a mu-plugin named test.php: in wp-content create a subfolder called mu-plugins if it doesn’t exits. In
wp-content/mu-plugins
create a file called test.php and write the php code mentioned before.- This reply was modified 1 year, 9 months ago by Miguel Martinez Lopez.
Forum: Fixing WordPress
In reply to: Can′t create a new post: warningThe variable
$post
is not an object in that line. WordPress couldn’t insert a new draft post in the database.Maybe missing insert permission to the database?
Have you a problem for example uploading a media file also?
- This reply was modified 1 year, 10 months ago by Miguel Martinez Lopez.
hola!
Entra en el panel de administration. Abre el web developer tools. En el tab console copia y pega aqui los errores que aparece. En el tab network indica si hay alguna hoja de estilo que no se puede cargar. Si eliminas esto
define('CONCATENATE_SCRIPTS', false);
las redirecciones continuan sucediendo?
Forum: Fixing WordPress
In reply to: PHP errorshi! What is your WordPress version?
Here it explains how to check the WordPress version:
https://wpengine.com/resources/check-which-wordpress-version-4-easy-ways/
this problem happens to a specific page or post?
Forum: Fixing WordPress
In reply to: PhP problemhi! What is the error now when you deactivate the plugin?
Forum: Fixing WordPress
In reply to: Warning: Array to string conversion in…hi! Very probably this a plugin that it’s using the function wp_verify_nonce with a wrong nonce parameter. You can for example to deactivate all the plugins and activate one by one to discover which one is giving the warning.
Forum: Fixing WordPress
In reply to: Warnings Errores WPHola Rebeca,
este problema tambien sucede si desactivas el tema hijo de divi y solamente tienes activado el tema de divi?
Puedes mostrar el contenido del archivo functions.php dentro de la carpeta del tema hijo?
Puedes ocultar esos warnings modificando estos parameters en php.ini:
display_errors = Off
tal como explica este tutorial:
https://www.fullstackoasis.com/articles/2019/11/18/how-to-hide-warnings-in-php/
o bien en tiempo de ejecucion con esta funcion:
error_reporting
error_reporting(E_ALL ^ E_WARNING);
- This reply was modified 1 year, 10 months ago by Miguel Martinez Lopez.
Forum: Fixing WordPress
In reply to: Rapair of DBhi, could you please confirm whether the value in wp-config.php of the variable $table_prefix is ‘wp_thegamblermagazine_se_’?
Forum: Fixing WordPress
In reply to: PhP problemhi! Deactivate the plugin date-and-time-widget. It’s not compatible with php8 yet. It’s using the function create_function. That function is removed in php8.
https://www.php.net/manual/en/function.create-function.php
- This reply was modified 1 year, 10 months ago by Miguel Martinez Lopez.
- This reply was modified 1 year, 10 months ago by Miguel Martinez Lopez.