Author | Message | |||||
---|---|---|---|---|---|---|
Tutorial
| Any tutorial on how to setup the webcp? This really isn't my area, I'm more of an artist... So if you'd like to exchange services id be happy to work on some artwork in return for some help with the Webcp installation and setup! Thanks
|
Re: Tutorial
| https://eoserv.net/forum/topic/4315 I would recommend xampp now instead of wamp if you are hosting a web page locally. Also, you may have to do a bit of setup in the Apache virtual host settings as well, but Google can be your friend with that.
|
Re: Tutorial/LoginERROR
| Thank you Apollo for redirecting me! I managed to get it going! It points to the line 155 151 public function Mark($ip_prefix) 152 { 153 $attempts = $this->GetData($ip_prefix); 154 155 $attempts[] = time(); 156 157 // Avoid the data growing infinitely 158 if (count($attempts) > $this->maxattempts) 159 $attempts[] = array_slice(count($attempts) - $this->maxattempts - 1, count($attempts) - 1); 160 161 $this->SetData($ip_prefix, $attempts); 162 } 163}; You can try it yourself, you don't even need an account, just press the Login button and the error occurs I've looked around and haven't managed to fix it... Any help with this anyone??
| |