How should I "check whether the .htaccess file is working" ??
1 2014-09-24 13:58:51
Re: Custom URL Rewrite not working (4 replies, posted in Problem Solving / Help & Support)
2 2014-09-24 08:09:21
Re: How do I intergrate Cutenews with Disqus? (28 replies, posted in Problem Solving / Help & Support)
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?
3 2014-09-24 08:04:54
Re: Custom URL Rewrite not working (4 replies, posted in Problem Solving / Help & Support)
Support Team, help?
How does the url rewrite work??
4 2014-09-23 10:17:37
Topic: Custom URL Rewrite not working (4 replies, posted in Problem Solving / Help & Support)
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?
5 2014-09-23 10:14:06
Re: How do I intergrate Cutenews with Disqus? (28 replies, posted in Problem Solving / Help & Support)
*****edited: fixed****
6 2014-09-23 10:00:09
Re: How to use url rewrite manager? (2 replies, posted in HTML, CSS and Overall Look)
Same problem here, there's no guide at all for URL Rewrite??
7 2013-09-10 08:36:03
Re: CN 1.5.3 Pagination Problem (5 replies, posted in Problem Solving / Help & Support)
Before including news add the lines:
$start_from = $_GET['start_from']; $QUERY_STRING .= '&start_from='.$start_from;
it doesn't work
8 2013-09-05 16:34:31
Re: News pagination doesn't work (16 replies, posted in Problem Solving / Help & Support)
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
9 2013-09-05 11:03:10
Re: PREVIOUS and NEXT page in news do not work (10 replies, posted in Script Feedback and Suggestion)
problem still unsolved?
10 2013-08-10 15:30:02
Re: URL REWRITER (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
11 2013-08-10 15:27:42
Re: Adding more Emoticon to CKEditor (3,304 replies, posted in Problem Solving / Help & Support)
would you like to share with us?
12 2013-08-10 15:26:50
Re: Problem with pagination (7 replies, posted in Problem Solving / Help & Support)
exact same issue here,
no solution sadly
13 2013-08-10 15:25:19
Re: PREVIOUS and NEXT page in news do not work (10 replies, posted in Script Feedback and Suggestion)
i still don't get it
$static = TRUE; is nowhere to be found in my code
14 2013-06-27 11:54:21
Re: PREVIOUS and NEXT page in news do not work (10 replies, posted in Script Feedback and Suggestion)
you mean in the "include" code?
<?
$number = "5";
include("xxx/show_news.php");
?>
don't use it already
15 2013-06-13 20:22:24
Re: PREVIOUS and NEXT page in news do not work (10 replies, posted in Script Feedback and Suggestion)
ehm, meaning?
16 2013-06-02 10:40:46
Topic: PREVIOUS and NEXT page in news do not work (10 replies, posted in Script Feedback and Suggestion)
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?
17 2013-05-15 13:12:02
Re: Image on the Rate symbol 1-2 form? (11 replies, posted in Problem Solving / Help & Support)
Works fine in Internet Explorer.
Doesn't work in Firefox (a login popup appears)
18 2013-05-15 13:03:38
Re: News pagination doesn't work (16 replies, posted in Problem Solving / Help & Support)
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.
19 2012-09-20 21:03:06
Re: v1.5 - Login doesn't work (8 replies, posted in Problem Solving / Help & Support)
Already tried this way, unfortunately I get "Error: 504 Gateway Timeout" after a while
![]()
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"
20 2012-09-20 14:24:44
Re: v1.5 - Login doesn't work (8 replies, posted in Problem Solving / Help & Support)
Yes.
Already tried this way, unfortunately I get "Error: 504 Gateway Timeout" after a while
Uhm, I'll remove the /upimages folder (which is very big) and try again.
Thank you!
21 2012-09-20 13:01:54
Re: v1.5 - Login doesn't work (8 replies, posted in Problem Solving / Help & Support)
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
22 2012-09-19 14:58:49
Topic: v1.5 - Login doesn't work (8 replies, posted in Problem Solving / Help & Support)
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