wp-noob
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Totally separate domains for each blog?Thanks, NateJacobs!!! ??
I had read that tutorial but not the comment about adding the domain on the host control panel and pointing it to the http root where WP Multisite is. That did the trick!
Thanks again so much! I’m gonna have to change my handle pretty soon ??
Forum: Plugins
In reply to: custom sessions brokenI figured it out and it was a dumb error on my part. I left out my session_write_close(); on the theme footer -I was getting mixed result with placing it in other areas and left it out by mistake.
For anyone using custom session handlers reading this: put the include(‘my_sessions.php’); in the theme’s header and session_write_close(); in the theme’s footer.
I need more sleep I guess. Thanks for reading, sorry it was user error =/
Forum: Plugins
In reply to: custom sessions broken@takien, I can use just session_start(); but I am trying to include a custom session handler that stores info in a database. Just google “custom session handler” if you’re curious… it’s pretty cool.
In all other php things I’ve done I’ve had no trouble including a custom session handler…it’s easy… but still no luck here.
This will be awesome if it’s possible and change a lot of things I do in wp/php for the better! The search goes on ??
Forum: Plugins
In reply to: custom sessions brokenA bit more info… is works fine with using built in session handling. But if I want to include a custom session handler (writing to a separate db) then it breaks. The session handler works fine in all other php apps I’ve developed.
thanks.
Forum: Plugins
In reply to: custom sessions brokenThanks but actually I’ve been searching quite a bit already…
The most promising answer was one that said to add your variables to those that should not be unset (around line 38 in wp-settings.php). That did not work however.
I have done plenty of searching on my own to figure this one out with no luck so far. Being able to use my own sessions would be super…
thanks in advance for any ideas here! ??