Search found 1552 matches

by pSouper
Tue 4. Jul 2006, 00:51
Forum: phpwcms Discussion
Topic: YEAH YEAH!! A roadmap :)
Replies: 8
Views: 5356

and no mention to the long term future... well, maybe this list is the long term future itself :( Judging by experience, this might take a year or so. So I wouldn't start waiting for anything here. ease up the those who bring you this FREE csm! If I may be so bold as to sugest that those who have n...
by pSouper
Sat 1. Jul 2006, 14:01
Forum: phpwcms Support English
Topic: text with picture
Replies: 5
Views: 2094

i think you may need to alter a variable within config/phpwcms/conf.template_default.inc.php
FROM

Code: Select all

$template_default["article"]["image_div"]				= true;
TO

Code: Select all

$template_default["article"]["image_div"]				= false;
I think i remember this correctly
by pSouper
Sat 1. Jul 2006, 13:52
Forum: phpwcms Support English
Topic: Email contactform - message is not sent
Replies: 4
Views: 1856

also: be aware that hotmail WILL junk these emails by default - i guess other email clients may do too.

always test your emails on a hotmail account then check the junk folder and add the address to your whitelist
by pSouper
Sat 1. Jul 2006, 13:48
Forum: phpwcms Support English
Topic: Interesting thing
Replies: 5
Views: 2323

i think dexxus has answered the Q but my own Q would be why use iframes at all? it does not seem to be doing anything the phpWCMS can't do without these?
by pSouper
Sat 1. Jul 2006, 13:40
Forum: phpwcms Support English
Topic: "Friendly URL's"
Replies: 19
Views: 12788

hi brewster66, I think you are after somthing closer the 'modrewrite' this is were apche re-writes the url to a more reader friendly one. you should search for help within this forum on modrewrite. in short though... within config.inc.php set the following line to = 1 $phpwcms["rewrite_url"...
by pSouper
Tue 20. Jun 2006, 21:04
Forum: General Discussion
Topic: css bug? quirk? sabotage?...
Replies: 3
Views: 2620

Thanks for the sites Kosse,

I will have lots of fun discovering more bugs I never knew about and still can't fix :D

I had a quick read through all the pages but nothing jumps out that may explain my specific issue BUT they do highlight a few weaknesses that may or may not be contributary.
by pSouper
Mon 19. Jun 2006, 17:35
Forum: General Discussion
Topic: css bug? quirk? sabotage?...
Replies: 3
Views: 2620

css bug? quirk? sabotage?...

hey all, while working on a slight mod to my tooltips script I found some very strange happenings. I found that in IE (although not firefox) IF i overwrote the background-color with the same value by linking a second css file the whole tooltip bacame invisible - BUT if I changed the background-color...
by pSouper
Mon 19. Jun 2006, 17:24
Forum: General Discussion
Topic: flash galerie xml
Replies: 8
Views: 4028

I have used most of the tufat scripts and am happy to alter the (provided ) source to suit each job - my personal preference though is (currently) slideshowpro.
by pSouper
Tue 2. May 2006, 11:31
Forum: phpwcms Discussion
Topic: Newsletter - number of subscribers?
Replies: 7
Views: 3875

I wish I had 18,000 clients - just one of my clients has 18000 subscribers and most are not even his clients... yet :)
by pSouper
Tue 2. May 2006, 10:59
Forum: phpwcms Discussion
Topic: Newsletter - number of subscribers?
Replies: 7
Views: 3875

I current;y have 18,000 on one clients list and it is fine - it takes a while to send though ;)
by pSouper
Mon 1. May 2006, 15:12
Forum: hacks & enhancements
Topic: REPLACEMENT TAG: Repository
Replies: 5
Views: 4813

JUMPCP: jump to any article & content part

to be used ONLY with this hack //Tag name: JumpCP //Author: pSouper //Version:1.0 //Description: provides a link to an article & content part with the option to set the _target //Requirements: none //Usage for aliased categories: {JUMPCP:article alias,content part ID,link name,html target type} ...
by pSouper
Mon 1. May 2006, 15:11
Forum: hacks & enhancements
Topic: Content part Anchor links
Replies: 1
Views: 2513

{JUMPCP} 'Jump to article & content part' replacement ta

For those who like to use repacement tags you may use this one in conjunction with this hack to jump from anywhere in the site to a specific article & content part... If you don't already have your own replacement tags file in phpwcms_template/inc_script/frontend_render/ (which i recommend you d...
by pSouper
Mon 1. May 2006, 14:49
Forum: hacks & enhancements
Topic: REPLACEMENT TAG: Repository
Replies: 5
Views: 4813

Insert linebreak with a given height

// TagName: LINEBREAK // Author: pSouper // Version:1.0 //Description: Inserts a customaisable linebreak of a given height anywhere in an article/content part // Requirements: none // Usage: {LINESBREAK:space height} //Example: {LINEBREAK:10} $search[x] = '/\{LINEBREAK:(.*?)\}/'; $replace[x] = '<di...
by pSouper
Mon 1. May 2006, 14:47
Forum: hacks & enhancements
Topic: REPLACEMENT TAG: Repository
Replies: 5
Views: 4813

format for replacement tag submission...

Code: Select all

//Tag Name:
//Author:
//Version:
//Description:
//Requirements:
//Usage:
//Example:
$search[x]    = '';
$replace[x]	= '';
by pSouper
Mon 1. May 2006, 14:45
Forum: hacks & enhancements
Topic: REPLACEMENT TAG: Repository
Replies: 5
Views: 4813

CREATING your custom replacement tag file

copy & save the following code to a new file within 'phpwcms_template/inc_script/frontend_render/customtags.php' <? // parse the $string and replace all possible instances of the following {RT}'s // CUSTOM FUNCTIONS REQUIRED GO BETWEEN HERE... // ...AND HERE // REPLACEMENT TAG PARSER FUNCTION fu...