Jump to content

themule

New Members
  • Posts

    7
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

themule's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. No, the problem is that the SSL cert is only for www.domain.com, and if someone removes (and has) the www., they get the error. So what I want for SSL requests, is to make sure the URL has the www. No subdomains are being used.
  2. No, the URl doesn't change, but is it possible the secure connection is attempted before the .htaccess file is read?
  3. As far as I know they're being met. When I go to http://mysite.com the HTTP_HOST is mysite.com and if I go to https://www.mysite.com the SERVER_PORT is 443
  4. Thanks for the catch on the https I tried both of those solutions and neither worked.
  5. Hi, a client of mine purchased and SSL for www.mysite.com (not a wild card SSL) So when a user goes to https://mysite.com, we get some sort non-secure/trusted error. I'm trying to use mod_rewrite to force the www when it doesn't exist but nothing seems to work. Here is an example of my rewrite code: RewriteCond %{SERVER_PORT} ^443$ RewriteCond %{SERVER_NAME} ^mysite.com$ RewriteRule (.*) http://www.%{SERVER_NAME}%{REQUEST_URI} [R=301,NC,L]
  6. mysql_data_seek worked.. thanks sasa!
  7. Hello.. I'm trying to populate multiple select boxes with the same query, but only the first iteration works. <select> while($row = mysql_fetch_array($myQry)){   <option>echo $row['name'] } </select> **Populates correctly <select> while($row = mysql_fetch_array($myQry)){   <option>echo $row['name'] } </select> **No data Any thoughts?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.