Borge
Forum Replies Created
-
Changing the WordPress Website’s Domain is a bit critical.
1. You need to copy the database and website files to the server of the new domain name.
2. You will be recreating the database name and database user (allow al previlidges)
3. Import database
4. Access phpmyadmin and change the site URL there ( Instructions )
5. Access Settings> General, change the Site Address (URL) as well or add this on the wp-config.phpdefine(‘WP_HOME’,’http://example.com’);
define(‘WP_SITEURL’,’http://example.com’);glad it works now 🙂
Hi lwam1,
On your dashboard
Check Settings>Media
upload path should only be wp-content/uploadsanything before that like home/user/public_html/wp-content/uploads/2016/07
Everything should be removed except for wp-content/uploads
Forum: Fixing WordPress
In reply to: UNable to Login to wp-adminin php.ini file in the root directory
if you cant see it, crate onehave you seen error_log in public_html?
Forum: Fixing WordPress
In reply to: UNable to Login to wp-admincan you check if error_log if there is error messages reported there?
If no, add this on your php.ini
; – Show all errors, except for notices
;
error_reporting = E_ALL & ~E_NOTICE
;then
display_errors = On
Forum: Fixing WordPress
In reply to: Out of Memory Error Uploading Large FileIf you host allow 512M RAM, change it into
if ( !defined(‘WP_MEMORY_LIMIT’) ) {
if ( is_multisite() ) {
define(‘WP_MEMORY_LIMIT’, ‘128M’);
} else {
define(‘WP_MEMORY_LIMIT’, ‘256M’);
}
}if ( ! defined( ‘WP_MAX_MEMORY_LIMIT’ ) ) {
define( ‘WP_MAX_MEMORY_LIMIT’, ‘512M’ );
}Let me know if this works..
Forum: Fixing WordPress
In reply to: wp-admin asking for authenticationhtaccess can be found in public_html,not in root folder. Have you check if there is any . (dot files) in public_html?
If nothing, try talking with your host so they can check it further.Forum: Fixing WordPress
In reply to: wp-admin asking for authenticationI guess you have activated Password Protect in Cpanel.
If you dont have the option in your File manager saying “Show Hidden Files (dotfiles)”
Look down at the bottom of Cpanel, if you are using x3 theme in Cpanel you will then have the option to “Reset all Interface Settings”. Just as this one on the screenshot
Once it is reset, you click back file manager, the you will have the option to tick the box for “Show Hidden Files (dotfiles)”
From there you will see the .htaccess and .htpasswd in the public_html.
However, you just need to remove .htpasswdThat should fix the problem.
Forum: Fixing WordPress
In reply to: Header or FooterClick Apperance,
Editor
Look for header.php and footer.phpForum: Fixing WordPress
In reply to: Issue with mysql db table, couldn't be fixed by WP DB toolTry checking if the table prefix is the same as your local host.
You might be using another table prefix.
Edit the table prefix in the wp-config.Forum: Fixing WordPress
In reply to: WordPress coexisting with OmekaForum: Fixing WordPress
In reply to: Out of Memory Error Uploading Large FileTry adding this in your wp-config.php
define('WP_MEMORY_LIMIT', '128M'); define('WP_MAX_MEMORY_LIMIT', '256M');For sure you have this set up in your default-constants.php as
define('WP_MEMORY_LIMIT', '64M'); } else { define('WP_MEMORY_LIMIT', '40M'); } } if ( ! defined( 'WP_MAX_MEMORY_LIMIT' ) ) { define( 'WP_MAX_MEMORY_LIMIT', '64M' );This causes you from using the allowable RAM. However, if you add that code mentioned above in the wp-config.php, that should work.
Forum: Fixing WordPress
In reply to: Problem with Imagescheck permission on the server. upload/2016/07 all those folders should be 755
moreover, check the Settings>Media> check upload media path file
correct it just only wp-content/uploads
anything before and after those should be removed.Forum: Fixing WordPress
In reply to: Error 404 Page Not found and cant access wp admin editorThere was server storage issue with CD earlier.
Forum: Fixing WordPress
In reply to: cant get past the login pageThis seems to be cache only on your computer or network.
Tried accessing wp-admin of both domain names, seems to be going through the right page (not displaying log in to wordpress.com) WordPress.coma and .org are completely different.
Try basic troubleshooting. Its just a local issue.