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
Gen-ik
DevNet Resident
Posts: 1059 Joined: Mon Aug 12, 2002 7:08 pm
Location: London. UK.
Post
by Gen-ik » Thu Jan 22, 2004 9:02 pm
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.
markl999
DevNet Resident
Posts: 1972 Joined: Thu Oct 16, 2003 5:49 pm
Location: Manchester (UK)
Post
by markl999 » Thu Jan 22, 2004 9:06 pm
1) 4294967295 or 4G (2^32 - 1) characters
2) Yep. LoadModule ssl_module modules/mod_ssl.so
Gen-ik
DevNet Resident
Posts: 1059 Joined: Mon Aug 12, 2002 7:08 pm
Location: London. UK.
Post
by Gen-ik » Thu Jan 22, 2004 10:23 pm
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
markl999 wrote: 2) Yep. LoadModule ssl_module modules/mod_ssl.so
Nice. Thanks mate.