Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: JRBeltman
  • Order by date
  1. JRBeltman

    Want items next to eachh other

    Simply add 'float: left; display: inline;' to all your child declarations and that should do. You could also use he display: block if you like. And look up on google how to use CSS... JR (www.jrbeltman.com) IT = Logic (except for a well known OS where it equals luck) -> Back to the Basics!
  2. JRBeltman

    absolute positioned DIV height not fully displayed in IE

    Simple but elegant and it works! Cheers for the solution... You got a STAR! JR (www.jrbeltman.com) IT = Logic (except for a well known OS where it equals luck) -> Back to the Basics!
  3. JRBeltman

    absolute positioned DIV height not fully displayed in IE

    <div style='position: relative'> <div style='position: absolute; height: 2000px; border: 1px solid black;'>hi</div> </div> Try this out in a most simple html file and you will see the issue I'm talking about in IE6 (perhaps also other IE versions) It is caused by the absolute div being...
  4. JRBeltman

    CSS Overscrolling Issue

    Hi, the min-height is clever to start with. Also, rather use margin-bottom or spacers <div style='height:10px; clear: both; font-size: 10px'>&nbsp;</div> instead of <br> which will differ in height per browser. lol. I must admit that only after looking a second time I can see the overlapping...
  5. JRBeltman

    absolute positioned DIV height not fully displayed in IE

    Hi, I'm using the TIGA wordpress theme which uses an 'absolute positioned div' as sidebar. The problem is that the height of the div is larger than the screen and IE simply cuts the div off. When making it relative IE shows the complete div (full height). However, I need it absolute. Anyone...
  6. JRBeltman

    CLI in PHP

    Well, dreamhost support worked out that you can fool the script a little by using the -C parameter. That combined with -q actually works for this particular 3rd party script I was really trying to get running. Heck yes, it still runs as CGI though and if you have a solution of getting it to run...
  7. JRBeltman

    CLI in PHP

    Haha, stupid me, it is a script indeed.. Not that that helps me..... but hey, it is a script.. Hope it tells you something? Cheers JR (www.jrbeltman.com) IT = Logic (except for a well known OS where it equals luck) -> Back to the Basics!
  8. JRBeltman

    CLI in PHP

    Tried those. bin/php gets me the empty php dir. cli/php or php/cli gives me nothing.. I have written to the dreamhost support to double check it is really installed.... and if so where? Coz am I correct in thinking it is simply not there? JR (www.jrbeltman.com) IT = Logic (except for a well...
  9. JRBeltman

    CLI in PHP

    Wow! That returned a list soooooo long it didnt fit the screen at all... not by a million times :) Is there a way of making the locater 'spell' more precise/selective? JR (www.jrbeltman.com) IT = Logic (except for a well known OS where it equals luck) -> Back to the Basics!
  10. JRBeltman

    CLI in PHP

    the thing is I am not a linux person... so, no idea where to locate or how to locate cli... I was browsing some directories via telnet, found something like /usr/local/bin/php which is empty (mostlikely a symlink as far as I understand that term)... But how to really find cli? I aint got a...
  11. JRBeltman

    CLI in PHP

    It is php 4.4.4 Host is dreamhost... Hmmm, well I dont want CLI to run as the main interpreter. But in this case I need it for this one file.... I have been reading that I can use enable-cli ? But does this change anything to the default interpreter? Or should I adjust that path to something...
  12. JRBeltman

    CLI in PHP

    it simply outputs CGI and I was hoping to see CLI JR (www.jrbeltman.com) IT = Logic (except for a well known OS where it equals luck) -> Back to the Basics!
  13. JRBeltman

    CLI in PHP

    Hi I am trying to run a PHP script from the crontab. Cron actually executes the script, but.... Eventhough I added the CLI path to the start of the php file a test with echo php_sapi_name() returns CGI My file: #!/usr/local/bin/php <?php echo $sapi = php_sapi_name(); ?> I have been told...
  14. JRBeltman

    Trying to set height of subreport

    ok, but the borders are off.... :) JR (www.jrbeltman.com) IT = Logic (except for a well known OS where it equals luck) -> Back to the Basics!
  15. JRBeltman

    Trying to set height of subreport

    Top of my head: I right click the subreport, select 'object size & position' and set the height to .04 It works in like 10 reports and I have read many posts that tell me .04 is the absolute minimum.... But for some bizarre reason it doesnt stick in this report. I obviously do this because my...
  16. JRBeltman

    Trying to set height of subreport

    Hi, I am trying to set the height of a subreport by using a formula in the report header or page header. I have no idea how to do this, but need it, cause every time I open the report the subreport height seems to be reset to something like 0.1 instead of the 0.04 I set. No idea how this...
  17. JRBeltman

    htaccess on different domain

    Hi Jpadie, are you trying to tell me that this was a great idea of mine, but it cant be done? and I should go on dreaming :) JR (www.jrbeltman.com) IT = Logic (except for a well known OS where it equals luck) -> Back to the Basics!
  18. JRBeltman

    htaccess on different domain

    hmm sorry, I should have mentioned clearly that including is not the issue. But the htaccess authentication is... I want my parent script to authenticate for me.... cant get it to work. JR (www.jrbeltman.com) IT = Logic (except for a well known OS where it equals luck) -> Back to the Basics!
  19. JRBeltman

    htaccess on different domain

    Hi, I am facing an issue where I try to get my PHP script to include another script on a different domain in a htaccess protected area. I have been reading about getting this to work on the same domain, which seems no issue, but I am lost on how to get it working for a different domain. Help...
  20. JRBeltman

    Do I need PERL for CGI?

    Thanks, I have meanwhile downloaded the latest Active Perl and will try it tomorrow... Hope it will get me what I want..... Thanks again JR (www.jrbeltman.com) IT = Logic (except for a well known OS where it equals luck) -> Back to the Basics!

Part and Inventory Search

Back
Top