Chnage Admin Url

paypal1352

New Member
YetiShare User
Wurlie User
Mar 2, 2012
297
2
0
yes its in the master config file, just change it there and then change the directory name manually after to match
 

faridadobani5832

New Member
YetiShare User
Mar 28, 2016
17
0
1
I changed
Code:
// admin paths
define('ADMIN_FOLDER_NAME', 'admin');
to
Code:
// admin paths
define('ADMIN_FOLDER_NAME', 'newadmin');
and edited crontab to
Code:
#commented out old cron
#0 0 * * * php /path/to/your/install/admin/tasks/auto_prune.cron.php >> /dev/null 2>&1
#0 0 * * * php /path/to/your/install/admin/tasks/create_internal_notifications.cron.php >> /dev/null 2>&1
#0 * * * * php /path/to/your/install/admin/tasks/delete_redundant_files.cron.php >> /dev/null 2>&1
#0 0 * * * php /path/to/your/install/admin/tasks/downgrade_accounts.cron.php >> /dev/null 2>&1
#*/5 * * * * php /path/to/your/install/admin/tasks/process_file_queue.cron.php >> /dev/null 2>&1
#0 1 * * * php /path/to/your/install/admin/tasks/create_email_notifications.cron.php >> /dev/null 2>&1

0 0 * * * php /path/to/your/install/newadmin/tasks/auto_prune.cron.php >> /dev/null 2>&1
0 0 * * * php /path/to/your/install/newadmin/tasks/create_internal_notifications.cron.php >> /dev/null 2>&1
0 * * * * php /path/to/your/install/newadmin/tasks/delete_redundant_files.cron.php >> /dev/null 2>&1
0 0 * * * php /path/to/your/install/newadmin/tasks/downgrade_accounts.cron.php >> /dev/null 2>&1
*/5 * * * * php /path/to/your/install/newadmin/tasks/process_file_queue.cron.php >> /dev/null 2>&1
0 1 * * * php /path/to/your/install/newadmin/tasks/create_email_notifications.cron.php >> /dev/null 2>&1
Is This All?