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 &gt;&gt;</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 https://cutephp.com/forum/style_emoticons/default/biggrin.gif

Brilliant Filou83. Well done. I prefer the images.mdu .
https://cutephp.com/forum/style_emoticons/default/laugh.gif

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.
https://cutephp.com/forum/style_emoticons/default/biggrin.gif

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:

if(!empty($all_db)){

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&amp;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

if you search this forum you will find:
https://cutephp.com/forum/index.php?showtop...dpost&amp;p=170

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.  https://cutephp.com/forum/style_emoticons/default/rolleyes.gif
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 https://cutephp.com/forum/style_emoticons/default/smile.gif)

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

https://cutephp.com/forum/style_emoticons/default/rolleyes.gif

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.

Searching this forum will give:
https://cutephp.com/forum/index.php?showtopic=215

https://cutephp.com/forum/index.php?showtopic=284

Made to work with sessions and specific username.


Well done hanska, it works.  https://cutephp.com/forum/style_emoticons/default/smile.gif
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\">

https://cutephp.com/forum/index.php?showtop...st&amp;p=104734

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

Pages Previous 1 9 10 11 12 13 Next

CutePHP Forums → Posts by Damoor



The pun_antispam official extension is installed. Copyright © 2003–2009 PunBB.