5

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?

Donnie Thomas
  • 3,888
  • 8
  • 47
  • 70

2 Answers2

6

just http

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

Neil McGuigan
  • 46,580
  • 12
  • 123
  • 152
0
array('website', 'url', 'defaultScheme' => 'http')
蔡正海
  • 483
  • 4
  • 11