Longblob & HTTPS

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
Gen-ik
DevNet Resident
Posts: 1059
Joined: Mon Aug 12, 2002 7:08 pm
Location: London. UK.

Longblob & HTTPS

Post by Gen-ik »

Thought I would kill two birds with one stone here...

(1)
Does anyone know how many characters a LONGTEXT entry in a MySQL database can hold?

(2)
Does anyone know if it's possible to use "https://localhost" with Apache running on Windows?


(T)hanks (I)n (A)dvance.
User avatar
markl999
DevNet Resident
Posts: 1972
Joined: Thu Oct 16, 2003 5:49 pm
Location: Manchester (UK)

Post by markl999 »

1) 4294967295 or 4G (2^32 - 1) characters

2) Yep. LoadModule ssl_module modules/mod_ssl.so

:o
Gen-ik
DevNet Resident
Posts: 1059
Joined: Mon Aug 12, 2002 7:08 pm
Location: London. UK.

Post by Gen-ik »

Looks like you're burning the candle at both ends like myself... nothing like a bit of (very) early morning coding eh ;)
markl999 wrote:1) 4294967295 or 4G (2^32 - 1) characters
Whoa! Ok, I think that's enough 8O
markl999 wrote:2) Yep. LoadModule ssl_module modules/mod_ssl.so
Nice. Thanks mate.
Post Reply