michaelapratt
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: EXIFHi, @sdyk2018.
I’m the photographer and also looked up for gallery plugin, which have an ability to extract EXIF metadata from uploaded images. After some researching I finally founded a suitable solution for me – Photo Gallery by Supsystic. You can see an example of a gallery with displaying EXIF data on their website.
Forum: Fixing WordPress
In reply to: How to show shipping rates in different countries….Hello, if I understand you right, maybe will be useful currency plugin. customers can switch the currency, and u can put these rates manually or automatically, using some platform. it is build-in plugin i use, really easy. and work on wocommerce base. https://woobewoo.com/plugins/woo-currency/
Forum: Fixing WordPress
In reply to: Fatal error: Allowed memory size of….or this as well
Updating Your php.ini File
If you use cPanel, move to the Files and click on the File Manager button. Make sure the checkbox for Show Hidden Files is checked and then press Go.
Select your wp-admin folder and find a file php.ini or php5.ini. If you can’t find it, create one by clicking the New File button in the top left-hand corner. Name the file php.ini and click Create File button on the pop-up.
If you made everything right, but it still doesn’t work, try to rename the file to php5.ini. Open the file, add or edit the following lines. After it press save and close.upload_max_file_size = 100M
post_max_size = 200M
memory_limit = 300M
file_uploads = On
max_execution_time = 180Change the 100M, 200M and 300M limit to the value you require.
Changing the value of max_execution_time will limit the amount of time spent loading a script in seconds.
Generally, the values you enter should increase from top to bottom 100-200-300.
The upload_max_filesize value should be the smallest, post_max_size is medial and memory_limit should be the largest.
Before to check the result, clear your browser’s cache.and this
Editing Your .htaccess File
If aditing of php.ini file doesn’t work, try to edit .htaccess file and add/edit the following code at the bottom:
php_value upload_max_filesize 100M
php_value post_max_size 200M
php_value memory_limit 300M
php_value max_execution_time 180
php_value max_input_time 180Code changes are similar to your php.ini file. Put the limits value you require. Save when you’re done and clear the cache for your browser.
Forum: Fixing WordPress
In reply to: Fatal error: Allowed memory size of….Hello, try this:
Amending Your wp-config.php File
First, try to edit the wp-config.php file on your WordPress site. It is located in your WordPress site’s root folder.
Edit this file, for example with the command:
sudo nano /var/www/html/wp-config.php
Next, you need to paste this code in wp-config.php file just before the line that says ‘That’s all, stop editing! Happy blogging.’
Define(‘WP_MEMORY_LIMIT’, ‘256M’);https://i.gyazo.com/43fbb44d266796a981cd3b3767f0d3cb.png
This code tells WordPress to increase the PHP memory limit to 256MB.
You can customize the number to increase the memory limit to a higher amount if you wish. Then you need to save changes and upload your wp-config.php file back to your server.
You can visit your WordPress site and memory exhausted error should disappear now.
If the error is still occurring, you may need to increase the WordPress memory limit to a higher number.