Search found 8 matches

by Bernd Glasstetter
Fri 6. Jul 2007, 21:27
Forum: phpwcms Installationsprobleme Deutsch
Topic: Keine Dateilisten mehr nach Upgrade von 1.2.6 auf 1.3.3
Replies: 3
Views: 2627

Ich fummel ungerne an Standardeinstellungen herum. Das ist ja nicht das einzige PHPWCMS, das ich betreue und da bin ich schon froh, wenn überall dasselbe drin steht in der Config. Sonst dreht man irgendwann hohl :D
by Bernd Glasstetter
Fri 6. Jul 2007, 15:42
Forum: phpwcms Installationsprobleme Deutsch
Topic: Keine Dateilisten mehr nach Upgrade von 1.2.6 auf 1.3.3
Replies: 3
Views: 2627

So wie es aussieht hat das Upgrade einfach die Dateien von phpwcms_filestorage nicht in filearchive kopiert. Dies gemacht geht es auf einmal.

Warum macht das das Upgrade nicht?
by Bernd Glasstetter
Fri 6. Jul 2007, 15:13
Forum: phpwcms Installationsprobleme Deutsch
Topic: Keine Dateilisten mehr nach Upgrade von 1.2.6 auf 1.3.3
Replies: 3
Views: 2627

Keine Dateilisten mehr nach Upgrade von 1.2.6 auf 1.3.3

Ich habe ein Upgrade von Version 1.2.6 auf Version 1.3.3 durchgeführt. Nun funktionieren die Dateilisten nicht mehr. Hier:

http://www.kommunalpartnerschaften-bw.de/phpwcms/index.php?index

sollte ganz unten eine Dateiliste auftauchen. Das tut sie aber nicht. Das Einzige, was im Quellcode zu sehen ...
by Bernd Glasstetter
Sat 21. Feb 2004, 09:51
Forum: phpwcms Support English
Topic: email form creation
Replies: 38
Views: 17772

And now another problem:

As far as I have seen two things are not possible:

- to send an e-mail to more than one recipient
- to send the same e-mail to one or more recipients in Blind Copy.

Can I suggest both as features for the next version? Would be really great :)
by Bernd Glasstetter
Sat 21. Feb 2004, 09:30
Forum: phpwcms Support English
Topic: email form creation
Replies: 38
Views: 17772

Found it:

Changed this in act_formmailer.php:
if(!ini_get('safe_mode')) {
mail($recipient, $subject_encoded, $body, $from);
} else {
mail($recipient, $subject_encoded, $body, $from);
}

into this:
if(!ini_get('safe_mode')) {
mail($recipient, $subject, $body, $from);
} else {
mail ...
by Bernd Glasstetter
Sat 21. Feb 2004, 09:24
Forum: phpwcms Support English
Topic: email form creation
Replies: 38
Views: 17772

Yes, removing the -f did the trick for me :)

BUT: One other problem came up: The mail I receive for myself doesn't have a subject, yet the mail the sender receives in copy has a subject.
by Bernd Glasstetter
Fri 20. Feb 2004, 17:35
Forum: phpwcms Support English
Topic: email form creation
Replies: 38
Views: 17772

register_globals is on - and which one is the most recent formmailer? Where can I download it? :)
by Bernd Glasstetter
Fri 20. Feb 2004, 13:35
Forum: phpwcms Support English
Topic: email form creation
Replies: 38
Views: 17772

I have the same problem here:

I am not able to send an e-mail to the recipient, however the send_copy functions. And this with accounts on my own server. We have installed 1.1 RC 2.

The server supports the function, as we have already programmed other scripts on this system.

So could you please ...