Search results

  1. freecrm

    How can I turn off my site temporarily ?

    OK - back - Two ways you can do this.. If you just want to completely turn off the site, all you need is an .htaccess file saved in your site root. Content would simply be order deny,allow allow from [your IP address] deny from all This allows you to access your own site...
  2. freecrm

    Unique php page

    I'm not entirely sure how many pages you are using this sytem for... The $_POST and $_GET functions only work for the page 1 and page 2. Any subsequent pages will not be able to carry this information unless it is specifically put back into the URL (which is a messy way of doing it). As I...
  3. freecrm

    php calendar??

    Thanks Matt!! I am so pleased with this - the remainder of the bugs have been ironed out (user menu and filter mainly) and the .css is starting to look cool. I can finally start to work on other areas!!! If anyone want to see the final working code, PM me.
  4. freecrm

    How can I turn off my site temporarily ?

    I'll post a bit later and cover this - I'm just doing a bit of complex dev work that needs my attention....
  5. freecrm

    How can I turn off my site temporarily ?

    Check out .htaccess and .htpasswd files that can control access. You only have to change one file (.htaccess)
  6. freecrm

    which is best method?

    Be aware that sitemap generators such as xml-sitemaps create a good listing but do not prioritise each one as you might - so have a look through the final output and ammend as required. On optimisation, I understand that the major engines prioritise on URL content Meta Title Meta...
  7. freecrm

    PHP - MySQL

    if($_POST['step']=="1") { $form="2"; } elseif($_POST['step']=="2") { $form="2"; } I suspect that this should be if($_POST['step']=="1") { $form="1"; } elseif($_POST['step']=="2") { $form="2"; }
  8. freecrm

    *Urgent*! PHP mail() not delivering to yahoo or aol, but gmail is GREAT!

    <?php $contactemail = "someone@somewhere.com"; $headers = 'MIME-Version: 1.0' . "\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\n"; $headers .= "Content-Transfer-Encoding: 7bit\n"; $headers .= 'From: You(you@cossacks.com)' . "\n"; $headers .= 'Reply-To...
  9. freecrm

    php calendar??

    LOL - I was going to point that out! Maybe a quick look over the last few posts would help to understand where this is at! I'm just going to make a few chages to the css this evening but I'm still stuck on this dynamic drop-down from recordset... Maybe I should take off the user...
  10. freecrm

    Unique php page

    It's important to note that this value $memid can be carried in a number of ways from the previous page. You can put it in a form (I would prefer hidden form field) or as part of a SQL query. All you need to do is to call that value by using the script above. <?php echo...
  11. freecrm

    [OFF] Adobe Dreamweaver License Keys

    This practice is illegal and breaches the terms of the licence. Admin - please check this post. If your dad did work for Adobe, I'm sure he would have advised you against this practice. Piracy or key hacking is a serious crime and carries a jail sentance in the UK. In carrying out...
  12. freecrm

    i need script help

    firstly, have you named the page something.php? you need the .php extension to run a php script... Other than that, leafpiggy is right because we ain't got a clue what the script is!
  13. freecrm

    [OFFER] want a signup form

    I could help here with the registration and validation as I have one on my site: however, I can't see how anyone can add the user to your CPanle email account. If you're still interested, send my a PM and I'll help with the process. How many creds are you offering?
  14. freecrm

    Whats your Web Design Project?

    Getting on error. Warning: touch() [function.touch]: Unable to create file because No such file or directory in /home/mtwinkie/public_html/index.php on line 52 1 :IP_Log.txt: Warning: fputs(): supplied argument is not a valid stream resource in /home/mtwinkie/public_html/index.php on line...
  15. freecrm

    Photoshop CS3

    I have used Photoshop for many many years and would choose it above all others. I use Vista and it installed fine for me. Some other programs have tried to come near but dont. By the way - references to torrent sites are very dodgy here - I suggest you are very careful. If you are...
  16. freecrm

    php calendar??

    ______ Has anyone got any ideas on this?
  17. freecrm

    php calendar??

    LOL - should have thought of that!!! Works a treat and finally, all the values are now coming through correctly and it looks awesome. This is now a very powerful script and one that is not easy to achieve without Javascript! I only have one problem now. At the top of the script is a...
  18. freecrm

    Timezone conversion help needed.

    Lol - just figured out why... IST is not a valid php timezone!!! India has several timezones; Indian/Reunion Indian/Chagos Indian/Antananarivo Indian/Christmas Indian/Cocos Indian/Comoro Indian/Kerguelen Indian/Mahe Indian/Maldives Indian/Mauritius Indian/Mayotte Exactly as...
Top