Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 1 year ago.
Improve this question
Reinstalled WP on my server and it now shows this: http://www.mtthwbsh.com
I've done some reading and have only found information on changing the HTaccess but am not really sure what this entails. If anyone has had this problem and could offer some insight it would be greatly appreciated.
This is not an .htaccess issue. All you need is to install the index.php file into the directory. Without it, there's nothing for the site to load by default.
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 12 months ago.
Improve this question
I am facing some weird issue in WordPress
I have created a website in my subdomain until the time everything works fine after finalizing the website.
Once I migrated that website to client-server my WordPress theme is getting deleting itself after some time like 15min, I used updraftplus plugin to migrate the website.
I am using Dabble theme
I am attaching screenshot for reference.
It looks like you need to increase the memory limit. Something like this happened to me and it was resolved when I increased the memory limit. Put this code below the code that says wp_debug in the wp-config.php file.
define( 'WP_MEMORY_LIMIT', '256M' );
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 1 year ago.
Improve this question
My website https://feminspacebeauty.com is effected with a malware redirecting to https://click.driverfortnigtly.ga/GMtCh34S , I tried by asking help from hosting provider they send me a list of effected files details, I tried by removing those files but nothing happened, still the same ! anyone can you please help me
few tips which might help you....
Replace Core WordPress files
Regenerate .htaccess file
Update theme & plugins
I know how you feel. My customer's site was just like your site. my solution is always uninstalling website folders and database before set up backup. Note: Your back up files have to be clean. Can you check this website WordPress Malware Redirect Hack 🔴 How To Detect & Fix It.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 9 years ago.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Improve this question
I have found multiple questions and answers referring to the wordpress/wp-content/uploads file but I am new to creating websites and don't know where to find it. I searched my cpanel File Manager for it but it doesn't show me it. My host is Arvixe and I am using Wordpress.
Thank you
The wordpress uploads file is located in wordpress/wp-content/uploads.
Note that this means that if you changed your install dir and named it my_cool_site it will actually be :
my_cool_site/wp-content/uploads
You can see it with ftp, ssh, or even with cpanel file manager like you stated trying to do in your question - but
That said, you must also know that on some most configurations , the
wp uploads dir will NOT exists until you actually make an UPLOAD
The folder is created on-the-fly, with subfolders according to the settings ( year/month etc..)
Also note , that the upload folder LOCATION can be changed both by plugins / themes using the wp_upload_dir() function, or by defining a constant like so :
define( 'UPLOADS', 'wp-content/'.'files' );
So if any of those occur on your installation - the upload dir will be MOVED to that specific location.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Improve this question
Here is my error.
Download failed. Could not open handle for fopen() to http://wordpress.org/themes/download/pinboard.1.1.0.zip
Im new to WordPress.
You need to do the following two things to fix this:
First, add this to your wp-config.php file:
define(‘WP_TEMP_DIR’,ABSPATH.’wp-content/uploads/’);
and give write permission to the upload folder.
Make sure that ‘wp-include‘ and ‘wp-content‘ directory set to 755 permission. also If you are hosting WordPress blog on IIS you should make directory writable
else
Try to do it manually... Download the zip file from the url and install the file by upload theme option
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 8 years ago.
Improve this question
I am new to drupal, I am able to access website homepage fine but i unable to open other pages. its showing like 404 page error. please help me on these issue.
Website Name: http://moserfarmshomes.com
It might be a wrong configuration in you clean-url setup? Look in .htaccess and ?q=admin/config/search/clean-urls
Try setting $base_url in settings.php to http://moserfarmshomes.com
I think you need a fresh install of Drupal.
Try following the steps of this video: http://www.youtube.com/watch?v=7vPnlK1yiLw
I had the same issue and for me it turned out I was missing the .htaccess in my install directory.
So check you copied that as well since it is a hidden file it's easy to forget this.