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 SkipVought 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: *

  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, Thanks for your reply. Yes it is a machine running a web server, specifically Apache/2.4.23. The machine is using a wireless card to connect via a router to the internet. There is another machine with Windows 7 that has a wired connection to the same router and can connect to the internet...
  4. 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...
  5. 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...
  6. 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...
  7. waydown

    Cannot load application

    Hi, When I run <?php phpinfo(); ?> php info file appears and there is a section labelled "Core" where I see Configuration File (php.ini) Path /opt/alt/php56/etc Loaded Configuration File ........ In Loaded Configuration File always_populate_raw_post_data = -1. I've put the file firstly in...
  8. waydown

    Cannot load application

    Hi, Many thanks for your replies. I've done as you suggested. I get following info: Configuration File (php.ini) Path /opt/alt/php56/etc Loaded Configuration File /home/some9753/public_html/php.ini Scan this dir for additional .ini files /opt/alt/php56/link/conf Additional .ini files parsed...
  9. 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...
  10. 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...
  11. 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...
  12. 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...
  13. waydown

    Call to a member function on a non-object

    Hello, Thanks for the reply. I will study and apply your suggestions. Just wanted to say that there are error and count functions which I forgot to include but I don't think they make too much difference. public function error() { return $this->_error; } public...
  14. waydown

    Call to a member function on a non-object

    Hi, I have now included all of the relevant code. The code relating to PDO I got off the internet with which I am not fully conversant: In class User: public function find($user = null) { if($user) //if username is passed, not null { $field = (is_numeric($user)) ? 'id' ...
  15. 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 =...
  16. waydown

    why isn't conditional statement working??

    Hello, Many thanks for the reply. I managed to output bytes in the two strings and this is the output I'm getting for '$token': ef bb bf ef bb bf ef bb bf 39 31 64 32 61 66 63 31 63 61 38 63 39 32 39 66 62 63 63 35 35 61 36 38 37 31 65 36 37 33 65 61 and for '$testing': 39 31 64 32 61 66 63...
  17. waydown

    why isn't conditional statement working??

    Sorry, I don't know how to edit thread here, but above in check() $testing = Session::get($tokenName);
  18. waydown

    why isn't conditional statement working??

    Hi, I tried using accept-charset="utf-8" in: <form action="" method="POST" accept-charset="utf-8"> It did not make any difference. Is this the bit you're referring to: public static function check($token) { $tokenName = 'token'; echo var_dump($token)."<br>"; echo...
  19. waydown

    why isn't conditional statement working??

    Hi, It's PHP Version 5.5.12
  20. waydown

    why isn't conditional statement working??

    Hello, I have included the following code that is relevant to the problem described above: <?php class Token { public static function generate() { return Session::put('token'), md5(uniqid())); } public static function check($token) { $tokenName =...

Part and Inventory Search

Back
Top