lumidee007
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: cannot access my dashboard after updateHello Gerald55,
You will need to upload a new WordPress file.
Kindly access your server via SFTP or FTP, or a file manager in your hosting account’s control panel delete all the WP files apart from the wp-content folder and wp-config.php file.
Download a new version of WordPress file via ww.wp.xz.cn/download, extract the file, delete wp-content folder and upload the remaining files.
Forum: Fixing WordPress
In reply to: cannot access my dashboard after updateHello Gerald55,
Kindly Set WP_DEBUG to true in your wp-config.php file via SFTP or FTP, or a file manager in your hosting account’s control panel to see what type of errors are being outputted on the screen.
define( ‘WP_DEBUG’, true);
Forum: Fixing WordPress
In reply to: 404 Not FoundHello Aydzam,
If you have Skype application running on your system kindly close the application and run the WAMP server first.
Forum: Fixing WordPress
In reply to: 404 Not FoundHello Aydzam,
If you have Skype application running on your system kindly close the application and the run WAMP server first.
Forum: Fixing WordPress
In reply to: Pages with parent pages giving 404 errorsHello Jsima
You probably need to update your .htaccess file manually,
Login to your server using FTP, and modify the .htaccess file which is located in the same location where folders like /wp-content/ and /wp-includes/ are located.
Download the .htaccess file on your system, replace with the content below and upload the file back.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPressForum: Fixing WordPress
In reply to: Registration of usersHi lualexi,
Kindly go to your admin panel > settings > general. There, you will see a checkbox labeled as “Anyone can register” uncheck the box to stop the registration without your permission.