Search results

  1. xav0989

    Can't establish a secure connection to the server??? - phpBB help

    The only way you can get your own personal SSL server is if you buy a private server (or a virtual server) and get a unique IP.
  2. xav0989

    PHP Login code integrating help....

    first of all, you should seriously think of going through a php tutorial if you plan on building yourself your website. Help on the forums is nice, but it may take days to accomplish what you can do in minutes with the right knowledge. I recommend 2 tutorials. First one is at w3schools...
  3. xav0989

    Please review my upload site.

    file dropper is nice, the theme is reminiscent of the old xdiv website. (memories show up)
  4. xav0989

    Embedding PHP scripts

    bits_york, when asking for help on the forums, always clearly state your problem, what resources have you searched or read and give some code and real examples (such as your site). Also state what goal are you searching to achieve and what are your current results. This way, you can get the...
  5. xav0989

    mod_rewrite help

    you forgot the hr part in the URL in the regex part. Also, to check if a redirection is effective, add the [R] flag to make the redirection apparent to the user. This will force the browser to redirect to the other page and you will be able to see if the redirection works.
  6. xav0989

    javascript redirect

    try having this: <script type="text/javascript"> //this will start the timer as soon as the page finishes loading window.onload = setTimeout("redirector()", 5000); //this is the actuall redirect function redirector(){ if (navigator.appName == "Netscape") { location.href =...
  7. xav0989

    set_include_path

    Try using absolute directory names instead of relative ones.
  8. xav0989

    Ajax ads

    Ads aren't the fastest loading things on earth, and sometimes, it affects the loading time of the whole page. We have to rely on tricks to make the ads load after the page has completely loaded. Therefore, it would help greatly if the ads were loaded through AJAX. This way, the page loading...
  9. xav0989

    Login Secure Pages

    In my website, I have two examples of member's only areas. One pretty advanced (although still in development) and one quite simple in terms of features. The simple one is called SUM for Simple User Management, and the advance one is called UserMan for User Management. I don't recommend using...
  10. xav0989

    Can i redirect pages automatically?

    I believe that <?PHP should be in fact <?php (I might be wrong, but it helps not to use caps if not needed) Also, you should avoid using only client-based redirection, since it can easily be bypassed. JavaScript should also be the last one you use since search engines don't use JavaScript and...
  11. xav0989

    Knowledge Base Items

    Aleks555, I believe that you have chosen the wrong thread to post this improvement request. To make sure that your idea will be heard, you should create a new thread. For the KB, you should add one: How to ask for technical help on the forums (in particular the programming help one)
  12. xav0989

    Ant on windows?

    Ant is a Java program meant to automate certain task that are made while developing applications. Well that was the initial goal. Now it is not restricted to application developing, although it's most used in that case. Its uses include cleaning an application's source code before compiling...
  13. xav0989

    PHP Contact form prob.

    I would recommend creating a contact system that doesn't rely solely on email. For instance, when a user submits the contact form, the values are stored in the database, and once in a while you open another webpage and read all the contact forms stored in the database. This way, even if the mail...
  14. xav0989

    Hide spread firefox in firefox but show in IE

    IE is one of the worst standard supporter, but at least they created the conditional statements (not standard!) which can help developers create code to tune up the look and workability in IE.
  15. xav0989

    PHP help

    You also said that you were new to the php world. I would recommed reading through tutorials to get yourself familiarized with php. I recommed the w3schools one for a complete tutorial, and the tizag one for a simple small one.
  16. xav0989

    Ant on windows?

    There are no .exe files in ant since it's a java program. When you double-click the jar file, the java byte-code JIT compiler is fired up and executes the ant program. If there would be .exe files, such as in Eclipse, there would be a need for a greater number of different package: one for...
  17. xav0989

    How did they do this?

    What do you mean by green url? The url looks normal to me.
  18. xav0989

    MySQL Format

    DBMS engines respect SQL standards less than browsers respect WWW standards.
  19. xav0989

    Deleting A directory

    The first line, $dirname, is a wrong value. How you presented it, the $dirname points to the /install/install directory. Put two dots instead of one, this should change the directory.
  20. xav0989

    a:active long URL problem

    I was wondering what the url parameters had to do with css.
Top