You need to check if the paths to Dashboard -  System Configurations CuteNews are correct. CuteNews fails to process individual code 404. 404 appears only in certain cases when the option rewrite is enabled.

Make sure that you have correctly copied all the CuteNews files. Also, you need to check that the cdata  and uploads folders are copied entirely. Check if all the paths are correct in the CuteNews settings.

203

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

To transfer CuteNews to a new host you need to either copy the entire working directory of CuteNews or transfer only the cdata and uploads folders. For templates to be transferred correctly, you need to copy the config.php file. After the transfer process is over, you need to go to Dashboard and adjust all the paths to the folders in System Configurations to check if they have been changed.

So if i read this right.. we cannot make new templates? or am i reading this wrong?

EDIT: NVM i have just figured it out.. was clicking the wrong buttons in wrong order...


You can create new templates based not only on Default templates.

205

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

It didn't work...
Can you be more precise, please?  Do I need a tag.php page? What is {comma| }?

Thank you


Please show us the code of your template where you want to show tagline.

Email is required for user identification. The system checks whether the user has been registered before. Currently, it is mandatory for user to provide their email in comments. We'll fix this behavior with the nearest update.

There's an error in Clone Template, which will be fixed soon. After that you will be able to edit templates by cloning and removing the old versions.

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

209

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

Trying this I see the parent category listed and the two categories placed underneath with prefixed with a hyphen. Is that correct?


Yes, it's correct.

If I add a news item to the parent category does it mean that it will be added to all the child categories?


No.

210

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

We recommend you update your version of CuteNews to the latest one.

211

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

The link you specified correctly describes the changes you need to perform to add new emoticons to the current version of CuteNews, or is this method not working?

$fdesc is obtained from the variable $ rawdesc,which is initialized by the contents of full story ($ entry ['f']). If you want to replace it with short story, you need to modify the code so that variable $ str would be used instead of $rawdesc, which is initialized by the contents of short story ($entry['s']).

Do you perform any manipulations with the CuteNews code? migration_update_indexes.php recreates  indexes in the database of news, and this operation may affect the display of dates.

How many news items do you have? Are news dates in Dashboard displayed correctly? Try running the migration_update_indexes.php script, which can be found in the cutenews working directory.

215

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

Unfortunately, Cutenews has a strict limit on news displaying date.
You can create a news item and set it to be published in the future, but the users will see it only when it's a particular day. This is an architectural solution and it can't be adjusted. You can take a risk by changing the processing of news display date in core/core.php and correcting variable $date_out in the cn_get_news setting.

216

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

Is there an article with ID 9 in the list of your articles?
For a better understanding of the process of correcting errors in PHP-code, please read about the process of code debugging on the Internet.

217

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

Yes.

In version 2.0, the sorting of news in Edit News has been removed due to fundamental changes in the format of news storing. You can change the order of news by altering the date of news publication. The feature of news sorting will be available again in future versions of CuteNews.

219

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

Hello Support_Team,

To create a navigation i use this code:


But the news cant be showed,
maybe the code produces a conflict?

What must i change?

You have some syntax errors in code.
Use this correct code:

echo ' * [url=https://cutephp.com/forum/index.php?cat=]".$n['pg']."[/url]
';

Try add

    echo "CKEDITOR.config.extraPlugins = 'youtube';";


after

    echo "CKEDITOR.config.allowedContent = true;";

221

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

Nobody now how to list the categories / page_alias ?


include ('cutenews/cn/trunk/core/init.php');
$categoryes=cn_get_categories();
foreach($categoryes as $id=>$cat)
{
    echo $cat['name'].'<br/>';
    print_r(cn_get_news(array('cfilter' => array($id))));
    echo '<br/>';
}


You can see more options for filtering news in includes/active_news.php

222

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

How many news you have?

223

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

Which version of CuteNews are you using?

Tests were carried out with no news archiving with a fixed size of a news piece. The results of the test do not guarantee the stability of the system if a large number of entries is used in the real conditions with news of various size. We recommend doing news archiving.

Actually my resizer doens't even work.
And we have the same 2.0.2


You need to check the PHP settings on your web-server. In order for the resizing function to work correctly, you need to have the GD extension enabled.