Re: [pmwiki-users] pmwiki get blank page (without error-msg)

2008-03-10 Thread Patrick Ogay
I experience to cases when blank pages appeared. a) I have an installation, where php5 doesn't work for pmwiki. (I always get blank pages without error msgs, never found out why, php4 works) b) Lately I migrated only a content, and pmwiki showed only a blank page (I searched for hours). The

Re: [pmwiki-users] ?action=upload

2008-03-10 Thread St�phane Heckel
Patrick R. Michaud wrote : In a _url_ it's not possible, because the only way to perform a file upload is by using an HTTP POST request using a multipart/form-data encoding. Any other alternative ? idea would be to push files to the /import directory in a very secured environment, ... I

Re: [pmwiki-users] fox: ptvclear prob.

2008-03-10 Thread Hans
Monday, March 10, 2008, 12:54:09 PM, noskule wrote: I use the ptvclear option in the form below. In the target pages are also other ptvs, not adressed with this form. If I save the changes the form clears all ptvs, not only these , adressed by this form. Is there a way to limit clearing to

Re: [pmwiki-users] Music Recipe - Error-Messages, abc2ps hangs up sometimes

2008-03-10 Thread Patrick Ogay
I'm very pleased with (:abcm:) thank you very much, Martin. There is one general issue I like to discuss: Sometimes abc2ps hangs up, and it's very difficult to guess why. Mostly when correcting the errors reported in the appache-log, it works correctly. That means, that somebody who enters a

Re: [pmwiki-users] Fox install issues

2008-03-10 Thread Jean-Fabrice [gmail]
Hum, Got a similar issue there with ['Fox']['Version'] = '2008-03-08'; Here is the form code : (:fox addme target=Test/Test redirect=1 :) (:foxtemplate {$$usr}:) (:input text usr:) (:input submit post ok:) (:foxend addme:) and here is the config.php : $FoxAuth = 'ALWAYS';

Re: [pmwiki-users] security documentation for recipes

2008-03-10 Thread Peter Melodye Bowers
Basically I'm not thinking UpdateAuthPage() would be used any different from UpdatePage() (i.e., still has the $oldpage parameter) other than making sure that authorizations were correctly respected - an authorized API, if you will, to the world outside core... Ah, if that's the case,

Re: [pmwiki-users] Music Recipe - Error-Messages, abc2ps hangs up sometimes

2008-03-10 Thread Martin Fick
--- Patrick Ogay [EMAIL PROTECTED] wrote: That means, that somebody who enters a piece mist have access to apache's error.log. I think the error-msg could be routed, and the error-file probably could be displayed as output +errorfile (or something like that). In the next version of the

[pmwiki-users] order of initializing

2008-03-10 Thread Peter Melodye Bowers
I was trying to run a function (not just define it but actually run it) at the time my recipe is being loaded via include_once() from config.php. My function required scripts/markupexpr.php to be loaded and apparently config.php gets loaded ahead of that. Is there any way to get a recipe loaded

Re: [pmwiki-users] Fox install issues

2008-03-10 Thread Hans
Monday, March 10, 2008, 3:40:25 PM, Jean-Fabrice [gmail] wrote: Apache crashes with a few info : [Mon Mar 10 16:31:45 2008] [notice] child pid 9654 exit signal Segmentation fault (11) System is Colinux Etch with apache 2 / php5 Putting some traces in fox.php, the problem seems to be in the

Re: [pmwiki-users] Fox install issues

2008-03-10 Thread Hans
Monday, March 10, 2008, 3:40:25 PM, Jean-Fabrice [gmail] wrote: Putting some traces in fox.php, the problem seems to be in the FoxTemplateVarReplace function I have now replaced use of php 'create_function' in the function mentioned with use of a distinct function. Maybe this helps with the

Re: [pmwiki-users] Clicking Go on search searches for the word Search

2008-03-10 Thread wiki question
Can anyone point me in the right direction for this? Where is the Search box code for the sidebar when using the fixflow skin? Thanks, Ben wiki question [EMAIL PROTECTED] wrote: Version pmwiki-2.2.0-beta65 Skin: Fix flow When I enter anything into the search box and

Re: [pmwiki-users] Clicking Go on search searches for the word Search

2008-03-10 Thread wiki question
OK, thanks for the explanation -- php is still very new to me I must have a glitch somewhere in one of my settings. When I change the following line in skin-fixflow.tmpl !--markup:(:searchbox label=$[Go] value=$[Search] focus=true:)-- to !--markup:(:searchbox label=$[Go]

Re: [pmwiki-users] Clicking Go on search searches for the word Search

2008-03-10 Thread Hans
Monday, March 10, 2008, 5:51:10 PM, wiki question wrote: When I change the following line in skin-fixflow.tmpl !--markup:(:searchbox label=$[Go] value=$[Search] focus=true:)-- to !--markup:(:searchbox label=$[Go] value=$[Search] )-- It stops replacing my search value

Re: [pmwiki-users] Clicking Go on search searches for the word Search

2008-03-10 Thread wiki question
Found this: !--markup:(:searchbox label=$[Go] value=$[Search] focus=false:)-- I gues my next question to the php GURUs is: How do I get it to stop replacing my search string with the word Search when I click Go? Thanks, Ben wiki question [EMAIL PROTECTED] wrote: Can

Re: [pmwiki-users] Clicking Go on search searches for the word Search

2008-03-10 Thread Hans
PS: perhaps even better replace in searchbox2.php if ($focus) $out .= onfocus=\preval=this.value; this.value=''\ onblur=\this.value=preval\ ; with if ($focus) $out .= onfocus=\if(this.value=='{$opt['value']}') this.value=''\ onblur=\if(this.value=='')

Re: [pmwiki-users] Clicking Go on search searches for the word Search

2008-03-10 Thread Hans
Monday, March 10, 2008, 5:11:08 PM, wiki question wrote: Can anyone point me in the right direction for this? Where is the Search box code for the sidebar when using the fixflow skin? the default sidebar searchbox is coded in the skin's tmpl file: div id='sidebarsearch'

Re: [pmwiki-users] Clicking Go on search searches for the word Search

2008-03-10 Thread wiki question
That didn't appear to work: Here is what I have: ?php if (!defined('PmWiki')) exit(); /* alternative searchbox function markup, with onfocus and onblur events fully capable of pmwiki's advanced pagelist and search results functions. */ ## versiondate: 2006-11-25 ## redefine

Re: [pmwiki-users] Clicking Go on search searches for the word Search

2008-03-10 Thread wiki question
This works -- Thanks again!! Hans [EMAIL PROTECTED] wrote: PS: perhaps even better replace in searchbox2.php if ($focus) $out .= onfocus=\preval=this.value; this.value=''\ onblur=\this.value=preval\ ; with if ($focus) $out .= onfocus=\if(this.value=='{$opt['value']}') this.value=''\

Re: [pmwiki-users] Clicking Go on search searches for the word Search

2008-03-10 Thread Hans
perhaps even better replace in searchbox2.php I updated fixflow on pmwiki.org accordingly. http://www.pmwiki.org/wiki/Cookbook/FixFlowSkin ~Hans ___ pmwiki-users mailing list pmwiki-users@pmichaud.com

Re: [pmwiki-users] Fox install issues

2008-03-10 Thread Jean-Fabrice [gmail]
new version fox.php 2008-03-10 download from http://www.pmwiki.org/wiki/Cookbook/Fox I'll give it a try this evening and keep you informed. I'll also try it on a 'standard' Debian OS. Thank you ! JF ___ pmwiki-users mailing list

[pmwiki-users] pmwiki 2.2.0 Roadmap

2008-03-10 Thread Laurent Meister
Hello everybody, due to extensive work in the last weeks, i had not much time to follow the discussions here. How is it going on with pmwiki 2.2.0? there are no more beta updates for a while now, will the final version of 2.2.0 come soon? sorry if i missed resent discussions on these

Re: [pmwiki-users] Fox install issues

2008-03-10 Thread Jean-Fabrice [gmail]
2008/3/10, Hans [EMAIL PROTECTED]: Monday, March 10, 2008, 3:40:25 PM, Jean-Fabrice [gmail] wrote: new version fox.php 2008-03-10 download from http://www.pmwiki.org/wiki/Cookbook/Fox I did not succeed with this release too. I also tryied with a fresh new pmwiki install (same issue), and on

Re: [pmwiki-users] Fox install issues

2008-03-10 Thread Jean-Fabrice [gmail]
If it can help (not sure it can), I make a test with a 2007-09-29a version I have in production, and it works. Did you keep some version between this one and the latest I could test ? JF 2008/3/10, Jean-Fabrice [gmail] [EMAIL PROTECTED]: 2008/3/10, Hans [EMAIL PROTECTED]: Monday, March 10,

Re: [pmwiki-users] order of initializing

2008-03-10 Thread H. Fox
On Mon, Mar 10, 2008 at 9:04 AM, Peter Melodye Bowers [EMAIL PROTECTED] wrote: I was trying to run a function (not just define it but actually run it) at the time my recipe is being loaded via include_once() from config.php. My function required scripts/markupexpr.php to be loaded and

[pmwiki-users] Cookbook output help: emailto

2008-03-10 Thread Dave Miller
Hi All, I'm writing a recipe in which I need to display a mailto: link with multiple addresses and a subject line. My test code is as follows: --- Markup('carpool', 'img', /\\(:carpool:\\)/e, test()); function test() { $out = ''; $out

[pmwiki-users] Case insensitive wiki links

2008-03-10 Thread Doug
Where's the option or setting to go case-insensitive on the group.page links? I can't find it. I want to have foo.bar, Foo.Bar, or FOO.BAR all go to the same page. I thought mine had been case insensitive all along, but I just found out it's not. Thanks.

[pmwiki-users] Fox trouble

2008-03-10 Thread jim
Hello! I have been having install problems with Fox. I did fresh PmWiki install with a minimal config.php file setting the admin password and including fox.php. I when I submit the form I get nothing just a blank page. I am using Apache 2 on a windoz 2003 server. I have been running

Re: [pmwiki-users] How to Get Rid of PmWiki's Hardcoded Styles and Markup?

2008-03-10 Thread carlos . ab
Em Segunda 10 Março 2008 20:16, Andrew Standfield escreveu: I'd also like to know how to get rid of the superfluous divs it seems   to be fond of littering about. These seem to have something to do   with some theory of how white space should be handled, but it only   destroys my styling.

Re: [pmwiki-users] Fox install issues

2008-03-10 Thread Hans
Monday, March 10, 2008, 8:42:52 PM, Jean-Fabrice [gmail] wrote: If it can help (not sure it can), I make a test with a 2007-09-29a version I have in production, and it works. Did you keep some version between this one and the latest I could test ? There has been huge changes in between. I

Re: [pmwiki-users] Fox trouble

2008-03-10 Thread Hans
Monday, March 10, 2008, 11:22:07 PM, jim wrote: I have been having install problems with Fox. I did fresh PmWiki install with a minimal config.php file setting the admin password and including fox.php. I when I submit the form I get nothing just a blank page. I am using Apache 2 on a

Re: [pmwiki-users] How to Get Rid of PmWiki's Hardcoded Styles and Markup?

2008-03-10 Thread Hans
Monday, March 10, 2008, 11:16:48 PM, Andrew Standfield wrote: I want to *completely* suppress all styling information PmWiki puts out. Everything. I don't want the style information in the header, and I don't want any of PmWiki's CSS classes in my HTML tags. Check out

Re: [pmwiki-users] categories - names, i18n

2008-03-10 Thread Simon
What is the difference between [[! SomeCategory | text]] and [[Category/SomeCategory | text]] ? It seems to me that pages with [[! Somecategory]] are those that are labelled (tagged) with that category, and therefore should appear in the Category group. Those of the form [[Category/SomeCategory

[pmwiki-users] Problem with shared groups

2008-03-10 Thread James DeVain
In order to share new pages created in the group Whatever across all wikis in my farm, I'm using this: $WikiDir = new PageStore('$FarmD/shared.d-Whatever/$FullName'); in a group customization file (Whatever.php) in each field's local folder. It works fine in most cases - I create a new page in