Page 1 of 1

Submission Return Page Problem

Posted: Fri Jun 21, 2013 1:56 pm
by Ronnie
Script URL: http://www.k4ghg.com/linkman/
Version of script: 1.7
Hosting company: Qth.com
URL of phpinfo.php: http://k4ghg.com/linkman/phptest.php
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
CHMOD, Add Site, Return Site, New Link, settings, configuration

Write your message below:
I am having some problems when the Add Link button is pressed. It redirects to one of my links and I do not recieve any information that an exchange link was requested. I serached my folder and the chmod's are set correctly and the settings file seems to be correct.

My server log has the following three errors and I am not certain why:
1) SoftException in Application.cpp:256: File linkman/approve.php is writeable by group - NOTE: CHMOD = 644
2) File does not exist: linkman/register.php, referer: http://www.k4ghg.com/linkman/
3) client denied by server configuration: linkman/error_log

Any ideas or suggestion are appreciated. take Care... Ronnie

Re: Submission Return Page Problem

Posted: Sun Jun 23, 2013 6:41 pm
by Klemen
The problem is that you have an open <form tag above the "Add website" form:

Code: Select all

<form action='http://www.topradiosites.com/source/vote.php?ID=890' method='post'>
That form is not closed with a </form> tag so when you click the "Add link" button it goes to the

Code: Select all

http://www.topradiosites.com/source/vote.php?ID=890
page instead of to LinkMan.

The solution is to add

Code: Select all

</form>
just before the "Add a link" form in your HTML.

Re: Submission Return Page Problem

Posted: Sun Jun 23, 2013 7:22 pm
by Ronnie
Thanks... I have been losing my eyesight trying to track down the problem. I appreciate your help. Ronnie