Search found 6 matches

by eASy
Fri 4. Nov 2005, 15:45
Forum: phpwcms Support English
Topic: htaccess and more arguments in the url???
Replies: 1
Views: 714

Hello,

forget it. I make a regex in my php-script to get the Parameter. Here the code if somebody need that:

Code: Select all

if ( preg_match_all('/([^\&^\?]+)\=([^\&^\?]+)/', $_SERVER['REQUEST_URI'], $out) )
Works fine. :)


Sunny Greetings...
by eASy
Fri 4. Nov 2005, 15:20
Forum: phpwcms Support English
Topic: htaccess and more arguments in the url???
Replies: 1
Views: 714

htaccess and more arguments in the url???

Hello,

i want to passthrough the URL-Parameters to my script with htaccess. Like:

http://www.domain.com/ordersuccess.phtml?id=12345

So i created a new .htaccess entry:

RewriteRule ^(.+)\.phtml\?(.+)$ index.php?$1&$2

But this does not work. If i do a print_r($_GET) in my script i only see ...
by eASy
Thu 3. Nov 2005, 11:54
Forum: phpwcms Support English
Topic: externe PHP-Scripts und Fehlermeldungen...
Replies: 3
Views: 1112

Hi Neelix,

ok in english. I hope you understand me. So here it is:

I use the [PHP]-Tag to include external scripts (for me: orderpanel). If i have a Error in that script (fe: syntax error) i get a white site, with no errors. Is it possible to see the errors?

Sunny Greetings...
by eASy
Thu 3. Nov 2005, 10:54
Forum: phpwcms Support English
Topic: externe PHP-Scripts und Fehlermeldungen...
Replies: 3
Views: 1112

externe PHP-Scripts und Fehlermeldungen...

Hallo,

ich hole mir via das [PHP]-Tag externe Scripts herein. Nun habe ich ein Problem, dass ich einen Fehler in dem Script habe, und nicht weiss wo, weil mir nur eine weisse Seite angezeigt wird. Wie kann ich die Fehlerausgabe aktivieren?

Sonnige Grüsse....
by eASy
Wed 2. Nov 2005, 09:29
Forum: phpwcms Support English
Topic: Automatische SessionID bei Links?
Replies: 4
Views: 1926

Hallo Oliver,

danke für den Hinweis. Dies hatte ich gestern abend auch schon festgestellt. :)

Sonnige Grüsse...
by eASy
Tue 1. Nov 2005, 09:59
Forum: phpwcms Support English
Topic: Automatische SessionID bei Links?
Replies: 4
Views: 1926

Automatische SessionID bei Links?

Hallo,

ich möchte gerne ein Bestell-Formular in PHPWCMS per [PHP]-Tag und include einbauen.
Da das Formular über mehrere Seite geht, möchte ich eine Session erstellen, um die schon vorhandenen Eingaben zu speichern. Nun meine Frage: Wie kann ich phpwcms sagen, dass es bei den Links, die ...