Strange Error with Backend Buttons

Please post all install related problems here. Visit this forum first for troubleshooting.
plotti
Posts: 34
Joined: Thu 7. Oct 2004, 14:40

Strange Error with Backend Buttons

Post by plotti »

See below:
Image
Last edited by plotti on Tue 3. May 2005, 14:58, edited 1 time in total.
Pappnase

Post by Pappnase »

hello

what should we see there is no image to display! ;-)
plotti
Posts: 34
Joined: Thu 7. Oct 2004, 14:40

Post by plotti »

should work now. sorry.
plotti
Posts: 34
Joined: Thu 7. Oct 2004, 14:40

Post by plotti »

especially this is in the upper corner of the site:
Image
plotti
Posts: 34
Joined: Thu 7. Oct 2004, 14:40

Post by plotti »

and this comment is in the plaintext:
<?= '<!-- '.ACTIVE_REFERER.' //-->' ?>
plotti
Posts: 34
Joined: Thu 7. Oct 2004, 14:40

Post by plotti »

PHP Version 4.3.8
User avatar
pico
Posts: 2595
Joined: Wed 28. Jul 2004, 18:04
Location: Frankfurt/M Germany
Contact:

Post by pico »

Hi

looks like there is somewhere in your php-Code Scripts a semikolon ; is missing or another 'end'-Sign like ' "
Lieber Gott gib mir Geduld - ABER BEEIL DICH
Horst - find me at Musiker-Board
Pappnase

Post by Pappnase »

hello

i would say upload the whole include folder once again!
plotti
Posts: 34
Joined: Thu 7. Oct 2004, 14:40

Post by plotti »

i did it and it did not help :(

perhaps a freh install would help, but thats a lot of work...
Pappnase

Post by Pappnase »

hello

i don't think that this is an phpwcms error!
this would be an server error! delete all! reupload all! how did you upload as binary or ascii?
plotti
Posts: 34
Joined: Thu 7. Oct 2004, 14:40

Post by plotti »

I uploaded in in mixed mode depending on the files...
plotti
Posts: 34
Joined: Thu 7. Oct 2004, 14:40

Post by plotti »

i just found out that i was uploading .js files binary, it might have been the error... i'll report
plotti
Posts: 34
Joined: Thu 7. Oct 2004, 14:40

Post by plotti »

does anybody know which files exactly have to be transferred ascii and binary?
plotti
Posts: 34
Joined: Thu 7. Oct 2004, 14:40

Post by plotti »

oh wtf is that system about:

I've unpacked a clean version of phpwcms 1.2.1
and have found the bug:

it is in:
articlecontent.list.tmpl.php

in about line 151
the code is:

Code: Select all

<td><input type="submit" name="image" value="<? $BL['be_article_cnt_add'] ?>" class="v10" title="<? $BL['be_article_cnt_addtitle'] ?>"></td>

Seems my Webserver doesnt parse shorttags thats bad news for me.
But why dont you use the normal tags instead?


but it should be:

Code: Select all

<td><input type="submit" name="image" value="<?php echo $BL['be_article_cnt_add'] ?>" class="v10" title="<?php echo $BL['be_article_cnt_addtitle'] ?>"></td>
why the fuck is that error there? Did nobody encouter it before?
User avatar
pico
Posts: 2595
Joined: Wed 28. Jul 2004, 18:04
Location: Frankfurt/M Germany
Contact:

Post by pico »

Hi

if you use a Apache Server take a look into http.conf and you will see a Paprameter for this. :D or was it in the php.ini :? - can check it tommorrow
Lieber Gott gib mir Geduld - ABER BEEIL DICH
Horst - find me at Musiker-Board
Post Reply