anyone can help me?

Are both of your domains connected together with the same hosting account?

If it's set up like this:

public_html folder
   - domain-1-folder
   - domain-2-folder

You would put your news folder in any of the domain folders and set them up like this:

domain1/index.php:  include("news/show_news.php");

domain2/index.php: include("./domain1/news/show_news.php")

2

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

hey i have uused cutenews before a long time ago, and dont remember the if there was a way to add seperate aticles for spereate pages.
is it possible and if not is there another script that does p[lz let me know.

You mean like index.php?subaction=showfull&url=####
to: yourdoman.com/article-name.html

You could try using the following hacks (1.4.6) : http://democute.de.funpic.de/cute/example2...rom=&ucat=6

and  http://forum.modrewrite.com/viewtopic.php?...3c&start=10


If this isn't what you mean, could you provide an example?

3

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

At my other site I use 1.4.6 cutenews and 5.3 version of php.

Perhaps there is a bug issue with version 1.4.7 - try either downgrading back to 1.4.6 or upgrading to 1.5?

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

4

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

I installed the 1.4.7 version on 3rd of August.

Yes, just older posts are missing.

And yeah, I selected NO at auto archiving.

I'm thinking about that.. can the host cause this problem where my site is? (It's http://zymic.com/) Because I have another side at another server but there never was problem with cutenews.
My friends also have websites at zymic.com and they had this problem, too.

I see, and you're using the same version of cutenews at both sites? It also seems Zymic is still using php 5.2, I wonder if that is the issue.  I had used php 5.2 at Goddaddy for cutenews 1.4.6 and it worked fine before upgrading to 5.3. What version of php is your other host using?

5

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

I just did this but now nothing went wrong.

Strange, it doesn't sound like a file permission error otherwise you would a NO it the System SelfCheck list when you login.

What version of cutenews are you using?

When did you install it?

Is it just your older posts missing?

Is 'NO' selected under Options > System Configurations > General is Auto Archive Every Month? 

Just curious that maybe your posts were auto-archived but ended up being dumped.

6

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

Nobody else can access.
Yes, they are.

That has happened to me before, but only because the posts were archived - are you sure there's nothing listed in your Archive Manager? You can also go to yoursite.com/news/data/news.txt to see if the articles are still there but just not being displayed.

Problem solved - never mind

I was able to get this hack

http://democute.de.funpic.de/cute/example2...rom=&ucat=6
with this modification  http://forum.modrewrite.com/viewtopic.php?...3c&start=10 

working on my site, however I've run into a coding road block. I have multiple pages that have the shownews include code and wanted all the articles for these pages to have friendly urls. But I'm not sure how to achieve this since there is only one htaccess file being written.

I have tried duplicating the lines in the htaccess file like this but no success:

RewriteRule ^postpage/(.+).html(.*)$ example1.php?start_from=$1$2 [NC,QSA,L]
RewriteRule ^postpage/(.+).html(.*)$ ecample2.php?start_from=$1$2 [NC,QSA,L]

If I were to go to example2.php and click on full-story, it would redirect me back to example1.php

Any ideas?

Nevermind, I think the problem was is my server, switched to linux from windows and now the htaccess file is generating but now it gives my whole folder and internal service error whenever it's present.

Dear User!

Please would you send us a Full Story link where you've faced 404 error?


Here is the link without the hack to the full story of my article that is working:
http://kuroi.leizel.net/ver3/review-anime....mp;ucat=10&


This is the same page with the hack:
http://kuroi.leizel.net/ver3/test.php

404 page url:

http://kuroi.leizel.net/ver3/post/anime/bl...1332832005.html



I've tried using both versions of this hack https://cutephp.com/forum/index.php?showtopic=31744 for 1.4.6 - and currently trying to use Ifa's. However, both versions keep coming up with the samee problems:

- The htaccess file is generated but does not contain any rewrite rules or conditions from the script. I tried to add them manually:


RewriteEngine On

RewriteRule ^postpage/(.+).html(.*)$ review-anime.php?start_from=$1$2 [NC,QSA,L]
RewriteRule ^comments/(.+).html(.*)$ review-anime.php?subaction=showcomments&url=$1$2 [NC,QSA,L]
RewriteRule ^commentspage/(.+)/(.+).html(.*)$ review-anime.php?comm_start_from=$1&subaction=showcomments&url=$2$3 [NC,QSA,L]
RewriteRule ^archiveindex/(.+).html(.*)$ review-anime.php?archive=$1&subaction=list-archive$2 [NC,QSA,L]
RewriteRule ^archive/(.+).html(.*)$ review-anime.php?subaction=showfull&url=$1$2 [NC,QSA,L]
RewriteRule ^archivepage/(.+)/(.+).html(.*)$ review-anime.php?start_from=$2&archive=$1&subaction=list-archive$3 [NC,QSA,L]
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^(.+).html(.*)$ review-anime.php?subaction=showfull&url=$1$2 [NC,QSA,L]

- The links are changed from :

review-anime.php?subaction=showfull&id=1332832005&archive=&start_from=&ucat=10&

to

/post/Anime Reviews/black-rock-shooter-1332832005.html

But when I try to click to read the full story, I am redirected to a 404 missing page. Any help would be greatly appreciated