I have a PHP application created (on RentACoder) in RADPHP. When I run it from RADPHP IDE it works. However, when it is online only a small part of the interface is shown.
Any hints about what I should do to make it work?
I have a PHP application created (on RentACoder) in RADPHP. When I run it from RADPHP IDE it works. However, when it is online only a small part of the interface is shown.
Any hints about what I should do to make it work?
However, when it is online only a small part of the interface is shown.
A missing extension? Could be anything really. Put this at the beginning of your script to make PHP more verbose:
ini_set('display_errors', 1);
error_reporting(E_ALL);
and take it from there, I guess.
There´s not a lot of information here, so I´ll just take a wild guess: Perhaps your offline environment is case-insensitive and your online environment is not.
Solved. This is a bug in RadPHP. It happens when the user edits the Font property (for any control on the form).