RBP v1.0 Build 2.33h on Windows 2000

new BookmarkLockedFalling
StefanPendl
Global Moderator
*****

StefanPendl Avatar

Run for BASIC ...
Posts: 945

[b]Stefan[/b] - [a href=http://stefanpendl.runbasichosting.com/]Homepage[/a][br][br][b]Please give credit if you use code I post, no need to ask for permission.[/b][br][br]Run BASIC 1.01, Fire-/Waterfox (IE11, Edge), Windows 10 Professional x64, Intel Core i7-4710MQ 2.5GHz, 16GB RAM
Psycho
Full Member
***

Psycho Avatar

Posts: 196

Post by Psycho on Feb 1, 2008 12:53:05 GMT -5

About the same issue here at my work.
all buttons (open, save, run, etc.) show as broken image icons.
Any graphic commands end up displaying broken image icon.

v1.0 Build 2.33h

Windows 2000 5.00.2195 SP4
IE 6.0.2800.1106IS
Default install

When trying to use Firefox as editor, no button, links or broken image icons appear (can't run, save, open...)


John S.
Last Edit: Feb 1, 2008 12:53:41 GMT -5 by Psycho
StefanPendl
Global Moderator
*****

StefanPendl Avatar

Run for BASIC ...
Posts: 945

Post by StefanPendl on Feb 1, 2008 12:57:05 GMT -5

The problem is, that the PDA theme is displayed despite of the theme selection, this was no problem with RC3.

If I run the following code on Win2k, no images are displayed accessing the published project locally or remotely.
files #dir, "public\*.jpg"
isEmpty = #dir hasanswer()
print isEmpty
if isEmpty then
maxCount = #dir rowcount()
print maxCount
for i = 1 to maxCount
dummy$=#dir nextfile$()
imgName$ = "../public/"; #dir name$()
html "<p><img src="""; imgName$; """ width=""320"" hight=""240""></p>"
print imgName$
next
end if

If I run it on WinXP, all images are displayed, if I access the published project from Win2k ???
[b]Stefan[/b] - [a href=http://stefanpendl.runbasichosting.com/]Homepage[/a][br][br][b]Please give credit if you use code I post, no need to ask for permission.[/b][br][br]Run BASIC 1.01, Fire-/Waterfox (IE11, Edge), Windows 10 Professional x64, Intel Core i7-4710MQ 2.5GHz, 16GB RAM
carlgundel
Administrator
*****
Creator of Run BASIC

carlgundel Avatar

Posts: 975

Post by carlgundel on Feb 1, 2008 13:12:07 GMT -5

stefanp said:
The problem is, that the PDA theme is displayed despite of the theme selection, this was no problem with RC3.

It isn't the PDA theme. For some reason seemingly related to the timezone fix that was included in 2.33h the web server does not like to serve static files when running on Windows 2000. This is a known issue, and I am spending some energy on it. Luckily I do have a W2K box to test this on. I am hoping to have a fix for it sometime this month when we release v1.0.1.

-Carl
Last Edit: Feb 1, 2008 13:48:25 GMT -5 by carlgundel
StefanPendl
Global Moderator
*****

StefanPendl Avatar

Run for BASIC ...
Posts: 945

[b]Stefan[/b] - [a href=http://stefanpendl.runbasichosting.com/]Homepage[/a][br][br][b]Please give credit if you use code I post, no need to ask for permission.[/b][br][br]Run BASIC 1.01, Fire-/Waterfox (IE11, Edge), Windows 10 Professional x64, Intel Core i7-4710MQ 2.5GHz, 16GB RAM
StefanPendl
Global Moderator
*****

StefanPendl Avatar

Run for BASIC ...
Posts: 945

Post by StefanPendl on Mar 11, 2008 21:06:31 GMT -5

This is fixed in RBP 1.01 beta1

Checked with the following code
 files #dir, "public\*.jpg"
isEmpty = #dir hasanswer()
print isEmpty
if isEmpty then
maxCount = #dir rowcount()
print maxCount
for i = 1 to maxCount
dummy$ = #dir nextfile$()
imgName$ = "../public/"; #dir name$()
html "<p><img src="""; imgName$; """ width=""320"" hight=""240""></p>"
print imgName$
next
end if
[b]Stefan[/b] - [a href=http://stefanpendl.runbasichosting.com/]Homepage[/a][br][br][b]Please give credit if you use code I post, no need to ask for permission.[/b][br][br]Run BASIC 1.01, Fire-/Waterfox (IE11, Edge), Windows 10 Professional x64, Intel Core i7-4710MQ 2.5GHz, 16GB RAM
Psycho
Full Member
***

Psycho Avatar

Posts: 196