Knowledge Base
PHP & MySQL
Setting Up Folder Permissions in Internet Information Services (IIS)
This article explains how to set up write permissions in the required folders for configuring IIS for KBPublisher. Change rights for TEMP directory PHP uploads get written to windows TEMP...
28 Mar, 2023
How can I backup and restore database?
You can use mysqldump to create a simple backup of your database using the following syntax: Backup: mysqldump -u [username] -p[password] -h[host] [databasename] > [backupfile.sql] ...
19 Jul, 2018
How to change ft_min_word_len variable
Normally it is not recommended to change variables that control MySQL fulltext index behaviour (such as ft_min_word_len or ft_max_word_len) but if you really need to... MySQL config file would...
17 Jun, 2019
How do I change the PHP memory limit?
In an .htaccess file in the KBPublisher installation directory change and uncomment line: php_value memory_limit For example, if the desired limit is 32 MB, the following directive would be...
14 Nov, 2015
How do I change the PHP Max Upload file size?
In an .htaccess file in the KBPublisher installation directory change and uncomment line: php_value upload_max_filesize For example, if the desired filesize is 3 meg, the following directive...
28 Mar, 2011
How can I create a phpinfo.php page?
To create the file simply add the following lines of code to a blank document and name the file phpinfo.php <?php phpinfo(); ?> Save the file as phpinfo.php and place it in the desired...
19 Feb, 2010
How can I find my "Full server path"?
A full server path is the path your system uses to define where your own files are located on the server (as opposed to files belonging to other users). You can determine the path while you are...
4 Mar, 2010