Posts: 2
Threads: 1
Joined: Jul 2012
It never works. type in my username and password and i click submit and it doesn't log me in. If i type in an incorrect username & password, it comes up with an error message that i typed it wrong. If I typed it correctly, no messages comes up and I cant access admin area!!
I installed the script fine I followed the instructions and cmodded commentics folder and the cache folder to 777.
If I click on forogt passoword and reset it , It still wont let me log in!
Help i dont know what to do
Posts: 2,905
Threads: 59
Joined: Jun 2010
It could be that your site has a problem with sessions.
Can you try the following. Create a PHP file with this inside:
PHP Code:
<?php
session_start();
?>
<html>
<head>
<title>Session</title>
</head>
<body>
<h1>Session</h1>
<?php
if (session_id() != '') {
echo "Session is available.";
} else {
echo "Session is not available.";
}
?>
</body>
</html>
Upload it to your website and view the file in your web browser.
For example, if you named the file checksession.php go to yoursite.com/checksession.php
What does it say?
Have
you completed
the interview?
Posts: 2,905
Threads: 59
Joined: Jun 2010
Also, I don't recommend using the 777 permission. That would normally give read, write and execute permissions to everyone on the net.
Have
you completed
the interview?
Posts: 2
Threads: 1
Joined: Jul 2012
Posts: 7
Threads: 1
Joined: Jul 2012
same problem here.http://www.commentics.org/forum/showthread.php?tid=618
Posts: 2,905
Threads: 59
Joined: Jun 2010
fatduckling, how did you fix it? Was it something your host did?
Have
you completed
the interview?
Posts: 20
Threads: 5
Joined: Aug 2011
(27-Jul-2012, 12:39 PM)Steven Wrote: fatduckling, how did you fix it? Was it something your host did?
Yes I now have the same problem. How did you fix it?
If at first you don't succeed then so much for parachuting!
Posts: 20
Threads: 5
Joined: Aug 2011
And I uploaded the sessions PHP file and it says 'session is available'
If at first you don't succeed then so much for parachuting!
Posts: 2,905
Threads: 59
Joined: Jun 2010
If the URL of the login screen ends in /admin/ can you try /admin/index.php
Or vice-versa.
Have
you completed
the interview?
Posts: 2,905
Threads: 59
Joined: Jun 2010
Also, have you tried clearing your cookies?
Have
you completed
the interview?