View Single Post
  #22  
Old 02-15-2016, 09:01 PM
Kyttias's Avatar
Kyttias Kyttias is offline
Premium Member
 
Join Date: Jan 2014
Posts: 857
Gender: Unknown/Other
Credits: 88,387
Kyttias is on a distinguished road
Default

The Notices exist because you have a higher version of PHP than Mysidia was created on, and some things have since fallen out of best practice, but the code still functions.

Warnings... same deal, the code is still functional. As for the warning, you could try using 127.0.0.1 instead of localhost in Mysidia's configuration file (inc/config.php)?

Stackoverflow: What is the difference between a Notice and a Warning?

You can turn off Notices and Warnings in XAMPP's php.ini file (help finding it) under error_reporting (search for the line that does not begin with a semi-colon, may be the second result rather than the first): Try:
Code:
error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT
Hosts online already tend to have these disabled, as they're not true error messages. The creator of Mysidia is already aware of these "problems" and they should be fixed in the next version.
__________________
Please do not contact me directly outside of Mysidia.
I also cannot troubleshoot code more than two years old - I legit don't remember it.

Last edited by Kyttias; 02-15-2016 at 09:08 PM.
Reply With Quote