-
Posts
2,215 -
Joined
-
Last visited
Everything posted by DarqFlare
-
No wonder I don't have that problem... My website is configured to auto-append the SID on any link and insert a hidden input value for forms... Only on the first time the session is begun.
-
My best guess how I'd use it: >RewriteCond %{REMOTE_USER} ^user1$ [NC] RewriteRule ^.*index\.html$ /user1place RewriteCond %{REMOTE_USER} ^user2$ [NC] RewriteRule ^.*index\.html$ /user2place I wouldn't have it autoinsert the user myself, but if you can get that working, more power to you... Disclaimer: I'm not sure if this work, I haven't been able to test it.
-
I think everybody has missed the easy solutions to problems many times in their lives... Myself included, lol...
-
I've used the custom header in PayPal, and I just use an image not SSL secured. The reason they suggest a secured image is so there isn't the prompt "There are unsecure items on this page, do you want to display them?"
-
Welcome, xv!
-
Well, you can register for all of them.. But my top 3: Google Yahoo (Now that they no longer use Google) MSN I don't really know of many others that are top-tier, so...
-
Hey Rob, nice job... that's good to know, even though I'm not sure I'd ever use it...
-
You're welcome. I ran into that problem myself, so..
-
Username? You mean a pass-protected directory? I'm not entirely sure how to manipulate HTACCESS to deal with username-specific content... MikeJ might know.
-
I think the tendency is for us to cycle "active" members here... Gotta keep everyone active all the time! Just like HG and his Mountain Dew IV...
-
Well, here's how mine is setup... I have three slots. Two teal and one purple. To use non-dual, I put them both in teal. To use dual, I put one in purple and another in one of the two remaining teals. Sounds like you did it right... But my board is different.
-
Yes, you will run into problems trying to send that many emails out at once. Space the emailer out among 3 or 4 hours.
-
Ahh, the old timezone problem. Here's what happens. You set the forum time, but the problem is that each profile has its own timezone setting, and you're viewing the board by the default time zone still: because you never changed it in your PROFILE as well. If you want to see the timezone changes, then you have to change it in your board profile as well.
-
The service might have been restarted, the server could have hiccuped.. Doesn't matter now though, does it?
-
Just think: you're one out of 3,000.
-
I'm thinking about grabbing one of those dual-p servers from you... I wouldn't mind finally having my own.
-
I got dual channel running at home and it's just fine. Make sure it's installed in the correct configuration to run dual, and try reinstalling a stick. And run that memory test, it works well.
-
I've got to try and find a way to convert my website into a Google-friendly format using mod_rewrite... My problem is the way I pass variables from page to page in the URL...
-
You're very welcome!!!
-
http://bugs.php.net/bug.php?id=14636 Here's a page that deals with it, and this was written back when PHP 4.0x was around.
-
I'm not really sure that an update to PHP made the code invalid. I have a website that uses sessions and header redirection, and it just this moment worked... > session_register("USER_ID"); $USER_ID = $ID; if($DB_Data[1] == 1) { session_register("STAFF"); } if($DB_Data[3] == 1) { session_register("PLATINUM"); } $DB_Result = db_query("select `logged_in`, `read_announcement` from `users` where `id`='$USER_ID'"); $DB_Data = db_row($DB_Result); $Logged_In = $DB_Data[0]; $Read_Announcement = $DB_Data[1]; if($Logged_In == 0) { header("Location: firstlogin.php"); } else if($Read_Announcement == 0) { header("Location: announcement.php"); } else { header("Location: home.php"); } The thing is, that I startup the session at the onset of every page load. I'm definitely going to look into this.
-
Despite not being listed in DMOZ... I still rank well.
