Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
1a96bc0f
Commit
1a96bc0f
authored
10 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Fix: Bad url for cron
Fix: must use html syntax, not xml
parent
0ca72dcf
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
htdocs/core/lib/cron.lib.php
+2
-2
2 additions, 2 deletions
htdocs/core/lib/cron.lib.php
htdocs/cron/list.php
+4
-4
4 additions, 4 deletions
htdocs/cron/list.php
htdocs/public/cron/cron_run_jobs.php
+4
-4
4 additions, 4 deletions
htdocs/public/cron/cron_run_jobs.php
with
10 additions
and
10 deletions
htdocs/core/lib/cron.lib.php
+
2
−
2
View file @
1a96bc0f
...
...
@@ -93,10 +93,10 @@ function dol_print_cron_urls()
// Cron launch
print
'<u>'
.
$langs
->
trans
(
"URLToLaunchCronJobs"
)
.
':</u><br>'
;
$url
=
$urlwithroot
.
'/public/cron/cron_run_jobs.php'
.
(
empty
(
$conf
->
global
->
CRON_KEY
)
?
''
:
'
?
securitykey='
.
$conf
->
global
->
CRON_KEY
.
'&'
)
.
'userlogin='
.
$user
->
login
;
$url
=
$urlwithroot
.
'/public/cron/cron_run_jobs.php
?
'
.
(
empty
(
$conf
->
global
->
CRON_KEY
)
?
''
:
'securitykey='
.
$conf
->
global
->
CRON_KEY
.
'&'
)
.
'userlogin='
.
$user
->
login
;
print
img_picto
(
''
,
'object_globe.png'
)
.
' <a href="'
.
$url
.
'" target="_blank">'
.
$url
.
"</a><br>
\n
"
;
print
' '
.
$langs
->
trans
(
"OrToLaunchASpecificJob"
)
.
'<br>'
;
$url
=
$urlwithroot
.
'/public/cron/cron_run_jobs.php'
.
(
empty
(
$conf
->
global
->
CRON_KEY
)
?
''
:
'
?
securitykey='
.
$conf
->
global
->
CRON_KEY
.
'&'
)
.
'userlogin='
.
$user
->
login
.
'&id=cronjobid'
;
$url
=
$urlwithroot
.
'/public/cron/cron_run_jobs.php
?
'
.
(
empty
(
$conf
->
global
->
CRON_KEY
)
?
''
:
'securitykey='
.
$conf
->
global
->
CRON_KEY
.
'&'
)
.
'userlogin='
.
$user
->
login
.
'&id=cronjobid'
;
print
img_picto
(
''
,
'object_globe.png'
)
.
' <a href="'
.
$url
.
'" target="_blank">'
.
$url
.
"</a><br>
\n
"
;
print
'<br>'
;
...
...
This diff is collapsed.
Click to expand it.
htdocs/cron/list.php
+
4
−
4
View file @
1a96bc0f
...
...
@@ -123,13 +123,13 @@ print $langs->trans('CronInfo');
if
(
$action
==
'delete'
)
{
print
$form
->
formconfirm
(
$_SERVER
[
'PHP_SELF'
]
.
"?id="
.
$id
.
'&status='
.
$status
,
$langs
->
trans
(
"CronDelete"
),
$langs
->
trans
(
"CronConfirmDelete"
),
"confirm_delete"
,
''
,
''
,
1
);
}
if
(
$action
==
'execute'
)
{
print
$form
->
formconfirm
(
$_SERVER
[
'PHP_SELF'
]
.
"?id="
.
$id
.
'&status='
.
$status
,
$langs
->
trans
(
"CronExecute"
),
$langs
->
trans
(
"CronConfirmExecute"
),
"confirm_execute"
,
''
,
''
,
1
);
}
// liste des jobs creer
...
...
@@ -218,13 +218,13 @@ if (count($object->lines) > 0)
print
$langs
->
trans
(
'CronObject'
)
.
':'
.
$line
->
objectname
.
'<BR>'
;
print
$langs
->
trans
(
'CronMethod'
)
.
':'
.
$line
->
methodename
;
if
(
!
empty
(
$line
->
params
))
{
print
'<
BR/
>'
.
$langs
->
trans
(
'CronArgs'
)
.
':'
.
$line
->
params
;
print
'<
br
>'
.
$langs
->
trans
(
'CronArgs'
)
.
':'
.
$line
->
params
;
}
}
elseif
(
$line
->
jobtype
==
'command'
)
{
print
$langs
->
trans
(
'CronCommand'
)
.
':'
.
dol_trunc
(
$line
->
command
);
if
(
!
empty
(
$line
->
params
))
{
print
'<
BR/
>'
.
$langs
->
trans
(
'CronArgs'
)
.
':'
.
$line
->
params
;
print
'<
br
>'
.
$langs
->
trans
(
'CronArgs'
)
.
':'
.
$line
->
params
;
}
}
print
'</td>'
;
...
...
This diff is collapsed.
Click to expand it.
htdocs/public/cron/cron_run_jobs.php
+
4
−
4
View file @
1a96bc0f
...
...
@@ -59,19 +59,19 @@ $langs->load("cron");
$key
=
GETPOST
(
'securitykey'
,
'alpha'
);
if
(
empty
(
$key
))
{
echo
'
s
ecuritykey is require'
;
echo
'
S
ecuritykey is require
d. Check setup of cron jobs module.
'
;
exit
;
}
if
(
$key
!=
$conf
->
global
->
CRON_KEY
)
{
echo
'
s
ecuritykey is wrong'
;
echo
'
S
ecuritykey is wrong
.
'
;
exit
;
}
// Check the key, avoid that a stranger starts cron
$userlogin
=
GETPOST
(
'userlogin'
,
'alpha'
);
if
(
empty
(
$userlogin
))
{
echo
'
u
serlogin is require'
;
echo
'
U
serlogin is require
d.
'
;
exit
;
}
require_once
DOL_DOCUMENT_ROOT
.
'/user/class/user.class.php'
;
...
...
@@ -175,7 +175,7 @@ if (is_array($object->lines) && (count($object->lines)>0))
}
else
{
echo
"No active jobs found"
;
echo
"
Result:
No active jobs found
.
"
;
}
$db
->
close
();
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment