Skip to forum content
CutePHP Forums
Dear CuteNews Users! Please feel free to contact us via our new Feedback Form and please send information about bugs to our bug tracker.
You are not logged in. Please login or register.
Active topics Unanswered topics
Search options (Page 11 of 13)
This does not seem to be a cutenews problem. Check your page code
You will find this:
2<div style="width:420px; margin-bottom:30px;">
and this:
</div><p align="center"><< Vorherige Seite <strong>1</strong> 2 Nächste Seite >></p><div style="margin-top:15px;width:100%;text-align:center;font:9px Verdana;">Content Management Powered by CuteNews</div><!-- News Powered by CuteNews: https://cutephp.com/ -->
1
</div>
Your feed seems to be working now, so I guess you fixed it. I had a problem with my RSS feeds in Explorer 8. Worked ok in Firefox, Chrome, Safari and on my ipad but Explorer 8? No!.
Could be caused by any of your articles that contain non-numeric HTML entities. In Explorer click on the 'more information' when the error occurs then fix the problem that it reports. I fixed my feed by reposting the article that had the entities and this fixed the problem. (The original article had been cut and pasted from Word!). The problems were mostly quotes and accents.
I will also add the abilitiy to use the default images.mdu for uploading and integrating pictures with ckeditor later today. I've figured out how to use it 
Brilliant Filou83. Well done. I prefer the images.mdu .

UTF8 has captcha built in.
I have noticed that some of the toolbar settings have not been included.
There is a list of the ones that you can include here:
http://docs.cksource.com/CKEditor_3.x/Deve...s_Guide/Toolbar
I have added in underline, spellcheck instead of check-as-you-type and font.

The hack 'Sort News By (CuteNews Panel)' by dooshek to sort news in Edit News panel by: Title, Category, Date and Author ascending and descending found here:
https://cutephp.com/forum/index.php?showtopic=17867
Gives the error
Warning: uksort() expects parameter 1 to be array, null given in /home/?????/public_html/cnews/inc/editnews.mdu on line ??
Warning: array_reverse() expects parameter 1 to be array, null given in /home/?????/public_html/cnews/inc/editnews.mdu on line ??
The correction to the code is:
open inc/editnews.mdu
Find:
add below:
if (!isset($sortby)) { $sortby="0"; } if (!isset($sortad)) { $sortad="d"; }
if (isset($sortby)) {
$every_news = $all_db;
if (!function_exists('sortcmp')) {
function sortcmp($a, $b) {
global $every_news, $sortby;
$news_a = explode('|', $every_news[$a]);
$news_b = explode('|', $every_news[$b]);
return strnatcasecmp($news_a[$sortby], $news_b[$sortby]);
}
}
uksort($all_db, 'sortcmp');
if ($sortad=="d") { $all_db = array_reverse($all_db); }
unset($sortby, $sortad);
}
The rest of the hack is correct.
.htaccess filles affect all files and subdirectories of the folder that they are in so start at the top directory and search down. Also check permissions on all folders.
You did look in the data folder?
Not necessarily. depends upon how your server is set up.
Try setting the permissions on your data folder to 777. Some servers do not allow this and 755 or 644 is more secure.
https://cutephp.com/forum/index.php?showtop...st&p=119695
The second part of the error message is means that your server has not got a 404.html file that visitors should see when a 404 error is generated. (file not found)
If your permissions are set correctly then the most likely cause is the $cutepath which you should check in configurations.
More help may be possible if you say what the warning is.
if you search this forum you will also find:
disable posting of comments
One thing is puzzling me.
The current version I use is 9.0.1.
So this means UTF_8 Cutenews 9.0.1
Then why is the file you posted in post #10 from Cutenews 1.4.6. ?
Have you tried putting back the modified version that came with UTF_8 Cutenews 9.0.1 ?
I have given the corrections above.
It may be unrelated to your problem.
$comments = preg_replace(array("'\"'", "'\''", "''"), array(""", "'", ""), $comments);
echo"<div style=\"text-align: center;\">
And I don't really mean to sound like a broken record, but... Do you have any plans for us "unofficial support" members? (I'm not really expedting an answer, but I have to try
)
It says on the CutePHP 'About' page:
no formal official support is provided apart from the support forum found on this website and maintained by other users

After installing CKeditor and CKfinder you need to take the usual precautions to protect the new directories by putting a blank index.html file in each to prevent directory listing. If you have added a new upfiles directory for uploading images this also needs to be protected in the same way or by using an .htaccess file. I have put the upfiles directory into the cutenews data directory which is already protected.
Made to work with sessions and specific username.
Well done hanska, it works.
You need to put
session_start();
at the top of config.php as stated in the note
Also you must set
$config_use_sessions = TRUE;
in line 18 of cutenews.index.php
echo "<script type="text/javascript">
needs to be replaced with
echo "<script type=\"text/javascript\">
With 1) You may need a margin to stop the text appearing directly next to the avatar.
I use:
<span style="float: left; margin: 10;">{avatar} </span>
I looked, but I do not see what needs to be replaced
Replace everything except the data folder and the images.mdu
Don't overwrite your Data folder.
Then put back the modified images.mdu.
Posts found: 251 to 275 of 305