Home Learn More Purchase Knowledge Base Support Contact

Search:     Advanced search
Showing: 1-7 of 7  
Articles
 
document 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] Restore:  mysql -u [username] -p[password] -h[host] [databasename] <...
08 Feb, 2010
document How can I do a mass find and replace in articles?
You can write one-line find-and-replace statements in SQL. To find a string in a certain field and replace it with another string: UPDATE [table_name] SET [field_name] = REPLACE([field_name],'[string_to_find]','[string_to_replace]'); To not affect date updated for the articles use following...
18 Dec, 2010
document 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 usually be found on Windows under C:\Windows\my.ini and on Linux under /etc/my.cnf Edit the file and...
10 Jan, 2011
document 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 placed in the .htaccess: php_value upload_max_filesize "32M" If you are on windows with IIS...
16 Mar, 2010
document 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 would be placed in the .htaccess: php_value upload_max_filesize "3M" You also may want to...
28 Mar, 2011
document 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 directory. Lastly, call the script from a browser. Example:...
19 Feb, 2010
document 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 logged in via FTP (some programs will tell you this) or while using a File Manager tool in your...
03 Mar, 2010


© 2011 Double Jade LLC | customer.service@kbpublisher.com