Jump to content

Dicee

Members
  • Posts

    26
  • Joined

  • Last visited

Dicee's Achievements

Newbie

Newbie (1/7)

0

Reputation

  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');}//}?>
×
×
  • Create New...