Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Yii Framework: Specifying defaultScheme in URL Validator

I'm sure this is straightforward, but I can't figure it out. I'm trying to set a defaultScheme to the Yii URL validator in my model, so that it accepts addresses like www.something.com as well as http://www.something.com.

To do this, I'm using the following code:

...
array('website', 'url', 'defaultScheme' => 'http://'),
...

This doesn't seem to be working, and I still get an "Website is not a valid URL" error when trying to update. What am I doing wrong?

like image 530
Donnie Thomas Avatar asked Aug 05 '11 18:08

Donnie Thomas


1 Answers

just http

http is the scheme name, whereas http:// is the scheme plus the beginning of the "hierarchical part"

like image 114
Neil McGuigan Avatar answered Nov 20 '22 10:11

Neil McGuigan