golden hour
/home/doctorbruno/public_html/taeionline.com/support/setup
⬆️ Go Up
Upload
File/Folder
Size
Actions
ajax.php
974 B
Del
OK
cli
-
Del
OK
css
-
Del
OK
images
-
Del
OK
inc
-
Del
OK
index.php
33 B
Del
OK
install.php
4.76 KB
Del
OK
js
-
Del
OK
scripts
-
Del
OK
setup.inc.php
1.57 KB
Del
OK
test
-
Del
OK
tips.php
2.04 KB
Del
OK
upgrade.php
105 B
Del
OK
Edit: ajax.php
<?php /********************************************************************* ajax.php Ajax utils for the installer interface. Peter Rotich <peter@osticket.com> Copyright (c) 2006-2013 osTicket http://www.osticket.com Released under the GNU General Public License WITHOUT ANY WARRANTY. See LICENSE.TXT for details. vim: expandtab sw=4 ts=4 sts=4: **********************************************************************/ require('setup.inc.php'); if(!defined('INCLUDE_DIR')) Http::response(500, __('Server configuration error')); require_once INCLUDE_DIR.'/class.dispatcher.php'; require_once INCLUDE_DIR.'/class.ajax.php'; $dispatcher = patterns('', url('^/help/', patterns('ajax.tips.php:HelpTipAjaxAPI', url_get('^tips/(?P<namespace>[\w_.]+)$', 'getTipsJson'), url_get('^(?P<lang>[\w_]+)?/tips/(?P<namespace>[\w_.]+)$', 'getTipsJsonForLang') )) ); print $dispatcher->resolve(Osticket::get_path_info()); ?>
Save