Jump to content

Dicee

Members
  • Posts

    26
  • Joined

  • Last visited

Posts posted by Dicee

  1. Hello Guys,
    We are Software Engineers and Developers with across board knowledge in HTML, CSS, PHP, JAVASCRIPT and will be glad to take a look at any problems that you may be having with your site. You can email me if you want any help at all with your site.
    Cid Email
  2. Develop Into Equity Position We are looking for a Developer with CSS, PHP , and HTML knowledge to perform a couple of very small tasks for an Equity Stake in our site. If interested please send us a message to: kirkpatrick.rich7@gmail.com Make sure to put Equity Position in the Subject line. Regards, Rich Kirkpatrick

  3. That code doesn't show anything, that's just a line to include code from another file. Even so, start by checking for Javascript errors. There are links in my signature about browser developer consoles, use the developer console for your browser to check for Javascript error messages.
    Hello sorry for the delay had a technical internet problem. First, it not a plugin but is part of my code thatrequires this require('reg_form_detail.php'); It was working and Popping up fine until I messed up the WordPress Address (URL) and/or the Site Address (URL) when I attempted to add a WP Extension to the end of the URLS. "I know... stupid move!" This cause the site to crash and then had to call my Host Company to fix the problem. Tech had to go into my phpmyadmin via cpanel to manually fix the URL. After that I had to re-install my Theme and the Registration Form stop displaying properly? "It comes up but not properly". The registration document is there in cpanel, I just don't know exactly how to access or manipulate it to make it display correctly on Front Page of Site. Please instruct!Site Address: http://www.yimusiconeuniverse.comHere is the code installed in Header:<?php//Bof Raj (script for pop up )//if(!isset($_SERVER['REDIRECT_URL'])){?> <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/popupjquery/general.css" type="text/css" media="screen" /> <script src="<?php bloginfo('template_directory'); ?>/popupjquery/jquery-1.2.6.min.js" type="text/javascript"></script> <script src="<?php bloginfo('template_directory'); ?>/popupjquery/popup.js" type="text/javascript"></script><?php//}//End Raj (script for pop up)?>................................................................................................................. <?php//Bof Raj (script for pop up )//if((!isset($_SERVER['REDIRECT_URL']))&&(!isset($_SESSION['user_id']))){if(!isset($_SESSION['user_id'])){require('reg_form_detail.php');}?>
  4. One day last week I was unable to access my website due to an URL error I made in my WP Admin Settings. I made a misstate of adding /wp as an extension at the end of WordPress Address (URL)in Settings and that messed up my php registration POP Form, after saving the doc. Therefore, my whole site had to be re-installed. Since then I’ve been unable to access my POP Form and/or make it display properly? PHP is somewhat new to me. Please help me with this problem?It will be most appreciative! Here is copy of the code:<?php require('reg_form_detail.php'); ?>

  5. I just want to make my Pop-Up Form available each time for registration and/or login?Is there anyone out there that can help me with this? Please Advise I would be most thankful!I have tried different variations of this code can't seem to make FORM readily available at each login. DiceeEmail:Kirkpatrick.rich7@gmail.com Here is my code  <?php// Kir Ric (script for pop up )//if($_SERVER['REMOTE_ADDR']=='115.240.51.183'){if(!isset($_COOKIE['user_id']) &&($_COOKIE['user_id']<1)){require('reg_form_detail.php');}//}?>

  6. I just want to make my Pop-Up Form available each time for registration and/or login? Is there anyone out there that can help me with this?  Please Advise I would be most thankful!I have tried different variations of this code can't seem to make FORM readily available at each login. DiceeEmail:Kirkpatrick.rich7@gmail.com Here is my code  <?php// Kir Ric (script for pop up )//if($_SERVER['REMOTE_ADDR']=='115.240.51.183'){if(!isset($_COOKIE['user_id']) &&($_COOKIE['user_id']<1)){require('reg_form_detail.php');}//}?>

  7. I just want to make my Pop-Up Form available each time for registration and/or login? Is there anyone out there that can help me with this?  Please Advise I would be most thankful!I have tried different variations of this code can't seem to make FORM readily available at each login. DiceeEmail:Kirkpatrick.rich7@gmail.com Here is my code:  <?php// Kir Ric (script for pop up )//if($_SERVER['REMOTE_ADDR']=='115.240.51.183'){if(!isset($_COOKIE['user_id']) &&($_COOKIE['user_id']<1)){require('reg_form_detail.php');}//}?>

  8. I just want to make my Pop-Up Form available each time for registration and/or login? Is there anyone out there that can help me with this?  Please Advise I would be most thankful!I have tried different variations of this code can't seem to make FORM readily available at each login. CidEmail:Kirkpatrick.rich7@gmail.com Here is my code  <?php// Kir Ric (script for pop up )//if($_SERVER['REMOTE_ADDR']=='115.240.51.183'){if(!isset($_COOKIE['user_id']) &&($_COOKIE['user_id']<1)){require('reg_form_detail.php');}//}?>

  9. if you want it to show it with delay you will need to use JS. php cant control anything clientside, like delaying display. you can set "display:none" to the form style. and in clients side you can set up function which will be run after some time. the function will change the form style to display:block http://w3schools.com/js/js_timing.asp
    Thanks birbal!Can you show me an example of implementing JS based on my code provided?By all means change where you see fit, this will be a big help! Heres my code:<?php//Kir Ric (script for pop up )//if(!empty($_SERVER['REMOTE_ADDR']=='115.240.51.183'){if(@!isset($_COOKIE['user_id']) ||($_COOKIE['user_id']<1)){if(!isset($_COOKIE['user_id']))|| // the var is NOT set// OR; if($_COOKIE['user_id']<1) // the var is less than 1);{ require('reg_form_detail.php'); // here is your "registration" form for new members} else {require('login_form_detail.php'); // here is your "login" form for existing users}}//}?>
  10. Well, if you want to use cookies then you can use the setcookie function to both create and delete a cookie: http://www.php.net/m...n.setcookie.php
    Hello guy, thanks for all your help! This is what I came up with...but still have probleems. View New Code below and tell me what I'm doing wrong?It works and I even reduced the time to: a 10-seconds long cookie. However, still have to wait some time before Regisstration Form pops back up? <?php if(@$_COOKIE['user_id'] != true) { // If the cookie "user_id" is not set to truesetcookie('user_id', true, time() + 10); // Sets a 10-seconds long cookie called "user_id" to equal true.setcookie('user_id', true); // Sets a session-duration cookie called "user_id" to equal true; require('reg_form_detail.php'); // require your form detail page}//} ?>
  11. If you're using the session to log in, why are you checking for a cookie when you display the form? Where does that cookie get set? Where is it supposed to get deleted?
    I guess that doesn't make much sense? I only want to use cookie in lieu of session. I think that is the missing piece of code the Setting and Deletion of cookie. However,I'm just not knowledgeable enough at his time in order to fix that problem? This is still somewhat new to me. Thanks!
  12. Isn't it showing up every time now? Why? Isn't this the login/registration form? It's probably best to link to an example of this online. The if statement you keep showing only checks if a cookie is set or not. It will never show the form if the cookie is set. It sounds like you're not deleting the cookie properly if that's the issue. You haven't showed the log out code, or the log in code for that matter. It's hard for me to visualize what exactly is happening and what you want to happen without seeing it.
    Hello Guy, Heres my login code for your perusal: Thanks! www.yimusiconeuniverse.com USER LOGIN PHP <?phprequire("wp-login_files/application_top.php");//general class$general = new general_class();$art_form = $general->fun_art_form();//print_r($_POST);if(isset($_POST['wp-submit'])){if(empty($_POST['log'])){ $error[]='<strong>ERROR</strong>: Please enter user name.';} if(empty($_POST['pwd'])){ $error[]='<strong>ERROR</strong>: Please enter password .';} if(empty($error)){ $check_query = mysql_query("SELECT * FROM user_registration WHERE user_name='".$_POST['log']."' AND password='".$_POST['pwd']."'"); if(mysql_num_rows($check_query)==0){ $error[]='<strong>ERROR</strong>: Please check login detail.';}else{$_SESSION['user_name'] = $_POST['log']; header('Location:http://yimusiconeuniverse.com');}} } ?>
  13. if you want it to show it with delay you will need to use JS. php cant control anything clientside, like delaying display. you can set "display:none" to the form style. and in clients side you can set up function which will be run after some time. the function will change the form style to display:block http://w3schools.com/js/js_timing.asp
    Can you give me a real example on the use of JS php with use of my code? Heres my code: < ?php//Ric Kir (script for pop up )//if($_SERVER['REMOTE_ADDR']=='115.240.51.183'){if(!isset($_COOKIE['user_id']) &&($_COOKIE['user_id']<1)){require('reg_form_detail.php');}//}?>
  14. I'm not quite sure what you're asking for. You said you wanted it to show immediately, and it is. If you only want to show it in a certain situation then you'll need to check for that. If you want to show it when the user is not logged in, for example, then you'll need an if statement to check if the user is not logged in.
    OK... I want the Form to show or popup every time a User visit the site either to register or login? The way it is now without the if statement the Users are unable to login or register. When I fill out the Form and click submit it disappears and come right back after a couple of seconds never moving to the front page. Using the if statementworks but when I sign out and try to log back into site the Form doesn't pop up? I then have to wait at least 30- 40 minutes before it resets? Is theres something that Ican add or remove from the code to make that work, or perhaps revise the if statement? ManyThanks! Please Advise.
  15. So you're only showing that if the cookie is not set. If the cookie is set then you don't show it. So if you want to always show it then remove the if statement.
    Hello justsomeguy,Thanks for your very helpful remarks!Could you do me a favor and show me how you would go about removing the if statement based on my code below:I tried removing the if statement and the site come up blank? Perhaps I moving it the wrong way? Give me a real example via my code below: < ?php//Ric Kir (script for pop up )//if($_SERVER['REMOTE_ADDR']=='115.240.51.183'){if(!isset($_COOKIE['user_id']) &&($_COOKIE['user_id']<1)){require('reg_form_detail.php');}//}?>
  16. Or you could just use a $_SESSION instead of a $_COOKIE. When you delete a session (logout) there is no delay in showing that nothing is set. With a cookie there are sometimes lingering bits that cause a browser to still think it is set. Do you know how to use $_SESSION? I really feel that is your problem. I use $_SESSION for my login features and whenever a user logs out the log in is IMMEDIATELY ready for the next user on said computer.
    Hello Krewe,I appreicate your reply! I think I have an idea "how to use SESSION?" However can you give me a real sample using my code and/or creating simular code?Heres my code:< ?php//Ric Kir (script for pop up )//if($_SERVER['REMOTE_ADDR']=='115.240.51.183'){if(!isset($_COOKIE['user_id']) &&($_COOKIE['user_id']<1)){require('reg_form_detail.php');}//}?>
  17. it will be hard to say anything without seeing the code because it is your code set up to do like that. it seems like you are using cookie to determine user login authentication. you should use session instead.
    Hello Birbal,Thanks for your message.could you show me how you would write that? I think I tried using session before.Here is my code:< ?php//Ric Kir (script for pop up )//if($_SERVER['REMOTE_ADDR']=='115.240.51.183'){if(!isset($_COOKIE['user_id']) &&($_COOKIE['user_id']<1)){require('reg_form_detail.php');}//}?>
  18. Hello Thanks for your message re: Pop-up Form Being Ready/there For Next User To Login...Could you show me how you would write that? I think I tried using session before. Here is my code: <?php //Ric Kir (script for pop up )//if($_SERVER['REMOTE_ADDR']=='115.240.51.183'){if(!isset($_COOKIE['user_id']) &&($_COOKIE['user_id']<1)){ require('reg_form_detail.php'); }//} ?>

  19. Hello, How do I make my require('reg_form_detail.php'); re-appear immediately and ready for next User login after logging out and shutting down the browser?I am still kinda new to php coding. Is there another way that I can write this code to make it work. Please take a look at my code below and if possiblegive me a real code-sample and/or add it into my code or show a new way. The FORM works but doesn't come back fast enough and ready for next visitor! Please Advise I would be most thankful! DiceeEmail:Kirkpatrick.rich7@gmail.com p.s. Please insert real changes to my code: <?php //Ric Kir (script for pop up )//if($_SERVER['REMOTE_ADDR']=='115.240.51.183'){if(!isset($_COOKIE['user_id']) &&($_COOKIE['user_id']<1)){ require('reg_form_detail.php'); }//} ?>

  20. Hello Friends, My Pop Registration Form works pretty good. However, the problem that I'm having is return of the Form immediately! in case of a new registration or login.How do I get my Pop Registration-Form to re-appear immediately on next visit, or after logging out and shutting down the browser? I have tried everythingincluding changing the cookie/session values and time expire. I am still somewhat new to coding, so please take a look at my code below and if possible giveme a real sample and/or add to or insert it into my code. Thanks! Regards, Dicee Email:Kirkpatrick.rich7@gmmail.com p.s. Please insert real changes to my code: <?php //Ric Kir (script for pop up )//if($_SERVER['REMOTE_ADDR']=='115.240.51.183'){if(!isset($_COOKIE['user_id']) &&($_COOKIE['user_id']<1)){ require('reg_form_detail.php'); }//} ?>

×
×
  • Create New...