Search found 10 matches
- Fri 22. Jul 2005, 11:46
- Forum: hacks & enhancements
- Topic: {TEASER_EX} Replacement tag v1.90 - 10.1.2007
- Replies: 398
- Views: 209974
Re: {TEASER_EX} Replacement tag
count Number of articles to show from this category, -1 for all articles
Sorry, but count not worked -- showing all articles from category:(
and pagenav work if
if(!$phpwcms["rewrite_url"])
$refurl = $_SERVER['PHP_SELF']."?".$catalias;
else
$refurl = $catalias;
replase
if ...
- Wed 20. Jul 2005, 13:39
- Forum: hacks & enhancements
- Topic: {TEASER_EX} Replacement tag v1.90 - 10.1.2007
- Replies: 398
- Views: 209974
pagenav working in index page if change
to
oops: not stable(mod rewrite) 
Code: Select all
$refurl = $REQUEST_URL[0];
Code: Select all
$refurl = ($_SERVER['QUERY_STRING']) ? $REQUEST_URL[0] : $REQUEST_URL[0]."?".$acat_alias;

- Wed 20. Jul 2005, 12:38
- Forum: hacks & enhancements
- Topic: {TEASER_EX} Replacement tag v1.90 - 10.1.2007
- Replies: 398
- Views: 209974
- Mon 17. Jan 2005, 22:05
- Forum: phpwcms Support English
- Topic: {NEW:10} problem - not right solution...
- Replies: 13
- Views: 5063
- Sat 1. Jan 2005, 23:39
- Forum: phpwcms Bug Reports
- Topic: Move up/down button doesn't work
- Replies: 1
- Views: 2797
Here you can found answer:
http://www.phpwcms.de/forum/viewtopic.php?t=4016
http://www.phpwcms.de/forum/viewtopic.php?t=4016
- Sat 1. Jan 2005, 15:49
- Forum: phpwcms Bug Reports
- Topic: search issue
- Replies: 0
- Views: 2052
search issue
serch result cant showing correctly when i use HTML link inside article text
in function clean_replacement_tags
$text = strip_tags($text, '<a><b><i><u>');
is probably like
$text = strip_tags($text, '<b><i><u>');
because <a> html tag not exist, existing tag <a href="">
in function clean_replacement_tags
$text = strip_tags($text, '<a><b><i><u>');
is probably like
$text = strip_tags($text, '<b><i><u>');
because <a> html tag not exist, existing tag <a href="">
- Sat 1. Jan 2005, 14:56
- Forum: phpwcms Support English
- Topic: {NEW:10} problem - not right solution...
- Replies: 13
- Views: 5063
{NEWSA} Tag
This code save as file phpwcms_template/inc_script/frontend_render/newsa.php
<?php
/*************************************************************************************
usage:
{NEWSA:10} - show last 10 active articles(exluding current article) from all section where categories is active ...
<?php
/*************************************************************************************
usage:
{NEWSA:10} - show last 10 active articles(exluding current article) from all section where categories is active ...
- Thu 30. Dec 2004, 12:24
- Forum: phpwcms Support English
- Topic: Article ordering (arrow up/down) does not work
- Replies: 18
- Views: 9520
QuickFix
Modification for disable ascending /descending if manual (arrow up/down) selected.
1st BACKUP BACKUP BACKUP !!!
Open: include/inc_lib/general.inc.php
arround line 164
After:
function is_checked($c, $chkvalue, $xml=0) {
if(strval($c) == strval($chkvalue)) {
echo (!$xml) ? ' checked ...
1st BACKUP BACKUP BACKUP !!!
Open: include/inc_lib/general.inc.php
arround line 164
After:
function is_checked($c, $chkvalue, $xml=0) {
if(strval($c) == strval($chkvalue)) {
echo (!$xml) ? ' checked ...
- Tue 28. Dec 2004, 19:31
- Forum: hacks & enhancements
- Topic: MOST_READ : front end code to add
- Replies: 23
- Views: 15002
Sorry, where is the table article_read_count ?

Code: Select all
$sql ="SELECT article_id, count( article_id ) c
FROM ".DB_PREPEND."article_read_count
GROUP BY article_id
ORDER BY c DESC, date_read desc
$limit ";
- Tue 28. Dec 2004, 18:39
- Forum: hacks & enhancements
- Topic: My new tag: {ARTICLELIST:max_count}
- Replies: 18
- Views: 13448