SourceForge logo
SourceForge logo
Menu

phpwiki-talk

You can subscribe to this list here.

2000 Jan
Feb
Mar
Apr
May
(1)
Jun
(103)
Jul
(105)
Aug
(16)
Sep
(16)
Oct
(78)
Nov
(36)
Dec
(58)
2001 Jan
(100)
Feb
(155)
Mar
(84)
Apr
(33)
May
(22)
Jun
(77)
Jul
(36)
Aug
(37)
Sep
(183)
Oct
(74)
Nov
(235)
Dec
(165)
2002 Jan
(187)
Feb
(183)
Mar
(52)
Apr
(10)
May
(15)
Jun
(19)
Jul
(43)
Aug
(90)
Sep
(144)
Oct
(144)
Nov
(171)
Dec
(78)
2003 Jan
(113)
Feb
(99)
Mar
(80)
Apr
(44)
May
(35)
Jun
(32)
Jul
(34)
Aug
(34)
Sep
(30)
Oct
(57)
Nov
(97)
Dec
(139)
2004 Jan
(132)
Feb
(223)
Mar
(300)
Apr
(221)
May
(171)
Jun
(286)
Jul
(188)
Aug
(107)
Sep
(97)
Oct
(106)
Nov
(139)
Dec
(125)
2005 Jan
(200)
Feb
(116)
Mar
(68)
Apr
(158)
May
(70)
Jun
(80)
Jul
(55)
Aug
(52)
Sep
(92)
Oct
(141)
Nov
(86)
Dec
(41)
2006 Jan
(35)
Feb
(62)
Mar
(59)
Apr
(52)
May
(51)
Jun
(61)
Jul
(30)
Aug
(36)
Sep
(12)
Oct
(4)
Nov
(22)
Dec
(34)
2007 Jan
(49)
Feb
(19)
Mar
(37)
Apr
(16)
May
(9)
Jun
(38)
Jul
(17)
Aug
(31)
Sep
(16)
Oct
(34)
Nov
(4)
Dec
(8)
2008 Jan
(8)
Feb
(16)
Mar
(14)
Apr
(6)
May
(4)
Jun
(5)
Jul
(9)
Aug
(36)
Sep
(6)
Oct
(3)
Nov
(3)
Dec
(3)
2009 Jan
(14)
Feb
(2)
Mar
(7)
Apr
(16)
May
(2)
Jun
(10)
Jul
(1)
Aug
(10)
Sep
(11)
Oct
(4)
Nov
(2)
Dec
2010 Jan
(1)
Feb
Mar
(13)
Apr
(11)
May
(18)
Jun
(44)
Jul
(7)
Aug
(2)
Sep
(14)
Oct
Nov
(6)
Dec
2011 Jan
(2)
Feb
(6)
Mar
(3)
Apr
(2)
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2012 Jan
(11)
Feb
(3)
Mar
(11)
Apr
May
Jun
Jul
Aug
Sep
Oct
(1)
Nov
(4)
Dec
2013 Jan
Feb
Mar
Apr
(3)
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2014 Jan
Feb
Mar
Apr
May
(4)
Jun
Jul
Aug
Sep
Oct
Nov
(8)
Dec
(1)
2015 Jan
(3)
Feb
(2)
Mar
Apr
(3)
May
(1)
Jun
Jul
(1)
Aug
Sep
Oct
Nov
Dec
(2)
2016 Jan
Feb
(4)
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2017 Jan
Feb
Mar
Apr
May
Jun
Jul
(3)
Aug
Sep
Oct
Nov
Dec
2018 Jan
Feb
Mar
Apr
May
(3)
Jun
(1)
Jul
Aug
Sep
Oct
Nov
Dec
2020 Jan
Feb
Mar
Apr
May
(3)
Jun
Jul
(5)
Aug
Sep
Oct
Nov
Dec
2021 Jan
Feb
(4)
Mar
Apr
May
Jun
Jul
(1)
Aug
(6)
Sep
(3)
Oct
Nov
Dec
2022 Jan
(11)
Feb
(2)
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2023 Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
(1)
Nov
(3)
Dec
(3)
2024 Jan
(7)
Feb
(2)
Mar
(1)
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2025 Jan
Feb
Mar
Apr
(1)
May
(1)
Jun
Jul
(3)
Aug
Sep
(1)
Oct
Nov
Dec
S M T W T F S




1
2
3
4
5
6
7
(1)
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(1)
23
24
25
26
(2)
27
28
29
30
31

Showing 4 results of 4

From: Harold H. <ha...@ha...> - 2014年05月26日 18:55:03
> Le 22/05/2014 14:35, Harold Hallikainen a écrit :
>>
>> I'm migrating to a new server and am installing phpwiki-code-8855-trunk.
>> I'm getting a lot of warnings about preg_replace.
>>
>> Warning: "preg_replace(): The /e modifier is deprecated, use
>> preg_replace_callback instead"
>>
>> In /etc/php.ini, I have this line:
>> error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
>>
>> which seems it should suppress warnings about deprecated features. But,
>> the warnings keep showing up.
>
> Hello Harold,
>
> I just created a patch to replace preg_replace with
> preg_replace_callback.
>
> It is in Subversion revision 8856.
>
> Can you please see if it solves your problem?
>
> Best regards,
>
> Marc-Etienne Vargenau
THANKS! That seems to reduce the number of warnings, but I suspect this is
also used in other files (and I'm having trouble figuring out which ones
since php error logging does not seem to be working).
I'll see if I can find the other occurrences. If you can find them also,
that would be great!
Thanks!
Harold
-- 
FCC Rules Updated Daily at http://www.hallikainen.com - Advertising
opportunities available!
Not sent from an iPhone.
From: Marc-Etienne V. <Mar...@al...> - 2014年05月26日 14:53:09
Le 22/05/2014 14:35, Harold Hallikainen a écrit :
>
> I'm migrating to a new server and am installing phpwiki-code-8855-trunk.
> I'm getting a lot of warnings about preg_replace.
>
> Warning: "preg_replace(): The /e modifier is deprecated, use
> preg_replace_callback instead"
>
> In /etc/php.ini, I have this line:
> error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
>
> which seems it should suppress warnings about deprecated features. But,
> the warnings keep showing up.
Hello Harold,
I just created a patch to replace preg_replace with
preg_replace_callback.
It is in Subversion revision 8856.
Can you please see if it solves your problem?
Best regards,
Marc-Etienne Vargenau
-- 
Marc-Etienne Vargenau Mar...@al...
Alcatel-Lucent France, Route de Villejust, 91620 NOZAY, FRANCE
+33 1 60 40 28 33 OnNet 2103 2833
From: Harold H. <ha...@ha...> - 2014年05月22日 13:03:24
I'm migrating to a new server and am installing phpwiki-code-8855-trunk.
I'm getting a lot of warnings about preg_replace.
Warning: "preg_replace(): The /e modifier is deprecated, use
preg_replace_callback instead"
In /etc/php.ini, I have this line:
error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
which seems it should suppress warnings about deprecated features. But,
the warnings keep showing up.
Any ideas on an easy fix for this?
THANKS!
Harold
-- 
FCC Rules Updated Daily at http://www.hallikainen.com - Advertising
opportunities available!
Not sent from an iPhone.
-- 
FCC Rules Updated Daily at http://www.hallikainen.com - Advertising
opportunities available!
Not sent from an iPhone.
From: Peter K. <pet...@gm...> - 2014年05月07日 00:52:13
I see that you use HttpUnit tests in PhpWiki. However, if you'd like
automated browser-based functional/regression testing, you may be
interested in SeLite. It extends Selenium IDE. It allows your tests to
access (read and write to) a test DB (isolated from the DB of the tested
application). It's open source.
It could work very well for you, especially since PhpWiki can have its data
in an SQLite DB. SeLite uses a (separate) SQLite DB for test data, so your
test data lifecycle would be very easy. However, you can benefit from
SeLite even if your test instance of PhpWiki uses other type of DB.
Creating tests in Selenium IDE is convenient and highly productive. It
doesn't require low-level programming skills, so even users/theme designers
could contribute new tests. Tests can be maintained in SVN. See
https://code.google.com/p/selite/wiki/ProjectHome.
I could create a test framework and provide some examples. Would there be
any interest?
-Peter Kehl

Showing 4 results of 4

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /