Tfkalk
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Out of Memory Error Uploading Large FileOkay, thanks!
Forum: Fixing WordPress
In reply to: Out of Memory Error Uploading Large FileAs I’ve been trying to figure this out, I discovered some more information that may help. I moved my plugins into a new folder, just to see if there was a plugin error. As I moved them back in, I noticed I was able to now upload the file. However, I noticed that as I moved more back and *activated* more, I was no longer able to upload the file. Would this re-enforce the hypothesis that my PHP memory needs to be increased?
Forum: Fixing WordPress
In reply to: Out of Memory Error Uploading Large FileBorge,
Thank you again for your response. I added
define('WP_MEMORY_LIMIT', '128M'); define('WP_MAX_MEMORY_LIMIT', '256M');
into wp-config.php. And then added
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' ); }
to default-constants.php. However, it still throws the error of Fatal error: Out of memory (allocated 39321600) (tried to allocate 276803 bytes) in /homepages/14/d117110337/htdocs/tknn/wp-includes/ID3/getid3.php on line 1664.
Forum: Fixing WordPress
In reply to: Out of Memory Error Uploading Large Filesterndata,
I tried adding the line of code before, as you said. The website then had an Internal Service Error.
Forum: Fixing WordPress
In reply to: Out of Memory Error Uploading Large FileBorge,
Do you mean make sure I have that set up in default-constants.php? In that file, I have
// set memory limits
if ( !defined(‘WP_MEMORY_LIMIT’) ) {
if ( is_multisite() ) {
define(‘WP_MEMORY_LIMIT’, ’64M’);
} else {
define(‘WP_MEMORY_LIMIT’, ’40M’);
}
}if ( ! defined( ‘WP_MAX_MEMORY_LIMIT’ ) ) {
define( ‘WP_MAX_MEMORY_LIMIT’, ‘256M’ );
}If I need to change it to what you have, let me know. Thanks!
Forum: Fixing WordPress
In reply to: Out of Memory Error Uploading Large FileI should be able to, I’m just not sure where to put the line of code that the website you provided has. (php_value memory_limit 64M)
Currently it is:
# 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 WordPress
Forum: Fixing WordPress
In reply to: Out of Memory Error Uploading Large FileI have done the first step in the past and I don’t believe I have a php.ini because I am not local hosted. I went to edit the .htaccess, but I was not sure where to put the line of code. I have not edited my .htaccess before, so it is the default.
Also, apologies for my late response. I must’ve missed the email notification.
Forum: Themes and Templates
In reply to: [Customizr] Using Co-Authors Plus with CustomizrThat worked! Thank you for your help!
Forum: Themes and Templates
In reply to: [Customizr] Using Co-Authors Plus with CustomizrThe one thing I’ve noticed is that posts since I’ve activated the plug-in have the tags even for single author. That might make a difference if you’re trying to replicate it. Just so you know, TKNN.info is the site I’m working with.
Forum: Themes and Templates
In reply to: [Customizr] Using Co-Authors Plus with CustomizrThat was happening before I put the above code in. I’m running Customizr 3.1.24
Forum: Themes and Templates
In reply to: [Customizr] Using Co-Authors Plus with CustomizrHere’s a link to the screenshot. I wasn’t sure how to post a screenshot here, if I even could.
The one thing I noticed is that tag issue only affects posts with two authors. All my other articles with one author don’t have this problem.
If you would like a link to an article with two authors, let me know.
Forum: Themes and Templates
In reply to: [Customizr] Using Co-Authors Plus with CustomizrYes! Thank you! Now, the one thing I’m noticed is that in addition to showing the “By … and …” it also includes the author’s names as tags. Is there a way to fix that?
Forum: Themes and Templates
In reply to: [Customizr] Logo Does Not Show in IEIt did still occur with the JPG, but I was able to solve it. Turns out the logo was larger than the theme code allowed. So I changed the maximum and my logo appears. Thanks of your help. I’m marking this resolved.
Forum: Themes and Templates
In reply to: [Customizr] Logo Does Not Show in IEMy website is TKNN.info.
Forum: Themes and Templates
In reply to: [WP StrapHero] How to Remove/Alter Header/Footer Image?Hello Zulf,
I was looking to only remove the blue diamond image. I am currently using the secondary menu, and I am using the header.
Thanks,
Tfkalk