How should I "check whether the .htaccess file is working" ??

Nevermind, I fixed it. Now there's one more issue: i have multiple php pages that use the cutenews script BUT the disqus comment counter seems to work only on one of them. In

mysite.com/index.php

i see the posts with the disqus comment counter. But in

mysite.com/index-2.php

the counter does not appear. While in


mysite.com/index-3.php

the counter appears in some posts but not in everyone of them. The code in "index"  "index-2" and  "index-3"  is the same, i don't really understand this issue. Any ideas?

I mean, THE SAME post HAS its comment counter if shown through "index.php", and it HAS NOT if you see it through "index-2.php".
How's that possible?

Support Team, help?
How does the url rewrite work??

Hi everyone,
the

Custom rewrite    -> allow rewrite news url path

doesn't work as it should. In:

main / options / Rewrite Manager

if I put

%title

in the

Read Full Story

i get a 404 error, page not found.

What should I fix this?

*****edited: fixed****

Same problem here, there's no guide at all for URL Rewrite??

Before including news add the lines:

$start_from = $_GET['start_from'];
$QUERY_STRING .= '&start_from='.$start_from;


it doesn't work

I have had the same problem with actual version and replaced the code, now it works as it should work!
A pitty, that cutenews support works so poor these days, as the software is great ...

Kind regards, setarkos

agree, too bad  https://cutephp.com/forum/style_emoticons/default/sad.gif

problem still unsolved?

10

(31 replies, posted in Problem Solving / Help & Support)

We will work on the problem. The problem is not reproduced on our side. Will soon try to answer


i'm waiting too https://cutephp.com/forum/style_emoticons/default/smile.gif

would you like to share with us? https://cutephp.com/forum/style_emoticons/default/smile.gif

exact same issue here,
no solution sadly

i still don't get it

$static = TRUE; is nowhere to be found in my code

you mean in the "include" code?

<?

$number = "5";
include("xxx/show_news.php");

?>

don't use it already

ehm, meaning?

Link to PREVIOUS and NEXT page do not work, they always point to the very page you're visiting in that moment

How to fix this?

Works fine in Internet Explorer.
Doesn't work in Firefox (a login popup appears)

in core/com/allow_active_news

find

        //----------------------------------
        // Pages
        //----------------------------------
        $pages = '';

        if ($number)
        {
            $pages_count        = ceil($count_all / $number);
            $pages_start_from   = 0;

            for($j=1; $j<= $pages_count; $j++)
            {
                if ( $pages_start_from != $start_from)
                {
                    $URL = $PHP_SELF . build_uri('start_from,ucat,archive,subaction,id:comm_start_from', array($pages_start_from,$ucat,$url_archive,$subaction,$id));
                    $pages .= '[url=]'.$j.'[/url] ';
                }
                else $pages .= '<strong>'.$j.'</strong> ';
                $pages_start_from += $number;
            }
        }
        else
        {
            $no_next = true;
            $no_prev = true;
        }

        $prev_next_msg = str_replace("{pages}", $pages, $prev_next_msg);

AND REPLACE WITH

 //----------------------------------
 // Pages
 //----------------------------------
 if($number){
 $pages_count = @ceil($count_all/$number);
 $pages_start_from = 0;
 $pages = "";
 for($j=1;$j<=$pages_count;$j++){
   if($pages_start_from != $start_from){ $pages .= "[url=]
$url_archive&subaction=$subaction&id=$id&$user_query\">$j[/url] "; }
       else{ $pages .= " <strong>$j</strong> "; }
   $pages_start_from += $number;
   }
   $prev_next_msg = str_replace("{pages}", $pages, $prev_next_msg);
   }

it's simply the code used in previous relases.

Still, PREVIUOS and NEXT link doesn't work.

Already tried this way, unfortunately I get "Error: 504 Gateway Timeout" after a while https://cutephp.com/forum/style_emoticons/default/sad.gif

Uhm, I'll remove the /upimages folder (which is very big) and try again.
Thank you!


Migration succeded, but still unable to log in!
"Wrong username or password" and "The username/email you enter did not match in our users database"
https://cutephp.com/forum/style_emoticons/default/sad.gif

Yes.

Already tried this way, unfortunately I get "Error: 504 Gateway Timeout" after a while https://cutephp.com/forum/style_emoticons/default/sad.gif

Uhm, I'll remove the /upimages folder (which is very big) and try again.
Thank you!

I deleted everything and re-uploaded cutenews 1.5 together with my old data folder.

So that you have

cutenews/data (full) AND
cutenews/cdata (empty)

OR JUST

cutenews/cdata (with old datas within)

?

Thank you

hi everybody,
I've updated cutenews from 1.47 to 1.5 (moving datas from /data to /cdata manually)

but now it's impossible to log in into the administration panel. "Wrong username or password" appears. Clicking on "Lost password"  and filling the fields with username and email leads to this error: "The username/email you enter did not match in our users database".

the old users.db.php is now in /cdata , so...

any ideas?

thanks in advance

Posts found: 22

Pages 1

CutePHP Forums → Posts by cremisi