Search found 17 matches

by eflexer
Fri 4. Jun 2004, 09:50
Forum: phpwcms Support English
Topic: GD Stress :-(
Replies: 9
Views: 2618

Na endlich,
wie schon vermutet war die GD falsch konfiguriert.
Unterstützt angeblich standardmässig kein jpg? :roll:

cheers, Tom
by eflexer
Thu 3. Jun 2004, 22:36
Forum: phpwcms Support English
Topic: Navigation - Rahmen um Tabellenzeile
Replies: 6
Views: 2539

Hallo,

bau Dir doch einfach die Navi nach Deinen Wünschen um.
Findest Du in der Datei

Code: Select all

/include/inc_front/front.func.inc.php
ca. bei Zeile 760

Die aktive Zelle begint bei

Code: Select all

if($temp_tree[$key]) 
Du könntest z.B. in die aktive Zelle eine weitere Tabelle um den Link setzen.

Cheers, Tom
by eflexer
Thu 3. Jun 2004, 22:25
Forum: phpwcms Support English
Topic: GD Stress :-(
Replies: 9
Views: 2618

no problem, i am just a little bit nervous about this fu**ing problem. :evil:

I think, it´s better going home, drinking a beer
and go to sleep.

Maybe tomorrow I have a :idea:

Thanks anyway :)

Cheers, Tom
by eflexer
Thu 3. Jun 2004, 22:17
Forum: phpwcms Support English
Topic: wo wird die navigation und die bildergalerie generiert?
Replies: 4
Views: 1927

hallo,

die navi-table mit den rollovern wird in der datei

Code: Select all

/include/inc_front/front.func.inc.php
ungefähr ab zeile 760 generiert.
Such mal nach
function build_levels
Für die Bildgallerie in der gleichen Datei nach
function imagelisttable
.

Cheers, Tom
by eflexer
Thu 3. Jun 2004, 21:54
Forum: phpwcms Support English
Topic: GD Stress :-(
Replies: 9
Views: 2618

hello,

thanks for your trying, but I will say it again. The site is online for
few weeks without problems. Therefore is it not required to upload the site again.

However, I think it is a misconfiguration. He must recompiling the
PHP-Config.

Cheers, Tom
by eflexer
Thu 3. Jun 2004, 21:20
Forum: phpwcms Support English
Topic: GD Stress :-(
Replies: 9
Views: 2618

yep, looks like
$phpwcms["use_gd2"] =1; //0 = GD1, 1 = GD2
As afore said. The site is online for few weeks and in the meantime
there are a lot of Thumbs created without trouble.. :?
by eflexer
Thu 3. Jun 2004, 20:20
Forum: phpwcms Support English
Topic: GD Stress :-(
Replies: 9
Views: 2618

GD Stress :-(

Hi,

since my Provider update PHP to Version 4.3.6 and GD to Version bundled (2.0.22 compatible), I have Stress to generate Thumbnails.

All Permissions on folders are correct, but when I try to generate a thumb the following error appears:

This function does not exist: ImageCreateFromJpeg
file ...
by eflexer
Sun 21. Mar 2004, 19:20
Forum: phpwcms Installation Troubleshooting English
Topic: Root Path Problem..
Replies: 10
Views: 5100

Add this line in "conf.inc.php" under "site values":

Code: Select all

$_SERVER['DOCUMENT_ROOT'] = 'C:\Inetpub/your_path_2_phpwcms/';
It´s a IIS-Issue, cause the DOCUMENT_ROOT is allways empty.

Cheers, Tom
by eflexer
Tue 16. Mar 2004, 19:03
Forum: phpwcms Support English
Topic: {PHP: foo.php} I am too stupid ?
Replies: 8
Views: 2752

The space doesn't matter.

It works so
{PHP:../../include/inc_ext/apps/intern/index.php}
or so
{PHP: ../../include/inc_ext/apps/intern/index.php}

Only this
{PHP:/sub/test/index.php}

doesn´t work, because it is rather a php include problem.

I am a php-newbie therefore it is need a little ...
by eflexer
Tue 16. Mar 2004, 15:37
Forum: phpwcms Support English
Topic: {PHP: foo.php} I am too stupid ?
Replies: 8
Views: 2752

Solved

Code: Select all

{PHP: ../../test/index.php}

is working in this example :roll:
by eflexer
Tue 16. Mar 2004, 15:31
Forum: phpwcms Support English
Topic: {PHP: foo.php} I am too stupid ?
Replies: 8
Views: 2752

nope, doesn´t work :cry:
by eflexer
Tue 16. Mar 2004, 14:41
Forum: phpwcms Support English
Topic: {PHP: foo.php} I am too stupid ?
Replies: 8
Views: 2752

Yep, my root folder is "sub", my Replacement is

Code: Select all

{PHP: sub/test/index.php} 
and the error-message is

Code: Select all

Warning: include_ext_php( sub/test/index.php): failed to open stream: No such file or directory in C:\Inetpub\wwwroot\sub\include\inc_front\front.func.inc.php on line 955
by eflexer
Tue 16. Mar 2004, 14:13
Forum: phpwcms Support English
Topic: {PHP: foo.php} I am too stupid ?
Replies: 8
Views: 2752

{PHP: foo.php} I am too stupid ?

{PHP: foo.php} works
{PHP: test/php} doesn't work

What´s wrong?

Ciao
Tom
by eflexer
Thu 12. Feb 2004, 17:12
Forum: phpwcms Support English
Topic: Template code
Replies: 1
Views: 1178

by eflexer
Mon 9. Feb 2004, 13:07
Forum: phpwcms Support English
Topic: rewrite function
Replies: 10
Views: 3800

Check mal, ob mod_rewrite auf dem Server installiert, bzw. r

<?php
if (!empty($check_mod_rewrite)) {
$rewrite_result = 1;
} else {
$rewrite_result = 0;
}

if ($rewrite_result == 1) {
$result = "Mod_Rewrite is successfully installed!";
} else {
$result = "Mod_Rewrite is either not installed or is not configured properly!";
}

echo $result;

?> [/code ...