Page 1 of 4

New dev release 1.1.9 [25-01-2005 12:50 UPDATED AGAIN]

Posted: Tue 25. Jan 2005, 01:40
by Oliver Georgi
[UPDATE]
I have uploaded 1.1.9-DEV again with some minor fixes and enhancements over the release of last night.

http://prdownloads.sourceforge.net/phpw ... p?download


If you still have installed DEV release please add following line of SQL to your database (there is an upgrade file in setup folder too):

Code: Select all

ALTER TABLE `phpwcms_articlecontent` ADD `acontent_block` varchar(200) NOT NULL default '0';
There is a new config setting:

Code: Select all

$phpwcms['DOC_ROOT'] = $_SERVER['DOCUMENT_ROOT'];
Change the value for your needs. But if not set it can be handled by phpwcms too - will not be available in future releases.

It is not recommend to rename folder "content" and subdirs there. These will become fixed settings in future release. Check the new subdir "rss" there used for storing cached RSS feeds.

Interesting?

Image

Image


So have fun.


Oliver

Posted: Tue 25. Jan 2005, 02:18
by Goran
Oliver,I think temporary folder missing in 1.1.9-DEV.zip.


phpwcms_tmp
-------thumb_list
-------thumb_preview

error message when adding e-mail form content part

Posted: Tue 25. Jan 2005, 02:46
by marco
Great new release!!! It is getting better and better.

I am not sure if this is the place to post this but here it is:

When adding an e-mail form content part to an existing article there is this error message displayed on an orange line before the content title text box right:

"error:> proof recipient - email format error;

Is this is an installation/config error?

I just ran setup over the 1.15 version with the sample layout from one of the wcms support sites. The setup went ok, I first ran the update SQL as indicated.

The upgrade.php did not work, it redirected me to phpwcms.de

Posted: Tue 25. Jan 2005, 07:46
by Oliver Georgi
as described: setup process has to be enhanced/changed. will do that a bit in next release.

The "old" temp folder is not neccessary anymore (should be) - maybe there are some not changed content part settings like bid.
marco wrote:"error:> proof recipient - email format error;
you have to fill in a recipient before sending content part.

Oliver

Error: Save Startup Text

Posted: Tue 25. Jan 2005, 09:40
by kubens
Hi Oliver,

just for your info. If you try to save an empty startup text the following error message appears:

Code: Select all

Warning: fread() [function.fread]: Length parameter must be greater than 0. in phpwcms/include/inc_lib/general.inc.php on line 666
Backend default startup text
BR
Wolfgang

Posted: Tue 25. Jan 2005, 11:45
by Oliver Georgi
Thanks - changed: if empty = line break ;-)

Oliver

WYSIWYG Spaw

Posted: Tue 25. Jan 2005, 12:29
by rsantifort
I see a new option in the config.inc.php at the WYSIWYG configuration:

4. spaw

What is this new option?

- Saw the demo -- Like it very much!

Re: WYSIWYG Spaw

Posted: Tue 25. Jan 2005, 12:32
by frold
rsantifort wrote:I see a new option in the config.inc.php at the WYSIWYG configuration:

4. spaw

What is this new option?
It is not a new option... SPAW is a wysiwug editor like HTMLarea and FCKeditor...

to test spaw look here: http://www.solmetra.com/spaw/demo/demo.php

Posted: Tue 25. Jan 2005, 12:40
by Oliver Georgi
Spaw: It's just a newer release - but does not work very well for Mozilla/Firefox - so this feature is disabled at the moment - limited to IE5.5+

Oliver

Posted: Tue 25. Jan 2005, 13:04
by frold
wauw I like the new internal design.... such pro it looks 8)

Posted: Tue 25. Jan 2005, 13:30
by pSouper
Mmmm... you have a great looking rear end: oops backend ;)

I'll road test it right away....

Posted: Tue 25. Jan 2005, 15:50
by spirelli
Oliver Georgi wrote:Spaw: It's just a newer release - but does not work very well for Mozilla/Firefox - so this feature is disabled at the moment - limited to IE5.5+

Oliver
really?! what a shame. I was so looking forward to it (it says something about Gecko support on their website) as the buttons in Spaw just look so much nicer than the other editors.

Posted: Tue 25. Jan 2005, 15:53
by Oliver Georgi
It's a beta - so no hurry. Sometimes it works sometimes not...

Oliver

Posted: Tue 25. Jan 2005, 16:25
by frold
In

include\inc_tmpl\message.subscribersimport.tmpl.php

Code: Select all

				echo '<td class="error" colspan="2">&nbsp;'.$BL['be_newsletter_csverror'].' [<a href="http://phpwcms.myftp.org/phpwcms.php?do=messages&p=5">BACK</a>]</td>';
SHOULD BE

Code: Select all

				echo '<td class="error" colspan="2">&nbsp;'.$BL['be_newsletter_csverror'].' [<a href="phpwcms.php?do=messages&p=5">BACK</a>]</td>';

Code: Select all

		echo '<strong>'.$k.' '.$BL['be_newsletter_addressesadded'].'</strong> [<a href="http://phpwcms.myftp.org/phpwcms.php?do=messages&p=5">'.$BL['be_newsletter_newimport'].'</a>]';
SHOULD BE

Code: Select all

		echo '<strong>'.$k.' '.$BL['be_newsletter_addressesadded'].'</strong> [<a href="phpwcms.php?do=messages&p=5">'.$BL['be_newsletter_newimport'].'</a>]';

Posted: Tue 25. Jan 2005, 18:41
by marco
Oliver Georgi wrote:as described: setup process has to be enhanced/changed. will do that a bit in next release.

The "old" temp folder is not neccessary anymore (should be) - maybe there are some not changed content part settings like bid.
marco wrote:"error:> proof recipient - email format error;
you have to fill in a recipient before sending content part.

Oliver
I am not yet sending anything; I was only trying to define the content part first to include the mail form on a page; that's when I got the error; no big deal for me, I am just testing and I only wanted to bring this to your attention in case it is something that needs fixing.