Page 1 of 1

Direct link to created a case.

Posted: Sat Oct 18, 2014 11:29 am
by jones
Script URL:
Version of script:
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:

Write your message below:
When I want to make a direct link on my website. As customers can tap to create a case.
(Have I inserted the following link: http://rma.it-webshop.dk/index.php?a=add)

But when I click on the link, it opens the page: http://rma.it-webshop.dk/index.php
What is the error?

Jones

Re: Direct link to created a case.

Posted: Sun Oct 19, 2014 9:08 am
by Klemen
Your link works fine for me?

Also, you are using a HESK mod that is not officially supported by me, so you should contact the mod author for any problems related with that mod.

Re: Direct link to created a case.

Posted: Sun Oct 19, 2014 4:05 pm
by mkoch227
Your link works fine for me as well, so it is not a NuMods-related issue.

Re: Direct link to created a case.

Posted: Sun Oct 19, 2014 6:48 pm
by jones
Hello Klemen & Mike,

I have made a button with html link on my website .: http://it-webshop.dk/retur
The link at the bottom that says: "Jeg godkender og accepter"
Where I have inserted the link: http://rma.it-webshop.dk/index.php?a=add

But it only opens the page: http://rma.it-webshop.dk/

Re: Direct link to created a case.

Posted: Sun Oct 19, 2014 11:21 pm
by mkoch227
My guess is that since you're wrapping the button in a form, it's resulting in the browser stripping out everything after the ? mark. Try using this code block instead:

Code: Select all

<a href="http://rma.it-webshop.dk/index.php?a=add"><button>Jeg godkender og accepter</button></a>

Re: Direct link to created a case.

Posted: Mon Oct 20, 2014 5:53 am
by jones
Hi Mike,

Thanks - it works:-)