eddie.ridwan
Forum Replies Created
-
Ok, figured it out. I was not aware that there is a knowledgebase sidebar widget, which has to be populated with the appropriate knowledgebase widgets.
I have done that now, and the sidebar shows with the appropriate data.
Thanks.
+1
Similar to @alaneoutlaw, on my site (https://bangundesa.info/basis-pengetahuan/) the right sidebar on inner pages is not showing. In fact none of the sidebars show, whatever setting I chose (home/inner, left/right). There is empty space where the sidebar should be.
I have switched to the default twentyfifteen theme, but the sidebar still does not show.
Have you got any further with identifying the issue? Thanks.
I updated to version 1.1.3. Tried deactivating and activating again. Unfortunately, still get this (but now at different line in the code):
Notice: Undefined index: REQUEST_SCHEME in /srv/www/bangundesa/htdocs/wp-content/plugins/wp-knowledgebase/wp-knowledgebase.php on line 473
When I view the page with the shortcode, I do not see an Edit Page option. Is this correct? Is the only way to edit the shortcode page is via the Dashboard > All Pages list?
I also deactivated every other plugin. But still the added text is not displayed.
So it is not a conflict with a plugin.
Forum: Plugins
In reply to: [Mooberry Book Manager] Error when there are no search resultsHi, I ended using this plugin https://www.ads-software.com/plugins/search-everything/ to index the book fields. Not as sophisticated as relavanssi, but very simple to set up. Seems to work fine.
Forum: Plugins
In reply to: [Mooberry Book Manager] Error when there are no search resultsThank you for the fix and the suggestions for indexing the book custom fields. After I get a chance to try it I will provide an update on how it went.
Forum: Plugins
In reply to: [Mooberry Book Manager] Error when there are no search resultsThanks for that. Being able to search the book custom data, such as the Summary field, etc is so important for my website.
I look forward to your updates.
Forum: Plugins
In reply to: [Mooberry Book Manager] Error when there are no search resultsHi, I have turned WP_DEBUG to false, so it will no longer display the error notice on the live site at https://www.bangundesa.info. It is still showing on my dev site where WP_DEBUG is true. So still appreciate a fix.
On a related matter, it appears that not all (significant) terms in the book fields (eg ‘pendampingan‘ in the summary field) are indexed (ie cannot search for that term). Why is this?
Thanks.
G’day Cory. Have raised pull request at https://github.com/lifeinthegrid/duplicator/pull/13.
Hope you would be able to add to your next update.
Thanks.
Forum: Themes and Templates
In reply to: [evolve] How to add font awesome icon to menuSo, although the evolve theme includes Font Awesome icons, can I conclude that the way the evolve theme menus works, it would require custom coding to show Font Awesome icons correctly in the menus.
I have also identified the reason for why the installer raised the following error when writing the first line in the installer-data.sql file to the target database:
**ERROR** database error write 'MySQL server has gone away' - [sql=/* DUPLICATOR MYSQL SCRIPT CREATED ON : 2015-08-18 02:47:41 */ SET FOREIGN...]
It is because the hosting server I am using has a very short default db wait_timeout of only 10 seconds. This means by the time the installer gets to the WRITE DATA section, the db connection has already gone.
I was able to overcome this problem by setting the session wait_timeout straight after the main db_connect line, as follows:
//=============================== //ERROR MESSAGES //=============================== //ERR_MAKELOG ($GLOBALS['LOG_FILE_HANDLE'] != false) or DUPX_Log::Error(ERR_MAKELOG); //ERR_MYSQLI_SUPPORT function_exists('mysqli_connect') or DUPX_Log::Error(ERR_MYSQLI_SUPPORT); //ERR_DBCONNECT $dbh = DupUtil::db_connect($_POST['dbhost'], $_POST['dbuser'], $_POST['dbpass'], null, $_POST['dbport']); // ======== added the following line ======== @mysqli_query($dbh, "SET wait_timeout = {$GLOBALS['DB_MAX_TIME']}"); ($dbh) or DUPX_Log::Error(ERR_DBCONNECT . mysqli_connect_error()); if ($_POST['dbaction'] == 'empty') { mysqli_select_db($dbh, $_POST['dbname']) or DUPX_Log::Error(sprintf(ERR_DBCREATE, $_POST['dbname'])); }
Can you please have a look at this as well, and put in the correct fix for this issue of installing on a server with a very short wait_timeout.
Thanks.
Forum: Themes and Templates
In reply to: [evolve] Theme options overwritten after restore from backupThanks, that works.
By the way, what tool are you using to deploy staging websites to production? We are currently using Duplicator as a simple solution to copy and install whole wordpress websites, but it seems that it no longer works with copying the evolve theme settings.
Once again thanks for your help.
Forum: Themes and Templates
In reply to: [evolve] Theme options overwritten after restore from backupThanks Denzel. Besides upgrading to Evolve Theme version 3.4.3, do we also need to install the Redux Framework plugin?
Forum: Themes and Templates
In reply to: [evolve] Theme options overwritten after restore from backupAnd Duplicator Version 0.5.28, the latest.