Change admin folder name

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
davva
Posts: 1
Joined: Wed Oct 06, 2010 11:19 am

Change admin folder name

Post by davva »

Version of script: 2.2

#1
Hi there, I'm wondering if it is possible to rename the admin folder. Would it be sufficient to search/replace the relevant text in the .php files or does it also need some database changes?

#2
I'm looking for a way to auto fill in the name and email fields whenever someone (non-registered user) opens a new ticket, preferably by extracting the information from a cookie (this would be a cookie I have set earlier). Is this possible?

Thanks!
Klemen
Site Admin
Posts: 10145
Joined: Fri Feb 11, 2005 4:04 pm

Re: Change admin folder name

Post by Klemen »

Like the "READ THIS BEFORE POSTING" topic says almost anything is possible, you just need to either have or hire someone with PHP knowledge. Most of the "is this possible" type of questions are out of the scope of my free support here.

#1 that should do it, try it and see if it works.

#2 possible sure, but such customizations are out of the scope of my support.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
WinAmp
Posts: 1
Joined: Wed Nov 17, 2010 7:48 am

Re: Change admin folder name

Post by WinAmp »

that's my problem too.

thanks for sharing some information about that.
timschulte
Posts: 3
Joined: Sat Dec 11, 2010 7:04 am

Re: Change admin folder name

Post by timschulte »

Not sure if this will help, but if your concerned about people trying to break into the admin area you could just deny access to everyone but IP's that you use.

On a linux server you do this vi .htaccess if your host allows overrides

create a .htaccess file in the admin folder with this in it

<Limit GET POST>
deny from all
allow from xxx.xxx.xxx.xxx
allow from xxx.xxx.xxx.
</Limit>

just plug in your ip where the xxx.xxx.xxx.xxx is, notice you can leave off the last set of digits and allow the entire class C access.


Tim
Post Reply