{"id":1457,"date":"2024-11-19T09:37:39","date_gmt":"2024-11-19T09:37:39","guid":{"rendered":"https:\/\/help.xodox.in\/?post_type=docs&#038;p=1457"},"modified":"2024-12-09T14:58:35","modified_gmt":"2024-12-09T14:58:35","password":"","slug":"setup-cpanel-cron-job","status":"publish","type":"docs","link":"https:\/\/help.xodox.in\/pt\/docs\/setup-cpanel-cron-job\/","title":{"rendered":"Setup cPanel Cron Job"},"content":{"rendered":"<div class=\"entry-content\">\n<div class=\"st-alert st-alert-\">Cron is required to be set up for Xodox CRM if you want all features to works as expected.<\/div>\n<h3 id=\"setup-cpanel-cron-job\" class=\"wp-block-heading\">Setup cPanel Cron Job<\/h3>\n<p>Login to your cPanel and navigate to <b>Cron jobs<\/b><\/p>\n<p><strong>Add the following settings :<\/strong><br \/>\n<strong><code>wget -q -O- http:\/\/yourdomain.com\/crm\/cron\/index<\/code><\/strong><\/p>\n<p><b>Change the URL according to your base URL<\/b><\/p>\n<ul>\n<li>Eq.\u00a0if it\u2019s on root domain you need to type only http:\/\/yourdomain.com\/cron\/index<\/li>\n<li>Eq. on subfolder \/crm you will need to type http:\/\/yourdomain.com\/crm\/cron\/index<\/li>\n<li>If your <a href=\"#\">base URL<\/a> starts with <strong>https:\/\/<\/strong>, make sure that you configure the cron job URL to start with <strong>https:\/\/<\/strong><\/li>\n<\/ul>\n<div class=\"st-alert st-alert-info\">This is CRON Job URL and not a path. Your server\u00a0needs to support wget command to call the wget command and execute. <strong>You can find your Xodox CRM installation cron job url located at Setup-&gt;Settings-&gt;Cron Job<\/strong><\/div>\n<h3 id=\"plesk\" class=\"wp-block-heading\">Setup Plesk Cron Job<\/h3>\n<p>Refer to cPanel cron job examples to get your cron URL.<\/p>\n<p>For Plesk use one of the following configurations:<\/p>\n<figure class=\"wp-block-image\"><img fetchpriority=\"high\" decoding=\"async\" class=\"wp-image-1204\" src=\"#\" alt=\"\" width=\"807\" height=\"578\" \/><\/figure>\n<p><strong>If the first example is not working for you try this config:<\/strong><\/p>\n<figure class=\"wp-block-image\"><img decoding=\"async\" class=\"wp-image-1205\" src=\"#\" alt=\"\" width=\"831\" height=\"541\" \/><\/figure>\n<h3 id=\"common-issues\" class=\"wp-block-heading\"><strong>Common issues<\/strong><\/h3>\n<h4 id=\"my-server-does-not-support-wget-command\" class=\"wp-block-heading\"><strong>My server does not support wget command?<\/strong><\/h4>\n<p>If your server does not support wget command you try one of the following commands:<\/p>\n<pre class=\"wp-block-preformatted lang:default decode:true\">php \/home\/username\/public_html\/installation_folder\/index.php cron\/index &gt;&gt; \/dev\/null<\/pre>\n<pre class=\"wp-block-preformatted lang:default decode:true\">php \/home\/username\/public_html\/installation_folder\/index.php cron\/index<\/pre>\n<p>If that doesn\u2019t work, it probably means you don\u2019t have the package php5-cli installed. On <strong>debian \/ ubuntu<\/strong> you can install this package as follows:<\/p>\n<pre class=\"wp-block-preformatted lang:default decode:true\">sudo apt-get install php5-cli<\/pre>\n<p>If you are not able to install packages, you can specify your path to php try the following command:<\/p>\n<pre class=\"wp-block-preformatted lang:default decode:true\">\/usr\/local\/bin\/php -f \/home\/username\/public_html\/installation_folder\/index.php cron index<\/pre>\n<p>Replace <strong>username<\/strong> and <strong>installation_folder<\/strong> to fit your path.<\/p>\n<p>If none of the commands are not working, you can use some free cron job service like\u00a0<a href=\"https:\/\/www.easycron.com\">https:\/\/www.easycron.com<\/a>. Mostly the free cron job services have a limit to execute every 20 minutes but it will work well too with Xodox CRM.<\/p>\n<h3 id=\"testing-the-cron-job\" class=\"wp-block-heading\">Testing the cron job<\/h3>\n<p>In order to test if your cron job config works fine after you configure it, you can create custom <a href=\"#\">staff reminder.<\/a><\/p>\n<p>From the main menu click<strong>\u00a0Customers -&gt; [Customer] -&gt; Reminders<\/strong>\u00a0tab and <strong>create a reminder for your user with the nearest date<\/strong> eq if your time is 09:50 add reminder for 09:51. Wait 5 minutes the cron job to run to notify you, you should receive a notification inside the CRM, the notification should be visible on the top right side bell.<\/p>\n<p>If you received the notification, then this means that the cron job config is properly configured.<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Cron is required to be set up for Xodox CRM if you want all features to works as expected. Setup cPanel Cron Job Login to your cPanel and navigate to Cron jobs Add the following settings : wget -q -O- http:\/\/yourdomain.com\/crm\/cron\/index Change the URL according to your base URL Eq.\u00a0if it\u2019s on root domain you need to type only http:\/\/yourdomain.com\/cron\/index Eq. on subfolder \/crm you will need to type http:\/\/yourdomain.com\/crm\/cron\/index If your base URL starts with https:\/\/, make sure that you configure the cron job URL to start with https:\/\/ This is CRON Job URL and not a path. Your server\u00a0needs to support wget command to call the wget command and execute. You can find your Xodox CRM installation cron job url located at Setup-&gt;Settings-&gt;Cron Job Setup Plesk Cron Job Refer to cPanel cron job examples to get your cron URL. For Plesk use one of the following configurations: If the first example is not working for you try this config: Common issues My server does not support wget command? If your server does not support wget command you try one of the following commands: php \/home\/username\/public_html\/installation_folder\/index.php cron\/index &gt;&gt; \/dev\/null php \/home\/username\/public_html\/installation_folder\/index.php cron\/index If that doesn\u2019t work, it probably means you don\u2019t have the package php5-cli installed. On debian \/ ubuntu you can install this package as follows: sudo apt-get install php5-cli If you are not able to install packages, you can specify your path to php try the following command: \/usr\/local\/bin\/php -f \/home\/username\/public_html\/installation_folder\/index.php cron index Replace username and installation_folder to fit your path. If none of the commands are not working, you can use some free cron job service like\u00a0https:\/\/www.easycron.com. Mostly the free cron job services have a limit to execute every 20 minutes but it will work well too with Xodox CRM. Testing the cron job In order to test if your cron job config works fine after you configure it, you can create custom staff reminder. From the main menu click\u00a0Customers -&gt; [Customer] -&gt; Reminders\u00a0tab and create a reminder for your user with the nearest date eq if your time is 09:50 add reminder for 09:51. Wait 5 minutes the cron job to run to notify you, you should receive a notification inside the CRM, the notification should be visible on the top right side bell. If you received the notification, then this means that the cron job config is properly configured.<\/p>","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"doc_category":[39],"doc_tag":[],"class_list":["post-1457","docs","type-docs","status-publish","hentry","doc_category-setup-configuration"],"acf":[],"year_month":"2026-04","word_count":451,"total_views":0,"reactions":{"happy":0,"normal":0,"sad":0},"author_info":{"name":"help-xodox","author_nicename":"help-xodox","author_url":"https:\/\/help.xodox.in\/pt\/author\/help-xodox\/"},"doc_category_info":[{"term_name":"Setup &amp; Configuration","term_url":"https:\/\/help.xodox.in\/pt\/docs-category\/setup-configuration\/"}],"doc_tag_info":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Setup cPanel Cron Job - My CMS<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/help.xodox.in\/pt\/docs\/setup-cpanel-cron-job\/\" \/>\n<meta property=\"og:locale\" content=\"pt_PT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Setup cPanel Cron Job - My CMS\" \/>\n<meta property=\"og:description\" content=\"Cron is required to be set up for Xodox CRM if you want all features to works as expected. Setup cPanel Cron Job Login to your cPanel and navigate to Cron jobs Add the following settings : wget -q -O- http:\/\/yourdomain.com\/crm\/cron\/index Change the URL according to your base URL Eq.\u00a0if it\u2019s on root domain you need to type only http:\/\/yourdomain.com\/cron\/index Eq. on subfolder \/crm you will need to type http:\/\/yourdomain.com\/crm\/cron\/index If your base URL starts with https:\/\/, make sure that you configure the cron job URL to start with https:\/\/ This is CRON Job URL and not a path. Your server\u00a0needs to support wget command to call the wget command and execute. You can find your Xodox CRM installation cron job url located at Setup-&gt;Settings-&gt;Cron Job Setup Plesk Cron Job Refer to cPanel cron job examples to get your cron URL. For Plesk use one of the following configurations: If the first example is not working for you try this config: Common issues My server does not support wget command? If your server does not support wget command you try one of the following commands: php \/home\/username\/public_html\/installation_folder\/index.php cron\/index &gt;&gt; \/dev\/null php \/home\/username\/public_html\/installation_folder\/index.php cron\/index If that doesn\u2019t work, it probably means you don\u2019t have the package php5-cli installed. On debian \/ ubuntu you can install this package as follows: sudo apt-get install php5-cli If you are not able to install packages, you can specify your path to php try the following command: \/usr\/local\/bin\/php -f \/home\/username\/public_html\/installation_folder\/index.php cron index Replace username and installation_folder to fit your path. If none of the commands are not working, you can use some free cron job service like\u00a0https:\/\/www.easycron.com. Mostly the free cron job services have a limit to execute every 20 minutes but it will work well too with Xodox CRM. Testing the cron job In order to test if your cron job config works fine after you configure it, you can create custom staff reminder. From the main menu click\u00a0Customers -&gt; [Customer] -&gt; Reminders\u00a0tab and create a reminder for your user with the nearest date eq if your time is 09:50 add reminder for 09:51. Wait 5 minutes the cron job to run to notify you, you should receive a notification inside the CRM, the notification should be visible on the top right side bell. If you received the notification, then this means that the cron job config is properly configured.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/help.xodox.in\/pt\/docs\/setup-cpanel-cron-job\/\" \/>\n<meta property=\"og:site_name\" content=\"My CMS\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-09T14:58:35+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Tempo estimado de leitura\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/help.xodox.in\/docs\/setup-cpanel-cron-job\/\",\"url\":\"https:\/\/help.xodox.in\/docs\/setup-cpanel-cron-job\/\",\"name\":\"Setup cPanel Cron Job - My CMS\",\"isPartOf\":{\"@id\":\"https:\/\/help.xodox.in\/#website\"},\"datePublished\":\"2024-11-19T09:37:39+00:00\",\"dateModified\":\"2024-12-09T14:58:35+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/help.xodox.in\/docs\/setup-cpanel-cron-job\/#breadcrumb\"},\"inLanguage\":\"pt-PT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/help.xodox.in\/docs\/setup-cpanel-cron-job\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/help.xodox.in\/docs\/setup-cpanel-cron-job\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/help.xodox.in\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Setup cPanel Cron Job\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/help.xodox.in\/#website\",\"url\":\"https:\/\/help.xodox.in\/\",\"name\":\"My CMS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/help.xodox.in\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/help.xodox.in\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"pt-PT\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/help.xodox.in\/#organization\",\"name\":\"My CMS\",\"url\":\"https:\/\/help.xodox.in\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-PT\",\"@id\":\"https:\/\/help.xodox.in\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/help.xodox.in\/wp-content\/uploads\/2024\/10\/Xodox-Logo-01-2.png\",\"contentUrl\":\"https:\/\/help.xodox.in\/wp-content\/uploads\/2024\/10\/Xodox-Logo-01-2.png\",\"width\":573,\"height\":192,\"caption\":\"My CMS\"},\"image\":{\"@id\":\"https:\/\/help.xodox.in\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Setup cPanel Cron Job - My CMS","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/help.xodox.in\/pt\/docs\/setup-cpanel-cron-job\/","og_locale":"pt_PT","og_type":"article","og_title":"Setup cPanel Cron Job - My CMS","og_description":"Cron is required to be set up for Xodox CRM if you want all features to works as expected. Setup cPanel Cron Job Login to your cPanel and navigate to Cron jobs Add the following settings : wget -q -O- http:\/\/yourdomain.com\/crm\/cron\/index Change the URL according to your base URL Eq.\u00a0if it\u2019s on root domain you need to type only http:\/\/yourdomain.com\/cron\/index Eq. on subfolder \/crm you will need to type http:\/\/yourdomain.com\/crm\/cron\/index If your base URL starts with https:\/\/, make sure that you configure the cron job URL to start with https:\/\/ This is CRON Job URL and not a path. Your server\u00a0needs to support wget command to call the wget command and execute. You can find your Xodox CRM installation cron job url located at Setup-&gt;Settings-&gt;Cron Job Setup Plesk Cron Job Refer to cPanel cron job examples to get your cron URL. For Plesk use one of the following configurations: If the first example is not working for you try this config: Common issues My server does not support wget command? If your server does not support wget command you try one of the following commands: php \/home\/username\/public_html\/installation_folder\/index.php cron\/index &gt;&gt; \/dev\/null php \/home\/username\/public_html\/installation_folder\/index.php cron\/index If that doesn\u2019t work, it probably means you don\u2019t have the package php5-cli installed. On debian \/ ubuntu you can install this package as follows: sudo apt-get install php5-cli If you are not able to install packages, you can specify your path to php try the following command: \/usr\/local\/bin\/php -f \/home\/username\/public_html\/installation_folder\/index.php cron index Replace username and installation_folder to fit your path. If none of the commands are not working, you can use some free cron job service like\u00a0https:\/\/www.easycron.com. Mostly the free cron job services have a limit to execute every 20 minutes but it will work well too with Xodox CRM. Testing the cron job In order to test if your cron job config works fine after you configure it, you can create custom staff reminder. From the main menu click\u00a0Customers -&gt; [Customer] -&gt; Reminders\u00a0tab and create a reminder for your user with the nearest date eq if your time is 09:50 add reminder for 09:51. Wait 5 minutes the cron job to run to notify you, you should receive a notification inside the CRM, the notification should be visible on the top right side bell. If you received the notification, then this means that the cron job config is properly configured.","og_url":"https:\/\/help.xodox.in\/pt\/docs\/setup-cpanel-cron-job\/","og_site_name":"My CMS","article_modified_time":"2024-12-09T14:58:35+00:00","twitter_card":"summary_large_image","twitter_misc":{"Tempo estimado de leitura":"2 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/help.xodox.in\/docs\/setup-cpanel-cron-job\/","url":"https:\/\/help.xodox.in\/docs\/setup-cpanel-cron-job\/","name":"Setup cPanel Cron Job - My CMS","isPartOf":{"@id":"https:\/\/help.xodox.in\/#website"},"datePublished":"2024-11-19T09:37:39+00:00","dateModified":"2024-12-09T14:58:35+00:00","breadcrumb":{"@id":"https:\/\/help.xodox.in\/docs\/setup-cpanel-cron-job\/#breadcrumb"},"inLanguage":"pt-PT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/help.xodox.in\/docs\/setup-cpanel-cron-job\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/help.xodox.in\/docs\/setup-cpanel-cron-job\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/help.xodox.in\/"},{"@type":"ListItem","position":2,"name":"Setup cPanel Cron Job"}]},{"@type":"WebSite","@id":"https:\/\/help.xodox.in\/#website","url":"https:\/\/help.xodox.in\/","name":"My CMS","description":"","publisher":{"@id":"https:\/\/help.xodox.in\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/help.xodox.in\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"pt-PT"},{"@type":"Organization","@id":"https:\/\/help.xodox.in\/#organization","name":"My CMS","url":"https:\/\/help.xodox.in\/","logo":{"@type":"ImageObject","inLanguage":"pt-PT","@id":"https:\/\/help.xodox.in\/#\/schema\/logo\/image\/","url":"https:\/\/help.xodox.in\/wp-content\/uploads\/2024\/10\/Xodox-Logo-01-2.png","contentUrl":"https:\/\/help.xodox.in\/wp-content\/uploads\/2024\/10\/Xodox-Logo-01-2.png","width":573,"height":192,"caption":"My CMS"},"image":{"@id":"https:\/\/help.xodox.in\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/help.xodox.in\/pt\/wp-json\/wp\/v2\/docs\/1457","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/help.xodox.in\/pt\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/help.xodox.in\/pt\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/help.xodox.in\/pt\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/help.xodox.in\/pt\/wp-json\/wp\/v2\/comments?post=1457"}],"version-history":[{"count":0,"href":"https:\/\/help.xodox.in\/pt\/wp-json\/wp\/v2\/docs\/1457\/revisions"}],"wp:attachment":[{"href":"https:\/\/help.xodox.in\/pt\/wp-json\/wp\/v2\/media?parent=1457"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/help.xodox.in\/pt\/wp-json\/wp\/v2\/doc_category?post=1457"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/help.xodox.in\/pt\/wp-json\/wp\/v2\/doc_tag?post=1457"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}