myRepono - Website & mySQL Database Backup Service
WordPress FAQ Blog Affiliates Contact Log-In

Frequently Asked Questions

FAQ >> API Configuration & Customisation (v1.3)

Note

Note, most users do not need to read this article and customise the API. These settings are for advanced configuration, customisation and tweaking and are primarily intended if the API is not able to complete your backups, or if you have a dedicated server and would like to increase your backup packet sizes.


This documentation applies to version 1.3 of the API, you can determine your API version via the 'API' section of your account
 
The myRepono API includes a number of customisable parameters which enable you to change how the API processes your backups.
 
To change these parameters, firstly download the myrepono.php API script from your server (or from myRepono.com) and open it in a text editor such as TextPad, UltraEdit or WordPad (do not use NotePad).
 
At the top of the myRepono API script (just below the license statement) you will see the following variables:
 
// CONFIGURATION
 
$client_key = "MYREPONOAPIKEY";
$client_password = "MYREPONOAPIPASSWORD";
 
$api_packet_filesize = "7";
$api_packet_files = "150";
$api_max_file_filesize = "7";
$api_max_files_per_process = "1000";
$api_timeout = "60";
 
$api_create_htaccess = "0";
$api_create_data_htaccess = "1";
$api_mcrypt_rijndael = "0";
$api_myrepono_https = "2";
 
$api_allow_exec = "1";
$api_mysqldump = "1";
$api_mysqldump_path = "mysqldump";
$api_csplit = "1";
$api_csplit_path = "csplit";
$api_split = "1";
$api_split_path = "split";
$api_allow_chmod = "1";
 
$api_data_directory = "data";
 
$enable_debug_log = "0";
 
// END CONFIGURATION

 
These variables are used as follows:
 
$client_key
Your myRepono API Secret Key as provided in the 'API' section for your domain. This value will be automatically set when downloading the API.
 
$client_password
Your myRepono API Password as provided in the 'API' section for your domain. This value will be automatically set when downloading the API.
 
$api_packet_filesize
Controls the maximum filesize for your backup packets. Be careful when increasing this value, by default the value is set at 7MB for high compatibility, 10MB is the optimal packet size for most servers since a larger filesize can cause the ZIP archive, compression or encryption processes to fail if the API is unable to complete the processes within the maximum PHP execution time allowed by your server. We recommend experimenting with this value to find what setting works best on your server. The value entered should be the number of megabytes as an integer, e.g. '10' represents 10 MB. This setting is used in association with the $api_packet_files value.
 
$api_packet_files
Controls the maximum number of files which can be included in your backup packets. Be careful when increasing this value, by default the value is set at 150 for high compatibility, 250 files is the optimal packet file count for most servers since a larger number of files can cause the ZIP archive, compression or encryption processes to fail if the API is unable to complete the processes within the maximum PHP execution time allowed by your server. We recommend experimenting with this value to find what setting works best on your server. This setting is used in association with the $api_packet_filesize value.
 
$api_max_file_filesize
Controls the maximum individual filesize which can be backed up without being split into smaller packets for individual transfer (which is less efficient). Files which do not meet the $api_packet_filesize limitation are not archived or compressed, but they are split into multiple packets which are individually encrypted and transferred (and then recompiled into a single encrypted file by our system). This setting limits the maximum filesize which may be transferred without being split. We recommend experimenting with this value to find what setting works best on your server. The value entered should be the number of megabytes as an integer, e.g. '10' represents 10 MB.
 
$api_max_files_per_process
When indexing your directories and files to be backed up, the API will split the indexing into multiple processes to reduce the load on your server, and to avoid any PHP timeout limitations. By default this value is set to '1000' (files/directories per process) for high compatibility, however if your server supports a high PHP timeout then this value can be set to '10000', or higher.
 
$api_timeout
If PHP is not running with safe mode enabled then you can adjust the PHP timeout value using this variable. The value entered should be the number of minutes as an interger, e.g. '10' represents 10 minutes, or 600 seconds. The maximum timeout the API will allow is 180 minutes/3 hours. The API is designed to run each process in less than 30 seconds, however in some cases the API may need to wait for longer periods of time, for example whilst waiting for a large mysqldump SQL backup.
 
$api_create_htaccess
If enabled (set to 1) the API will create an Apache .htaccess file within the myRepono API directory. This .htaccess file adds an additional IP authentication stage for extended security. This option should be disabled (set to 0) if you are not using a server which is running the Apache Web Server software. If the myRepono API directory returns an internal server error, disable this setting and remove the .htaccess file created in the directory.
 
$api_create_data_htaccess
If enabled (set to 1) the API will create an Apache .htaccess file within the myRepono API data directory. This .htaccess file will block any web access to your API data directory for extended security. This option should be disabled (set to 0) if you are not using a server which is running the Apache Web Server software. If the myRepono API data directory returns an internal server error, disable this setting and remove the .htaccess file created in the directory.
 
$api_mcrypt_rijndael
If enabled (set to 1) the API will use PHP's mcrypt function to encrypt the backup packets using Rijndael 256-Bit encryption. This encryption is extremely secure but the mcrypt function is very inefficient. If this function is enabled, it takes approximately 10 to 15 times as long to create your backup packets, therefore if your PHP script timeout value is too low (under 60 seconds) the API will be unable to encrypt the backup packets quickly enough, therefore you may need to reduce the $api_packet_filesize, $api_packet_files and $api_max_file_filesize values. This feature requires you have the PHP mcrypt library installed, if the option is enabled when mcrypt is not available then the default encryption will be used.
 
$api_myrepono_https
As part of the backup authentication process, the myRepono Backup API makes connections to myRepono.com during the backup process. If the $api_myrepono_https value is set to '1' these connections will always use the https protocol (SSL) to ensure all data transfer is secure, however since SSL connections require additional processing resources they can fail more regularly than standard (http protocol) connections. In this case the $api_myrepono_https can be set to '2' to only use the https protocol for critial connections which involve sensitive data, enabling the http protocol to be used for less sensitive connections. Or alternatively, the $api_myrepono_https value can be set to '0' to disable usage of the https protocol (SSL) and to only use the standard http protocol for all connections.
 
$api_allow_exec
If enabled (set to 1) the API may use PHP's exec() function to utilise command-line tools and functions, these tools are only used to improve efficiency and reliability, or to avoid compatibility issues. The command-line tools and functions which are used are mysqldump, split, csplit, stat, mv/move and cp/copy. mysqldump is used for generating backups of large database tables, split and csplit are used for splitting large files into smaller packets only when PHP is unable to do so (if the file is over 2GB and on a 32-Bit system), stat is used for filesize detection when PHP is unable to do so (if the file is over 2GB and on a 32-Bit system), and the mv/move and cp/copy commands are only used as a fail-over if PHP is unable to move or copy a file. If disabled (set to 0), all usage of the exec() function is restricted irrelevant of your $api_mysqldump, $api_csplit and $api_split settings.
 
$api_mysqldump
If enabled (set to 1) the API will use the command-line tool 'mysqldump' to generate mySQL database backups. The 'mysqldump' tool is more efficient than the default mySQL backup method and can be used to backup much larger databases, however mysqldump is not supported/offered by all servers. If your server supports 'mysqldump' then you can enable this feature, the $api_mysqldump_path value is used to define the server's path to 'mysqldump'. When enabled the API will attempt to auto-detect if mysqldump is supported.
 
$api_mysqldump_path
The value represents the path to the command-line tool 'mysqldump', if the $api_mysqldump option is enabled (set to 1) then the $api_mysqldump_path value is used when calling the 'mysqldump' tool. Setting this to 'mysqldump' will usually be sufficient, however you may need to set a full path such as: /usr/bin/mysqldump
 
$api_csplit
If enabled (set to 1) the API will use the command-line tool 'csplit' to split backup files into smaller files. The API is not able to encrypt large files, therefore large files must be split into smaller files to be processed, the files are then automatically re-compiled by our system. The csplit tool is used to split files which PHP is unable to access, this usually only applies to files which are over 2GB and on a 32-Bit system. When enabled the API will attempt to auto-detect if csplit is supported. Usually only csplit or split will be used, both are supported for improved compatibility.
 
$api_csplit_path
The value represents the path to the command-line tool 'csplit', if the $api_csplit option is enabled (set to 1) then the $api_csplit_path value is used when calling the 'csplit' tool. Setting this to 'csplit' will usually be sufficient, however you may need to set a full path such as: /usr/bin/csplit
 
$api_split
If enabled (set to 1) the API will use the command-line tool 'split' to split backup files into smaller files. The API is not able to encrypt large files, therefore large files must be split into smaller files to be processed, the files are then automatically re-compiled by our system. The split tool is used to split files which PHP is unable to access, this usually only applies to files which are over 2GB and on a 32-Bit system. When enabled the API will attempt to auto-detect if split is supported. Usually only csplit or split will be used, both are supported for improved compatibility.
 
$api_split_path
The value represents the path to the command-line tool 'split', if the $api_split option is enabled (set to 1) then the $api_split_path value is used when calling the 'split' tool. Setting this to 'split' will usually be sufficient, however you may need to set a full path such as: /usr/bin/split
 
$api_allow_chmod
If enabled (set to 1) the API is permitted to use PHP's chmod() function in order to change the permissions on files. When processing backups, only the permissions on files created by the API will be changed if the API is unable to access a file (for example, when created by a command-line tool such as mysqldump). When processing restorations, the API may change permissions on directories and files in order to restore files, in all cases the API will revert the permissions back to those previously set. This feature can be disabled to prevent PHP warnings on systems where the chmod() function is restricted, since such warnings can cause large error logs.
 
$api_data_directory
This value represents the name of the API data directory, the API data directory is a directory (by default called 'data') which is created in your main API directory and is used to store all files created by the API. The API data directory must be within the API directory, however all web access can be restricted (see $api_create_data_htaccess option above). The API data directory must be writable, meaning at a minimum PHP is permitted to create files within that directory, this is usually accomplished by setting the directory permissions (CHMOD) to 777 or 666.
 
$enable_debug_log
If enabled (set to 1) the API will generate a debug log file for troubleshooting and debugging purposes. We recommend this is only enabled by experienced PHP developers, if enabled please ensure you regularly remove the debug logs as these will not be automatically removed.
 
When you are done customising your API, simply upload it to your web site.
 
If you require any assistance customising the API or have any questions regarding it's configuration, please don't hesitate to contact us.

Did you find this page helpful?   Yes Yes No No

Search FAQ

 

Related Articles

Popular Questions

Tag Cloud

domain   installation   wordpress   configuration   mysqldump   api   php   backup   remove   download   password   mysql   servers   location   balance   packets   packet   connect   account   file   profile   secure   archive   log   encryption   ftp   email   settings   directory   server