Search results

  1. jnjc

    Easily updated web page text area via .txt file mod

    A CMS might be overkill for what you are trying to do, the easiest way to do it is to use an iframe something like: <iframe height="350" frameborder="0" align="center" width="100%" src="http://test.txt" border="0"> </iframe> HTH, JC
  2. jnjc

    The "position" attribute

    I use it sparingly, mostly to set something as position:relative .... As for the Tables Vs Divs argument, that's a whole 'nother can of worms that I'm getting into, best bet would be to search this forum for previous threads on the subject..
  3. jnjc

    Google Adwords Placements

    Hi Folks, Can anybody point me in the right direction as to how to get adds listed in the top 'Sponsored Links' section of a google search. I can get my ads to appear on the right hand side of the seach page but I'd like them to appear in the top section above the search results. TIA, JC
  4. jnjc

    launch not download

    This command is to run the code server side, not when the user clicks. When the user clicks a link there is no php code being executed on the users machine (most won't have it installed), therefore the above will not do what he wants. Most browsers are pretty edgy about executing .exe...
  5. jnjc

    Send E-mail When Uploading

    All you need to do is put a call to one of the php mail routines in your code: $target_path = $_SERVER['DOCUMENT_ROOT'] . '/videos/' . basename( $_FILES['upfile']['name']); if(move_uploaded_file($_FILES['upfile']['tmp_name'], $target_path)) { echo "The file: ". basename(...
  6. jnjc

    Help me please !!!

    You problem is the code used to display the flash object. FF is not recognising it. Try and put together a simple page with just the flash object in it, then test it on all browsers, if ti doesn't work the do a google on display a flash object in FF .... HTH, JC
  7. jnjc

    launch not download

    Different browsers are going to do different things here, you best bet is to test it on the various browsers and hace an instructions page...
  8. jnjc

    Installing Apache

    I run PHP on my XP laptop and it works just fine. Go to the php.net and download the windows installer, it pretty much takes care of everything... HTH, JC
  9. jnjc

    Custom font family

    If it's for a heading just make a graphic of the heading and us it. If it's for the actual content, then I can only advice against trying to do something like this. Even if it you could get it to work for a particular browser/OS you will never get it to work X-Browser. HTH, JC
  10. jnjc

    Multiple files download

    Are you familiar with/have access to PHP ? If so look at writing a small program using stream_get_contents() inside a loop to do what you need. HTH, JC
  11. jnjc

    Installing Apache

    Where you getting the same message before you installed IIS ? I'd remove IIS before you go any further and then try again. Have you tried googling the error message ?
  12. jnjc

    Installing Apache

    At a guess it looks like IIS is running on that machine. There is a version of IIS on XP which allows local connections. Apache is saying it can't listen on port 80 because something else is. Port 80 is your http port so it's most likely IIS thats already listening on the port. Stop IIS and...
  13. jnjc

    Help me please !!!

    There are many different things that might stop them working in FF you'll need to post links.
  14. jnjc

    joomla help

    This can be caused by a corruption in your DB. Open the DB in phpMyAdmin and do a repair, it might sort it out. HTH, JC
  15. jnjc

    bastard anti-popup CMS

    I like Joomla (but I know that there are lots of people who would flame me for that). You most likely want an effect called 'light box' wherein the larger image loads as a overlayed div with the background greyed out. An example of that can be found here...
  16. jnjc

    Different Companies for Hosting + Domain Registrar

    You should be able to set things up without having to re-register. Some of this will depend on your hosting plans but you should be able to do it. 1) Find out the IP addresses of your DNS servers on Fatcow 2) Add your 1and1 domain to your Fatcow hosting as an add-on domain 3) Set the DNS...
  17. jnjc

    Snippet code placement help! urgent

    The line <body onload="afproDocumentLoad();"> Is executing the function afproDocumentLoad() when the body of the pages loads. You cannot modify your body tag so you need an alternative method to execute the function. You could just include the following in the top of you page...
  18. jnjc

    Snippet code placement help! urgent

    To execute the afproDocumentLoad() function use something like Mootools DomReady: http://mootools.net/docs/Utilities/DomReady Include the Mootools Scripts at the top of your page and then use something along the lines of the following to execute the function: window.addEvent('domready'...
  19. jnjc

    Website colors!

    Check out: http://www.colourlovers.com/ http://www.colourlovers.com/trends/websitecolors You might get some inspiration there. HTH, JC
  20. jnjc

    Content Management System

    I couldn't disagree more with JayT. I think CMS are great. I use Joomla and find it really simple to use and flexible. The scope is limitless and the ease of use is a real plus for the end user. I don't care who writes them if it saves me having to write it, great. I am not sure what...
Top