Unable to execute cron.php via SSH nor CRONTAB
I recently hosted my website using Magento, upon setting up my cron.php i get the following output :
/home/xxx/webapps/abc/cron.php: line 1: ?php
: No such file or directory
/home/xxx/webapps/abc/cron.php: line 2: /**
: No such file or directory
/home/xxx/webapps/abc/cron.php: line 3: bin: command not found
/home/xxx/webapps/abc/cron.php: line 4: $'*r': command not found
/home/xxx/webapps/abc/cron.php: line 5: bin: command not found
/home/xxx/webapps/abc/cron.php: line 6: $'*r': command not found
/home/xxx/webapps/abc/cron.php: line 7: syntax error near unexpected token `('
/home/xxx/webapps/abc/cron.php: line 7: ` * This source file is subject to the Open Software License (OSL 3.0)
'
I host this on Webfaction, and it appears that this error only happen on Webfaction. My other website (using the same Magento version) which is hosted on another service runs just fine.
Even after i removed the following lines on cron.php, it still does not work:
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magento.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magento.com for more information.
*
* @category Mage
* @package Mage
* @copyright Copyright (c) 2006-2016 X.commerce, Inc. and affiliates (http://www.magento.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
I've also tried to put "shebang" just before the php opening tag like so:
#!/usr/local/bin/php
And get this result:
/usr/local/bin/php^M: bad interpreter: No such file or directory
This is what happen when i run php cron.php
I suspect that there might be something wrong with the encoding. Can anyone help me with this ?
magento-1.9 cron crontab
bumped to the homepage by Community♦ 47 secs ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
|
show 5 more comments
I recently hosted my website using Magento, upon setting up my cron.php i get the following output :
/home/xxx/webapps/abc/cron.php: line 1: ?php
: No such file or directory
/home/xxx/webapps/abc/cron.php: line 2: /**
: No such file or directory
/home/xxx/webapps/abc/cron.php: line 3: bin: command not found
/home/xxx/webapps/abc/cron.php: line 4: $'*r': command not found
/home/xxx/webapps/abc/cron.php: line 5: bin: command not found
/home/xxx/webapps/abc/cron.php: line 6: $'*r': command not found
/home/xxx/webapps/abc/cron.php: line 7: syntax error near unexpected token `('
/home/xxx/webapps/abc/cron.php: line 7: ` * This source file is subject to the Open Software License (OSL 3.0)
'
I host this on Webfaction, and it appears that this error only happen on Webfaction. My other website (using the same Magento version) which is hosted on another service runs just fine.
Even after i removed the following lines on cron.php, it still does not work:
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magento.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magento.com for more information.
*
* @category Mage
* @package Mage
* @copyright Copyright (c) 2006-2016 X.commerce, Inc. and affiliates (http://www.magento.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
I've also tried to put "shebang" just before the php opening tag like so:
#!/usr/local/bin/php
And get this result:
/usr/local/bin/php^M: bad interpreter: No such file or directory
This is what happen when i run php cron.php
I suspect that there might be something wrong with the encoding. Can anyone help me with this ?
magento-1.9 cron crontab
bumped to the homepage by Community♦ 47 secs ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Please check the path to php usingwhereis php
– rafal-kos
Sep 6 '16 at 7:08
@rafal-kos please see my edit.
– Jeremy
Sep 6 '16 at 7:11
btw whereis php return this : php: /usr/local/bin/php /usr/local/php
– Jeremy
Sep 6 '16 at 7:18
And how you are calling this cron file? You are trying to run cron.sh or cron.php?
– rafal-kos
Sep 6 '16 at 7:25
@rafal-kos cron.sh will eventually call cron.php, since calling php cron.php is not working cron.sh is also not working.
– Jeremy
Sep 6 '16 at 7:26
|
show 5 more comments
I recently hosted my website using Magento, upon setting up my cron.php i get the following output :
/home/xxx/webapps/abc/cron.php: line 1: ?php
: No such file or directory
/home/xxx/webapps/abc/cron.php: line 2: /**
: No such file or directory
/home/xxx/webapps/abc/cron.php: line 3: bin: command not found
/home/xxx/webapps/abc/cron.php: line 4: $'*r': command not found
/home/xxx/webapps/abc/cron.php: line 5: bin: command not found
/home/xxx/webapps/abc/cron.php: line 6: $'*r': command not found
/home/xxx/webapps/abc/cron.php: line 7: syntax error near unexpected token `('
/home/xxx/webapps/abc/cron.php: line 7: ` * This source file is subject to the Open Software License (OSL 3.0)
'
I host this on Webfaction, and it appears that this error only happen on Webfaction. My other website (using the same Magento version) which is hosted on another service runs just fine.
Even after i removed the following lines on cron.php, it still does not work:
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magento.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magento.com for more information.
*
* @category Mage
* @package Mage
* @copyright Copyright (c) 2006-2016 X.commerce, Inc. and affiliates (http://www.magento.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
I've also tried to put "shebang" just before the php opening tag like so:
#!/usr/local/bin/php
And get this result:
/usr/local/bin/php^M: bad interpreter: No such file or directory
This is what happen when i run php cron.php
I suspect that there might be something wrong with the encoding. Can anyone help me with this ?
magento-1.9 cron crontab
I recently hosted my website using Magento, upon setting up my cron.php i get the following output :
/home/xxx/webapps/abc/cron.php: line 1: ?php
: No such file or directory
/home/xxx/webapps/abc/cron.php: line 2: /**
: No such file or directory
/home/xxx/webapps/abc/cron.php: line 3: bin: command not found
/home/xxx/webapps/abc/cron.php: line 4: $'*r': command not found
/home/xxx/webapps/abc/cron.php: line 5: bin: command not found
/home/xxx/webapps/abc/cron.php: line 6: $'*r': command not found
/home/xxx/webapps/abc/cron.php: line 7: syntax error near unexpected token `('
/home/xxx/webapps/abc/cron.php: line 7: ` * This source file is subject to the Open Software License (OSL 3.0)
'
I host this on Webfaction, and it appears that this error only happen on Webfaction. My other website (using the same Magento version) which is hosted on another service runs just fine.
Even after i removed the following lines on cron.php, it still does not work:
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magento.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magento.com for more information.
*
* @category Mage
* @package Mage
* @copyright Copyright (c) 2006-2016 X.commerce, Inc. and affiliates (http://www.magento.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
I've also tried to put "shebang" just before the php opening tag like so:
#!/usr/local/bin/php
And get this result:
/usr/local/bin/php^M: bad interpreter: No such file or directory
This is what happen when i run php cron.php
I suspect that there might be something wrong with the encoding. Can anyone help me with this ?
magento-1.9 cron crontab
magento-1.9 cron crontab
edited Sep 6 '16 at 7:29
Jeremy
asked Sep 6 '16 at 6:39
JeremyJeremy
1034
1034
bumped to the homepage by Community♦ 47 secs ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 47 secs ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Please check the path to php usingwhereis php
– rafal-kos
Sep 6 '16 at 7:08
@rafal-kos please see my edit.
– Jeremy
Sep 6 '16 at 7:11
btw whereis php return this : php: /usr/local/bin/php /usr/local/php
– Jeremy
Sep 6 '16 at 7:18
And how you are calling this cron file? You are trying to run cron.sh or cron.php?
– rafal-kos
Sep 6 '16 at 7:25
@rafal-kos cron.sh will eventually call cron.php, since calling php cron.php is not working cron.sh is also not working.
– Jeremy
Sep 6 '16 at 7:26
|
show 5 more comments
Please check the path to php usingwhereis php
– rafal-kos
Sep 6 '16 at 7:08
@rafal-kos please see my edit.
– Jeremy
Sep 6 '16 at 7:11
btw whereis php return this : php: /usr/local/bin/php /usr/local/php
– Jeremy
Sep 6 '16 at 7:18
And how you are calling this cron file? You are trying to run cron.sh or cron.php?
– rafal-kos
Sep 6 '16 at 7:25
@rafal-kos cron.sh will eventually call cron.php, since calling php cron.php is not working cron.sh is also not working.
– Jeremy
Sep 6 '16 at 7:26
Please check the path to php using
whereis php
– rafal-kos
Sep 6 '16 at 7:08
Please check the path to php using
whereis php
– rafal-kos
Sep 6 '16 at 7:08
@rafal-kos please see my edit.
– Jeremy
Sep 6 '16 at 7:11
@rafal-kos please see my edit.
– Jeremy
Sep 6 '16 at 7:11
btw whereis php return this : php: /usr/local/bin/php /usr/local/php
– Jeremy
Sep 6 '16 at 7:18
btw whereis php return this : php: /usr/local/bin/php /usr/local/php
– Jeremy
Sep 6 '16 at 7:18
And how you are calling this cron file? You are trying to run cron.sh or cron.php?
– rafal-kos
Sep 6 '16 at 7:25
And how you are calling this cron file? You are trying to run cron.sh or cron.php?
– rafal-kos
Sep 6 '16 at 7:25
@rafal-kos cron.sh will eventually call cron.php, since calling php cron.php is not working cron.sh is also not working.
– Jeremy
Sep 6 '16 at 7:26
@rafal-kos cron.sh will eventually call cron.php, since calling php cron.php is not working cron.sh is also not working.
– Jeremy
Sep 6 '16 at 7:26
|
show 5 more comments
2 Answers
2
active
oldest
votes
How often are you trying to run the script?
Try something like this:
*/5 * * * * /bin/sh /var/www/mour/cron.sh
That should execute the cron.sh script every 5 minutes.
add a comment |
after new security patch cron.php
does not work directly for that you have to add cron.sh
file in your crontab that actually trigger cron.php differnt way and your all cron related task works
for adding cron.sh in your crontab you can use below syntax
*/5 * * * * /bin/sh magento_base_dir/cron.sh
please try and let me know
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f134861%2funable-to-execute-cron-php-via-ssh-nor-crontab%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
How often are you trying to run the script?
Try something like this:
*/5 * * * * /bin/sh /var/www/mour/cron.sh
That should execute the cron.sh script every 5 minutes.
add a comment |
How often are you trying to run the script?
Try something like this:
*/5 * * * * /bin/sh /var/www/mour/cron.sh
That should execute the cron.sh script every 5 minutes.
add a comment |
How often are you trying to run the script?
Try something like this:
*/5 * * * * /bin/sh /var/www/mour/cron.sh
That should execute the cron.sh script every 5 minutes.
How often are you trying to run the script?
Try something like this:
*/5 * * * * /bin/sh /var/www/mour/cron.sh
That should execute the cron.sh script every 5 minutes.
answered Sep 6 '16 at 10:24
Jigs ParmarJigs Parmar
1,132423
1,132423
add a comment |
add a comment |
after new security patch cron.php
does not work directly for that you have to add cron.sh
file in your crontab that actually trigger cron.php differnt way and your all cron related task works
for adding cron.sh in your crontab you can use below syntax
*/5 * * * * /bin/sh magento_base_dir/cron.sh
please try and let me know
add a comment |
after new security patch cron.php
does not work directly for that you have to add cron.sh
file in your crontab that actually trigger cron.php differnt way and your all cron related task works
for adding cron.sh in your crontab you can use below syntax
*/5 * * * * /bin/sh magento_base_dir/cron.sh
please try and let me know
add a comment |
after new security patch cron.php
does not work directly for that you have to add cron.sh
file in your crontab that actually trigger cron.php differnt way and your all cron related task works
for adding cron.sh in your crontab you can use below syntax
*/5 * * * * /bin/sh magento_base_dir/cron.sh
please try and let me know
after new security patch cron.php
does not work directly for that you have to add cron.sh
file in your crontab that actually trigger cron.php differnt way and your all cron related task works
for adding cron.sh in your crontab you can use below syntax
*/5 * * * * /bin/sh magento_base_dir/cron.sh
please try and let me know
answered Sep 6 '16 at 10:33
Murtuza ZabuawalaMurtuza Zabuawala
12.6k73362
12.6k73362
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f134861%2funable-to-execute-cron-php-via-ssh-nor-crontab%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Please check the path to php using
whereis php
– rafal-kos
Sep 6 '16 at 7:08
@rafal-kos please see my edit.
– Jeremy
Sep 6 '16 at 7:11
btw whereis php return this : php: /usr/local/bin/php /usr/local/php
– Jeremy
Sep 6 '16 at 7:18
And how you are calling this cron file? You are trying to run cron.sh or cron.php?
– rafal-kos
Sep 6 '16 at 7:25
@rafal-kos cron.sh will eventually call cron.php, since calling php cron.php is not working cron.sh is also not working.
– Jeremy
Sep 6 '16 at 7:26