Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
osticket
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
docker
osticket
Commits
4e4cdd3c
Commit
4e4cdd3c
authored
11 years ago
by
Jared Hancock
Browse files
Options
Downloads
Patches
Plain Diff
Advertise new prerequisites
parent
5aad4829
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/upgrader/prereq.inc.php
+2
-2
2 additions, 2 deletions
include/upgrader/prereq.inc.php
setup/inc/install-prereq.inc.php
+3
-1
3 additions, 1 deletion
setup/inc/install-prereq.inc.php
with
5 additions
and
3 deletions
include/upgrader/prereq.inc.php
+
2
−
2
View file @
4e4cdd3c
...
...
@@ -15,9 +15,9 @@ if(!defined('OSTSCPINC') || !$thisstaff || !$thisstaff->isAdmin()) die('Access D
These items are necessary in order to run the latest version of osTicket.
<ul
class=
"progress"
>
<li
class=
"
<?php
echo
$upgrader
->
check_php
()
?
'yes'
:
'no'
;
?>
"
>
PHP v
4
.3 or greater - (
<small><b>
<?php
echo
PHP_VERSION
;
?>
</b></small>
)
</li>
PHP v
5
.3 or greater - (
<small><b>
<?php
echo
PHP_VERSION
;
?>
</b></small>
)
</li>
<li
class=
"
<?php
echo
$upgrader
->
check_mysql
()
?
'yes'
:
'no'
;
?>
"
>
MySQL v
4.4
or greater - (
<small><b>
<?php
echo
extension_loaded
(
'mysql'
)
?
'module loaded'
:
'missing!'
;
?>
</b></small>
)
</li>
MySQL v
5.0
or greater - (
<small><b>
<?php
echo
extension_loaded
(
'mysql'
)
?
'module loaded'
:
'missing!'
;
?>
</b></small>
)
</li>
</ul>
<h3>
Highly Recommended:
</h3>
We highly recommend that you follow the steps below.
...
...
This diff is collapsed.
Click to expand it.
setup/inc/install-prereq.inc.php
+
3
−
1
View file @
4e4cdd3c
...
...
@@ -23,9 +23,11 @@ if(!defined('SETUPINC')) die('Kwaheri!');
You can use osTicket without these, but you may not be able to use all features.
<ul
class=
"progress"
>
<li
class=
"
<?php
echo
extension_loaded
(
'gd'
)
?
'yes'
:
'no'
;
?>
"
>
Gdlib extension
</li>
<li
class=
"
<?php
echo
extension_loaded
(
'imap'
)
?
'yes'
:
'no'
;
?>
"
>
PHP IMAP extension
</li>
<li
class=
"
<?php
echo
extension_loaded
(
'imap'
)
?
'yes'
:
'no'
;
?>
"
>
PHP IMAP extension
.
<em>
Required for mail fetching
</em>
</li>
<li
class=
"
<?php
echo
extension_loaded
(
'xml'
)
?
'yes'
:
'no'
;
?>
"
>
PHP XML extension (for HTML email processing, and XML API)
</li>
<li
class=
"
<?php
echo
extension_loaded
(
'json'
)
?
'yes'
:
'no'
;
?>
"
>
PHP JSON extension (faster performance)
</li>
<li
class=
"
<?php
echo
extension_loaded
(
'gettext'
)
?
'yes'
:
'no'
;
?>
"
>
Gettext is used for translations (faster performance)
</li>
<li
class=
"
<?php
echo
extension_loaded
(
'mbstring'
)
?
'yes'
:
'no'
;
?>
"
>
Mbstring is
<b>
strongly
</b>
recommended for all installations
</li>
</ul>
<div
id=
"bar"
>
<form
method=
"post"
action=
"install.php"
>
...
...
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