Step 1Connect to your web server using any FTP program (ie. FileZilla) or the web-interface of your web-host and upload all files and folders which...
You must first have a Google Calendar API KeyGo to the Google Developer Console and create a new project (it might take a second).Once in the project,...
A common issue is the .htaccess file which is needed to rewrite all URL's to make them readable. You can find the .htaccess file in the root...
Basic CronjobThe basic cronjob should run at least once a day and is used in order to activate automated tasks like recurring invoices (subscriptions) and...
In order to use an SMTP server for all outgoing emails, you need to configure it in /application/config/email.phpSMTP server over port 25$config['protocol'] = 'smtp'; $config['smtp_host'] =...
If you like to use the Paypal IPN feature make sure you have added the IPN link (can be found in Settings -> Paypal) to...
Here is an example for the ticket email configuration using a gmail IMAP account:
KNOWN ISSUE: You receive an authentication error when the script connects to your gmail account. In this case please try the solution below:Solution:1. You have to...
If you are running Freelance Cockpit on Nginx you need to use the following configuration instead of the .htaccess file:location / { try_files $uri $uri/ /index.php?r=$request_uri;...
In order to force users to only use https:// you must change the .htaccess file like below:RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTPHOST}%{REQUESTURI} [R,L] RewriteCond $1...
In order to add new languages to Freelance Cockpit you just need to copy the english folder in /application/language/ and rename it to the language you want...
If you are moving to a new host or domain and you want to move Freelance Cockpit, just follow the steps below:1. Go to Settings -> System Updates and...