| Author |
Message |
makh1
Newbie


Joined: Apr 24, 2008
Posts: 2
|
Posted:
Fri Apr 25, 2008 11:53 am |
|
there is some more links different from the original content module.
Some 1 to help me?
THKS 4 all. |
| |
|
|
 |
montego
Site Admin/Owner


Joined: Feb 12, 2005
Posts: 926
|
Posted:
Fri Apr 25, 2008 1:29 pm |
|
I cannot help you if I do not know what links you are referring to. Your subject line is not very helpful. Can you please point me to your site to where I can see what it is that you are trying to tap? |
_________________ “To err is human, but when the eraser wears out ahead of the pencil, you’re overdoing it.”
-- Josh Jenkins |
|
|
 |
makh1
Newbie


Joined: Apr 24, 2008
Posts: 2
|
Posted:
Fri Apr 25, 2008 3:42 pm |
|
THKS 4 the fast answer.
Had a hard time trying to GT NSN NEWS by myself few months ago, I thought it would be the same mess with Content +.
In fact, just one url to add:
$urlin = array(
'"(?<!/)modules.php\?name=Content&pa=showpage&pid=([0-9]*)&page=([0-9]*)"',
'"(?<!/)modules.php\?name=Content&pa=list_pages_categories&cid=([0-9]*)"',
'"(?<!/)modules.php\?name=Content&pa=showpage&pid=([0-9]*)"',
'"(?<!/)modules.php\?name=Content"',
'"(?<!/)modules.php?name=Content&pa=add_page"',
);
$urlout = array(
'content-\\1-page\\2.html',
'content-cat-\\1.html',
'content-\\1.html',
'content.html',
'add_content.html'
);
htaccess:
#Content
RewriteRule ^content-([0-9]*)-page([0-9]*).html modules.php?name=Content&pa=showpage&pid=$1&page=$2
RewriteRule ^content-cat-([0-9]*).html modules.php?name=Content&pa=list_pages_categories&cid=$1
RewriteRule ^content-([0-9]*).html modules.php?name=Content&pa=showpage&pid=$1
RewriteRule ^content.html content.html
RewriteRule ^add_content.html modules.php?name=Content&pa=add_page
And THKS again for all the work done. |
| |
|
|
 |
montego
Site Admin/Owner


Joined: Feb 12, 2005
Posts: 926
|
Posted:
Fri Apr 25, 2008 3:44 pm |
|
Ok, I have moved this thread to the "Additional Taps" forum as other may be looking for Content+.
Thanks! |
_________________ “To err is human, but when the eraser wears out ahead of the pencil, you’re overdoing it.”
-- Josh Jenkins |
|
|
 |
|
|