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.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 5 years ago.
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.
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.
Improve this question
My website is showing:
Fatal error: Allowed memory size of 41943040 bytes exhausted (tried to
allocate 64 bytes) in
/home/s1079227/public_html/wp-content/themes/construction/inc/options/inc/fields/typography/googlefonts.php
on line 1
I want to solve it.
website Name:http://www.xcelcc.com.au/
To resolve this, you just need to tell WordPress to increase the limit. To do that, edit the wp-config.php for your site and add a line like this one; add it after the opening
define('WP_MEMORY_LIMIT', '256M');
If the error comes when restoring/migrating, then you should also add this (which allows even more memory to the admin dashboard):
define('WP_MAX_MEMORY_LIMIT', '384M');
To solve this problem you have to increase memory limit
First you need to edit the wp-config.php file on your WordPress site. It is located in your WordPress site’s root folder, and you will need to use an FTP client or file manager in your web hosting control panel.
Next, you need to paste the following code in wp-config.php file just before the line that says ‘That’s all, stop editing! Happy blogging.’
define( 'WP_MEMORY_LIMIT', '256M' );
you should add this line in your wp-config.php file:
define( 'WP_MEMORY_LIMIT', '256M' );
it will increase your memory size.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
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.
Closed 6 years ago.
Improve this question
I have a domain for example abc.com
How can I create development environment dev.abc.com not abc.com/dev
Thanks for your time!
If the actual hosting is with GoDaddy, create a subdomain in their control panel: https://ca.godaddy.com/help/how-do-i-create-a-subdomain-in-simple-control-panel-2290
If your hosting is with someone else but your DNS is hosted with godaddy, create an A Record for the subdomain in GoDaddy: https://ca.godaddy.com/help/add-an-a-record-19238 with the value pointing to your server ip.
On the server-side, lets assume you're using cPanel, please follow this guide to add a subdomain: http://www.inmotionhosting.com/support/edu/cpanel/cpanel-manage-domains/creating-a-subdomain
After creating the subdomain there should be a folder called subdomain (or whatever you named the subdomain) in your root folder or public_html , thats where you should be putting files for subdomain.abc.com.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
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.
Closed 5 years ago.
Improve this question
When I tried to open my WordPress site, it shows the error below:
Service Temporarily Unavailable
The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
Additionally, a 503 Service Temporarily Unavailable error was encountered while trying to use an ErrorDocument to handle the request.
Can anyone help me get out of this error?
Have you tried:
deactivating all plugins to see if this resolves the problem. If this works, re-activate the plugins one by one until you find the problematic plugin(s).
resetting the plugins folder by FTP or PhpMyAdmin. Sometimes, an apparently inactive plugin can still cause problems.
re-uploading the wp-admin and wp-includes folders from a fresh download of WordPres
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
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.
Closed 6 years ago.
Improve this question
How do I change the Import Wordpress limit of 2 MB for uploading an XML file? Searched everywhere - most people talk about increasing limits in php.ini or .htaccess. Both are unrelated to this issue, and do nothing to the screen which looks like this in Wordpress 3.8.1:
This video is the only apparent fix: http://www.youtube.com/watch?v=lZsXQ1KrObU
It shows exactly my problem, and how to solve it. Unfortunately - it doesn't change anything in WP 3.8.1. I'm amazed this hasn't been addressed.
Found the answer. Create a php.ini file in the /wp-admin directory with the following code:
upload_max_filesize = 64M
post_max_size = 64M
It won't work if the file is in the root directory.
you may want to try asking your hosting provider they may have set the upload limit at 2mb and can change it quite easily
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