Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: waydown
  • Content: Threads
  • Order by date
  1. waydown

    Is public address static or not

    Hi, I am trying to determine if my public IP is static or dynamic. I went on to site http://whatismyip.com and the result I got was: Your Public IPv6 is: 2a01:4b00:8942:3f00:a15f:16ed:b7e:a132 Your IPv4 is: 37.156.74.240 I then switched off router for five minutes and restarted it. I then...
  2. waydown

    Can someone explain message

    Hi, I was unable to do port forwarding from a ZXHN H298N router. I had created a static address on my wireless network card. Also created a path on 'Application-NatLoop and Port Forwarding' on the router. I had reduced security on firewalls to minimum on both router and computer. I was using...
  3. waydown

    Unable to connect to server

    Hi, I'm new to all this. Created a web server on OpenSuse Leap 42.2. I've checked that apache (httpd) service is running. I've also checked that port 80 is open and listening. I also disabled firewall for testing purposes. Yet when I try to connect to server from another machine using IP...
  4. waydown

    trouble with dracut shell

    Hi, I'm using opensuse 13.2. Ran 'zypper update'. Then 'reboot'. Then 'journalctl' when prompted. After that don't know what happened but I've ended up with dracut/:# Used CTRL D to try to exit dracut shell. Ended up with dracut/: logout ........... [ok] Started dracut premount hook The cursor...
  5. waydown

    Network card not detected

    Hi, I've installed openSUSE-13.1 on a Fujitsu computer with N600 Wireless Dual Band PCI Express Adapter TL-WDN3800. I'm new to Linux although I did use Suse desktop about ten years ago. I typed ifconfig in a shell and the following was displayed: lo Link encap:Local Loopback...
  6. waydown

    Cannot load application

    Hi, I'm trying to load an application on unix server but when it does system check I keep on getting following error message and application will not load. Your PHP Version is 5.6.22, but always_populate_raw_post_data = 0. $HTTP_RAW_POST_DATA is deprecated from PHP 5.6 onwards and will be...
  7. waydown

    Upgrading MySQL in cPanel

    Hello, I want to install a new application on my unix x86_64 (virtual) server. The server has MySQL Version 5.5.49 but the application requires MySQL 5.6 or upwards. I want to update MySQL on my server without having to go through the host. (There are no buttons on cPanel for upgrading MySql...
  8. waydown

    class selectors css

    Hi, I came across the following in an example in a book: .col-left, .col-right, .col-wrapper, .col2-right-layout .col-main { float: left } Why is comma (,) used to separate some class identifiers and not between .col2-right-layout .col-main. Is this correct or is there an error? Will be...
  9. waydown

    Works on WAMP but not on remote server

    Hi, I have WAMP (PHP Version 5.5.12) running on my machine. My program works on WAMP but when I run program on remote server (PHP Version 5.4.32) I get following error: I am trying to transfer details from a form to a database. I don't know if the problem is related to following input on...
  10. waydown

    Call to a member function on a non-object

    Hi, I have the following class: class User { private $_db; public function __construct($user = null) { $this->_db = DB::getInstance(); ....... } public function find($user = null) { if($user) { $field =...
  11. waydown

    why isn't conditional statement working??

    Hi, I asked a question about Tokens earlier. After debugging I've found the reason as to why my program isn't working. It's related to this statement: if($token == $_SESSION['token']) { ........; return true; } $token is generated in form using md5(uniqid()). When I...
  12. waydown

    Trying to understand how a token works

    Hi, Sorry I'm new to using Tokens, so having difficulty understanding it. Say I have: <form action="" method="POST"> <P> <label for="username">Username</label> <input type="text" name="username" id="username" autocomplete="off"> </P> <P> <label for="password">Password</label> <input...
  13. waydown

    Undefined variable and Call to a member function on a non-object

    Hello, I have the situation shown below in the code: if(//condition is met) { $val = new Val(); $valon = $val->check($_POST, array(.........)); } if($valon->passes()) { $use = new Use(); ........ } //check() and passes() both belong to class Val...
  14. waydown

    Fatal error:

    Hi, I have something like shown below: class Anon { $_dddd = null; ....... public function _construct() { $this->_dddd = DB::getInstance(); } $check = $this->_dddd->get(.......) ....... } $_dddd is holding a SINGLETON object. When I do above I get following message: Fatal...
  15. waydown

    Can access primary domain but not subdomains!!!!

    Hi, My domains are on a virtual server. public_html contains four folders, one for subdomainA, one for subdomainB, a folder called cgi-bin and folderA which contains an ecommerce script. The contents of folderA should really be on my primary domain, i.e. public_html, but the installation for...
  16. waydown

    Checking fields are not left empty

    Hi, I have a form validation and then the form. <?php if ( isset($_POST['submitted']) { if ($_POST[name]) { $name = $_POST[name]; } else { //what code goes here? } } <form name="A.php" action="" method="post"> ...... <input type="text" name="name" id="name" /> .... <input...
  17. waydown

    Updating picture on several pages

    Hi, I don't know if this is the right place to post this question but I think javascript might offer a solution. I have a 125 X 156 jpeg image with some text underneath in the right column of my home (.html) page and the same image and text in the right column of 47 other (.html) pages. When I...
  18. waydown

    Controlling gap between h4 and p without using negative margin

    Hi, How can I reduce (and control) the gap between the word "Art" and the lower edge of the blue background of h4. The only way I can think of using negative top margin for p but I feel this is incorrect. There must be a better (correct) way of doing it. Will be grateful for all help...
  19. waydown

    Can't place image link where I want it

    Hi, Following is my code for a footer. I want the "twitter" image to be on the same horizontal line and to the right of the caption "Join Us on Facebook". In other words I want the twitter caption (followed by the line "Join the conversation today!") to be raised. The two ways I can do this is...
  20. waydown

    rounded corners not working in IE

    Hi, I am using: border-top-left-radius: 0.60em 0.60em; border-top-right-radius: 0.60em 0.60em; to create rounded corners. It works fine on Firefox and Chrome but has no effect in IE that comes with Windows7 or earlier. I wonder if anyone knows a better way of creating rounded...

Part and Inventory Search

Back
Top