Hey guys,When I create a ticket, whether it's in the Staff menu or as a client, the ticket form always opens another instance in itself. I attached a screenshot.These are my install details (i use nginx, not httpd):Server Information

osTicket Version

v1.8.1

Server Software

httpd/2.0

PHP Version

5.3.3-7+squeeze18

MySQL Version

5.5.35

PHP Extensions

gdlib

Used for image manipulation and PDF printing

imap

Used for email fetching

xml

XML API

xml-dom

Used for HTML email processing

json

Improves performance creating and processing JSON

gettext

Improves performance for non US-English configurations

mbstring

Highly recommended for non western european language content

Database Usage

Database Space Used

1.86 MiB

Database Space for Attachments

0.01 MiBI use the Browsers Firefox 27.0.1, midori 0.5.7 and Chromium 32.0.1700.107-1 on Arch Linux x86_64 (Kernel 3.12.9-2-ARCH) and all show the same problem. URL for you to check if it's a server related issue: ticket crunch me uk (replace with .)

Bildschirmfoto - 20.02.2014 - 13:51:28.png

I think that you will find the solution to your issue in this thread.http://forum.osticket.com/d/discussion//1-8-02-strange-issueSearch is your friend. :)  I had to actually search for it myself... but it also probably helped that I remembered seeing this before.  Great job on posting the image btw... thats what clued me in on the fact that I had seen this before.Oh and the devs would probably kick me for not mentioning that "WE DON'T (OFFICIALLY) SUPPORT NGINX YET." -Jared

9 days later

Okay, since nginx isn't supported atm, I set up a reverse proxy with Apache2. For anyone interested, here's my proxy config for nginx:server {       listen 1.2.3.4;       server_name ticket.mysite.me.uk;       root /srv/apache2/ticket.mysite.me.uk;       index index.php index.html;       location / {                proxy_pass http://127.0.0.1;                include /etc/nginx/proxy_params;       }       location ~* \.(js|css|jpg|jpeg|gif|png|svg|ico|pdf|html|htm)$ {       }}and here's the Apache config:<VirtualHost 127.0.0.1>    ServerName ticket.mysite.me.uk    DocumentRoot /srv/apache2/ticket.mysite.me.uk    <Directory /srv/apache2/ticket.mysite.me.uk>        Options Indexes FollowSymLinks MultiViews        AllowOverride None        Order allow,deny        allow from all    </Directory>    ErrorLog ${APACHE_LOG_DIR}/error.log    # Possible values include: debug, info, notice, warn, error, crit,    # alert, emerg.    LogLevel warn    CustomLog ${APACHE_LOG_DIR}/access.log combined</VirtualHost>

Write a Reply...