This is the community forum. For a developer response use the Client Area.
Follow us on Facebook, Twitter and YouTube!

setting the page for commentics
#1

Hello;

please excuse me for my English
and thank you for replay
 
By preview or add comment, commentics return to home page by this action
<form id="commenticsclass="cmtx_formmethod="postaction="http://www.mysite.it
#cmtx_formname="commentics">
 
instead return to comments page commenti.php; the action should be
<form id="commenticsclass="cmtx_formmethod="postaction="http://www.mysite.it
/commenti.php#cmtx_formname="commentics">
 
Many thanks; have a good day
Reply
#2

Hi,

It looks like $_SERVER['REQUEST_URI'] isn't set properly on your server. Are you on a Windows server?

Try opening the /upload/includes/commentics.php file and after this line:

PHP Code:
<?php 
@ini_set('default_charset', 'utf-8');

Add this:

PHP Code:
<?php 
if (!isset($_SERVER['REQUEST_URI'])) {
    $_SERVER['REQUEST_URI'] = substr($_SERVER['PHP_SELF'], 1);

    if (isset($_SERVER['QUERY_STRING'])) {
        $_SERVER['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING'];
    }
}

Have you completed the interview?
Reply
#3

ok, bravo, many thanks
Reply


Possibly Related Threads…
Thread / Author Replies Views Last Post
Last Post by Steven
04-Jul-2020, 06:46 PM
Last Post by MattyP
13-Apr-2020, 08:33 PM
Last Post by kbadmin
28-May-2019, 07:16 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)