Jump to content

Dicee

Members
  • Posts

    26
  • Joined

  • Last visited

Everything 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. HelloI have Many web pages. However, My video is located in the Header and I want it to display only on one page, the HOME page.Note: I am using video in <iframe> codeing. How can I make that happened without the video showing up on all other pages? Please give me the proper tags to stop the video from moving from page to page.Please Advise. Thanks in advance for your help!
  4. Hello Sir, PHP coding is very new to me therefore, can you take a look at the Form At www.yimusiconeuniverse.com and see if you can tell me why it's not displaying properly?
  5. 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');}?>
  6. 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'); ?>
  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. 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');}//}?>
  9. 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');}//}?>
  10. 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');}//}?>
  11. 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}}//}?>
  12. 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}//} ?>
  13. 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!
  14. 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');}} } ?>
  15. 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');}//}?>
  16. 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.
  17. Ok, you're right... but when I remove the if statement the Form come back immediately. However, it keeps popping up within seconds and will not redirect to home pageafter login? Removing the if statement resolved one issue, but created another one. Please advise!
  18. 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');}//}?>
  19. 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');}//}?>
  20. 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');}//}?>
  21. 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'); }//} ?>
  22. The registration form will pops-up and the User logs in or register. After the browser close the form is not there.However it will eventually come back, after waiting 30 minutes to an hour. I need for it to be ready instantly for thenext visitor so he can login. I think this is achievable, please help me resolve this problem.Again Many Thanks
  23. 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'); }//} ?>
  24. 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...