Farhad
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I have Imagick and Zip installed but WP doesn’t see them?Can you add this to your .user.ini or php.ini in your wordpress directory?
extension=imagick.so
Try it, is helpful?
P.S: try check phpinfo() also, if is not there, should be an error in install.
- This reply was modified 4 years, 9 months ago by Farhad. Reason: P.S
Forum: Fixing WordPress
In reply to: Why db size increasedI dont understand really, in innodb its sometime bug grow space even by deleting raws.
May it is by saved id’s or somethings about that, it is not important, always use OPTIMISE in mysql time to time(weekly, monthly or even yearly), the plugin i said help you by run OPTIMISE in all wordpress mysql tables.REMEMBER however it is NOT a problem about wordpress, and it is not a true thing you use your time for that! Take it easy.
P.S: the plugin i said simple run a MySQL OPTIMISE COMMAND nothing else. But yes the plugin you installed do cleaning and some more features.
- This reply was modified 4 years, 9 months ago by Farhad. Reason: P.S
Forum: Fixing WordPress
In reply to: Achieving Fixed Height And Scrollable ColumnSo try as this:
#scrollable-col{ height:140px !important; overflow: scroll !important;}
Can you be kind to explain what this means?
.fl-col-content;Yes! In CSS if you want to style/customize a type of data, you need a class/id…
<p> Hello World</p>
<p class=”header1″> Hello World</p>
<p id=”header2″> Hello World</p>In this example if you want to change style about this paragraph you can use:
p{
//Your codes
}
.header1{
//Your codes
}
#header2{
//Your codes
}
There is 3 methods, parts (as p for paragrahs), class’s (as the example, with a dot before) and id’s (with # before instead of .)In your area its an ID, so called by #.
If you need full explain or a guide, take a look here:
https://www.w3schools.com/css/It help you for changing Interface of your theme, CSS in this level is not hard and you can learn it in a few days (for small twaeks and changing styles in this level).
Forum: Fixing WordPress
In reply to: Installing latest WordPress after update of old PHPThe code disable wp error handler, can you see php error on screen? Or its white screen?
You need debugging as i dont know what is it!Forum: Fixing WordPress
In reply to: Disable “Delete Permanently”If you talk about posts, simple use trashbin wp config to add/remove 2-step delete
See here:
https://www.ads-software.com/support/article/editing-wp-config-php/#empty-trashAdd this code to your wp-config.php:
define( 'EMPTY_TRASH_DAYS', 0 );
Now no conf & no trash! (post > “Delete Permanently”):) this disable trash…
For a two step proc (post > trash > “Delete Permanently”) you can set it >0 as 1 , wordpress default is 30 days so it is active if you dont disable.
Forum: Fixing WordPress
In reply to: Achieving Fixed Height And Scrollable ColumnTry with
!important
as:.scrollable-col .fl-col-content { height:140px !important; overflow: scroll !important; }
If not usable im sorry because i use pure css no in page bulider so dont know more than it.
If you try it in a simple html, will see work, but in vc page bulider i cant test.
P.S: REMEMBER you can find the css id/class chrome, simple replace…
Click right on the box of text, select last option, now you should see css codes about this spot, find the right class id/class.
ALSO if its a custom css only for the part, may no need to class/id,try with style only for exapmle:height:140px !important; overflow: scroll !important;
Forum: Fixing WordPress
In reply to: Achieving Fixed Height And Scrollable Column@dannyogolo you can use this:
.scrollable-col .fl-col-content { height:140px; overflow: scroll; }
You can try to change size depend on your theme and find best size for both mobile and desktop, its better to use a fixed size not max for better algiment.
At my knowledge i cant say a method to using 80% in this way, but i think no need and you can try a fixed size.
Forum: Fixing WordPress
In reply to: Why db size increasedThank you @sterndata but problem is as them said, growing size after deleting rows!
@ketanco please check the plug-in, after install go to tools>>optimise mysql tables, for me it save more than 50% in wp options table. Give it a try and say me the results ??Forum: Fixing WordPress
In reply to: Why db size increasedYou do right, can you try an optimization plugin? As this:
https://www.ads-software.com/plugins/vevida-optimizer/Forum: Fixing WordPress
In reply to: Help with broken images on old postsTry to edit post, update it without any changes, if worked you can update many posts by checklist them in panel, however it’s a thumbnail problem, looklikes some of thumbs deleted, so if you rebuild them, it will be fixed simple. Try some plugins.
Forum: Fixing WordPress
In reply to: Why db size increasedTheres two way for deleting database rows, empty and drop, if you use empty it will made empty space, and if you use drop it will be exit completely from database table.
Try to optimize your database with a plugin, it may be helpful if it occurred by spaces.
Forum: Fixing WordPress
In reply to: Achieving Fixed Height And Scrollable ColumnOh, and remember add a height for parent of .scrollable-col & .fl-col-content, else does NOT work.
p.s: if you use for example this code:
.box{height:100px;}
.scrollable-col{height:50%;}It will be about 50px, mean its 50% of size of its place holder not display of user only! So if you use 80% without a parent limit it does NOT work. also you can use
overflow:scroll
if it is a scrollable box in any size.Forum: Fixing WordPress
In reply to: Achieving Fixed Height And Scrollable ColumnYou can use simple
overflow:auto;
Instead.
Checked it?Forum: Fixing WordPress
In reply to: Broken CSS (Layout) on wp-admin after updateIt may by a misconfigured plugin, try disable old plugins or update if is available.
Forum: Fixing WordPress
In reply to: Installing latest WordPress after update of old PHPHi
There is may be some issue with plugins or php add-ons,
Check:
1. disable all plugins and change theme by ftp, simple change name of plugins folder and name of active theme (WordPress automatically use a default theme as 2020)
2. If not helpful, adddefine( 'WP_DISABLE_FATAL_ERROR_HANDLER', true );
to your wp-config.php and past here the error. It may be about a required add-on that not found.