Search found 18 matches

by madmus
Wed 3. Aug 2005, 12:44
Forum: phpwcms Feature Requests
Topic: phpwcms v3: multilanguage
Replies: 1
Views: 2783

phpwcms v3: multilanguage

oh, just dreaming :(
i still using Release 1.1-RC4 27-08-2004 for my site http://www.urbanpoor.or.id(in indonesian), upgrade to newer release will be pain in the ass since there's no real multilanguage features.

oh god, answer my pray
by madmus
Mon 7. Mar 2005, 09:46
Forum: sites you are proud of (made with phpwcms only)
Topic: http://www.urbanpoor.or.id
Replies: 2
Views: 1945

http://www.urbanpoor.or.id

old site in indonesian
http://www.urbanpoor.or.id
thanks phpwcms
by madmus
Sat 18. Sep 2004, 08:17
Forum: phpwcms Support English
Topic: WYSIWYG in Firefox 1.0PR
Replies: 9
Views: 2965

hehe

:wink: ur welcome
by madmus
Fri 17. Sep 2004, 11:03
Forum: phpwcms Support English
Topic: WYSIWYG in Firefox 1.0PR
Replies: 9
Views: 2965

mine is like this
//WYSIWYG EDITOR:
//0 = no wysiwyg editor (default)
//1 = HTMLAREA (compatible with IE5.5+ and Mozilla 1.3+ based webbrowsers)
$_SESSION["wysiwyg_editor"] = 0;
$_SESSION["dhtml_hiding"] = 1;
$phpwcms["wysiwyg_editor"] = intval($phpwcms["wysiwyg_editor"]);
if($phpwcms["wysiwyg ...
by madmus
Fri 17. Sep 2004, 06:21
Forum: phpwcms Support English
Topic: WYSIWYG in Firefox 1.0PR
Replies: 9
Views: 2965

quick and dirty

i made change this in login.php

case 3: if($c->browser_is("ie5.5+")) $_SESSION["wysiwyg_editor"] = 4;

if(!$_SESSION["wysiwyg_editor"]) {

if($c->browser_is("mz1.3+") || $c->browser_is("ns7+") || $c->browser_is("fx") ) $_SESSION["wysiwyg_editor"] = 1;

works on my firefox 1.0 PR
by madmus
Thu 16. Sep 2004, 11:34
Forum: phpwcms Support English
Topic: WYSIWYG in Firefox 1.0PR
Replies: 9
Views: 2965

see this thread

by madmus
Mon 6. Sep 2004, 03:43
Forum: phpwcms Support English
Topic: no wyswyg with firefox 0.9
Replies: 13
Views: 5877

i use htmlArea, i didn't test others.
:wink:
i'ts just quick and dirty hack, just for me
by madmus
Sat 4. Sep 2004, 04:47
Forum: phpwcms Support English
Topic: no wyswyg with firefox 0.9
Replies: 13
Views: 5877

wysiwyg firefox 0.9

after looking around i found this
open login.php
find this :

if($c->browser_is("mz1.3+") || $c->browser_is("ns7+")) {
$_SESSION["dhtml_hiding"] = 0;
}
switch($phpwcms["wysiwyg_editor"]) {
case 1: if($c->browser_is("ie5.5+") || $c->browser_is("mz1.3+") || $c->browser_is("ns7+") ) $_SESSION ...
by madmus
Wed 21. Jul 2004, 18:30
Forum: phpwcms Installation Troubleshooting English
Topic: header already sent
Replies: 7
Views: 8586

header already sent

why i always get this error when update something?

Warning: Cannot modify header information - headers already sent by (output started at /home/u215/domain/urbanpoor.or.id/web/phpwcms.php:206) in /home/u215/domain/urbanpoor.or.id/web/include/inc_tmpl/admin.templates.tmpl.php on line 111
by madmus
Wed 21. Jul 2004, 15:14
Forum: hacks & enhancements Support
Topic: Visitor tracking system, path error
Replies: 3
Views: 3791

i got this warning

Warning: session_register(): Cannot send session cookie - headers already sent by (output started at /home/u215/domain/urbanpoor.or.id/web/include/inc_ext/phpOpenTracker/phpOpenTracker/Config.php:261) in /home/u215/domain/urbanpoor.or.id/web/include/inc_ext/phpOpenTracker ...
by madmus
Wed 21. Jul 2004, 08:34
Forum: hacks & enhancements Support
Topic: Visitor tracking system, path error
Replies: 3
Views: 3791

i think so,
i did it twice

i think it's something wrong with my php.ini
by madmus
Wed 21. Jul 2004, 03:32
Forum: hacks & enhancements Support
Topic: Visitor tracking system, path error
Replies: 3
Views: 3791

Visitor tracking system, path error

my phpwcms produce output like this when i install the VTS MOD
<script src="hpwcms_templateinc_js/frontend.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="hpwcms_templateinc_css/frontend.css">


why? why? why not:
<script src="phpwcms_template/inc_js/frontend.js ...
by madmus
Wed 21. Jul 2004, 03:31
Forum: phpwcms Support English
Topic: why i can't get my css
Replies: 3
Views: 1344

because VTS

OH i know now!
it's because i install MOD VTS by cguenther (http://www.emediafabrik.de).
I commented out the index.php part where it should be include the script, and everything fine :?:
by madmus
Tue 20. Jul 2004, 17:55
Forum: phpwcms Support English
Topic: why i can't get my css
Replies: 3
Views: 1344

why i can't get my css

my phpwcms produce output like this
<script src="hpwcms_templateinc_js/frontend.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="hpwcms_templateinc_css/frontend.css">


why? why? why not:
<script src="phpwcms_template/inc_js/frontend.js" type="text/javascript ...
by madmus
Wed 14. Jul 2004, 11:05
Forum: phpwcms Support English
Topic: html area image manager
Replies: 1
Views: 808

html area image manager

i need to implement image manager like in http://www.zhuo.org/htmlarea/. can somebody tell me how