Search found 22 matches

by mtjmohr
Tue 28. Aug 2007, 21:15
Forum: phpwcms Support Deutsch
Topic: Benutzer-Gruppen
Replies: 3
Views: 1123

Sicher, ich kann den Usernamen auslesen, oder sogar sein Login, vielleicht sind beide in diesem Fall ja auch identisch. Aber einfacher wäre es, wenn ich die User einer Gruppe zuweisen könnte, um für diese Gruppe bestimmte Events einzustellen.

Bist Du vorangekommen?

Herzliche Grüsse


Markus
by mtjmohr
Tue 28. Aug 2007, 18:07
Forum: phpwcms Support Deutsch
Topic: Benutzer-Gruppen
Replies: 3
Views: 1123

Benutzer-Gruppen

Hallo,

gibt es eine Möglichkeit, bestimmten Benutzern einer phpwcms-Webseite eine Gruppierung oder ein irgendwie anders geartetes Merkmal zuzuordnen, also etwas, woran ich sie jenseits der üblichen Authentifizierung durch Login und Passwort erkennen kann?

Herzliche Grüsse


Markus Mohr
by mtjmohr
Mon 18. Apr 2005, 13:46
Forum: phpwcms Support English
Topic: Ersetzen von Content-Strings
Replies: 1
Views: 712

Ersetzen von Content-Strings

Hallo,

ist es möglich, einen einzelnen String im Content (z. B. "ISfT") durch einen anderen String (z. B. "ISfTeH") global für die ganze Webseite zu ersetzen? OG gab mir den Rat des Frontend Rendering. Gibtg es dazu Erfahrungen oder Scripts?

Liebe Grüsse


Markus
by mtjmohr
Fri 10. Dec 2004, 19:46
Forum: hacks & enhancements Support
Topic: VTS/phpOpentacker macht Probleme
Replies: 23
Views: 15019

Geholfen

mysql 3.x kann keine temporary tables...

ändert "CREATE TEMPORARY TABLE" zu "CREATE TABLE"

in:

/include/inc_ext/phpOpenTracker/phpOpenTracker/API/plugins/top.php line: 262

/include/inc_ext/phpOpenTracker/phpOpenTracker/API/plugins/search_engines.php line: 180

PS: wenn ihr im opentracker ...
by mtjmohr
Wed 20. Oct 2004, 15:06
Forum: phpwcms Support English
Topic: Gästebuch bzw. Template Änderung allgemein.
Replies: 16
Views: 6438

Hallo, Oliver,

"default.html" auf 644 zu stellen bringt keinen Unterschied. Pappnase: Danke.

Ciao


Markus

P. S.: Haben die anderen das Problem gelöst?
by mtjmohr
Tue 19. Oct 2004, 20:01
Forum: phpwcms Support English
Topic: Gästebuch bzw. Template Änderung allgemein.
Replies: 16
Views: 6438

Die permissions von "default.html" sind bei mir auf 757 gesetzt. Sollte doch eigentlich ausreichen.

Die Pfadeinstellungen in der "conf.inc.php" stimmen zu.

Letztere beiden Funktionen habe ich noch nicht eingesetzt. Welchem deutschen Content Part entspricht das, bitte?

Liebe Grüsse


Markus
by mtjmohr
Tue 19. Oct 2004, 14:50
Forum: phpwcms Support English
Topic: Gästebuch bzw. Template Änderung allgemein.
Replies: 16
Views: 6438

Ich habe genau das gleiche Problem, und die "open_basedir"-Einstellung in der PHP.INI ist da absolut nicht relevant (beide Einstellungen ausprobiert).

"default.html" wird so wohl nicht eingelesen.

Oliver, hast Du das Problem schon gesehen?

Ciao


Markus
by mtjmohr
Tue 20. Jul 2004, 23:42
Forum: phpwcms Support English
Topic: Is a kind of shop system possible with the email form?
Replies: 0
Views: 858

Is a kind of shop system possible with the email form?

Hi, all,

anyone tried out whether a kind of shop system is possible in which - simple enough - from a pulldown list (similar to that of the different countries) (several) items can be marked and sent to the recipient's email address through the email form?

Sincerely


Markus Mohr
by mtjmohr
Wed 30. Jun 2004, 15:13
Forum: phpwcms Support English
Topic: email form and redirect depending on the value of a variable
Replies: 19
Views: 8743

So, in other words, the workflow runs like this:

- definition of variables in "act_formmailer.php" as done above;
- data entry in email form;
- redirect from email form to another php script with all variables contained;
- checking for the variables and sending the "heaeder("..."); statement ...
by mtjmohr
Tue 29. Jun 2004, 18:40
Forum: phpwcms Support English
Topic: email form and redirect depending on the value of a variable
Replies: 19
Views: 8743

Yes, but the latest code example does exemplify this, doesn't it?


if (($_GET["Membership_Category"] == "National")) {
exit();
}
elseif (($_GET["Membership_Category"] == "Affiliate")) {
exit();
}
elseif (($_GET["Membership_Category"] == "Associated")) {
header('Location: '.$credit ...
by mtjmohr
Tue 29. Jun 2004, 18:29
Forum: phpwcms Support English
Topic: email form and redirect depending on the value of a variable
Replies: 19
Views: 8743

Maybe I am stupid and / or too unexperienced, but how shall I do this? I only get the values for these variables within the email form. Do I need to "outsource" these values to another script or really get them from another one, and if the latter is true, where is the position for this script?

I ...
by mtjmohr
Tue 29. Jun 2004, 17:38
Forum: phpwcms Support English
Topic: email form and redirect depending on the value of a variable
Replies: 19
Views: 8743

Now I have changed the latter part of the code to:


//
// Auswertung nach Membership Categories und anschliessender redirect
//
// if(isset($credit_card_1) || isset($credit_card_2) || isset($credit_card_3) || isset($credit_card_4)) {
if (($_GET["Membership_Category"] == "National")) {
exit ...
by mtjmohr
Tue 29. Jun 2004, 15:41
Forum: phpwcms Support English
Topic: email form and redirect depending on the value of a variable
Replies: 19
Views: 8743

This way it doesn't work. I presume that I have to get the "if .. then" clauses trying to retrieve the membership category information in a different manner.

Any idea?


Markus
by mtjmohr
Tue 29. Jun 2004, 14:47
Forum: phpwcms Support English
Topic: email form and redirect depending on the value of a variable
Replies: 19
Views: 8743

Okay, now I got it that way:


// Spezielle Erweiterung, um Formular-Daten in einer bestimmten Form an das
// element5-Credit-Card-Formular übergeben zu können
//
// Festlegen der Credit-Card-URLs
if(isset($_POST["credit_card1"])) {
$credit_card1 = trim($_POST["credit_card1"]);
unset($_POST ...
by mtjmohr
Tue 29. Jun 2004, 12:27
Forum: phpwcms Support English
Topic: email form and redirect depending on the value of a variable
Replies: 19
Views: 8743

Hello, Oliver,

here is my primary solution for a self-constructed way to differentiate between 7 forms of membership categories (mc); each mc is being redirected to another absolute URL:


if(isset($_POST["credit_card1"])) {
$credit_card1 = trim($_POST["credit_card1"]);
unset($_POST["credit ...