I have a script which logs you into zencart when you open it in your browser.

Now when I try to call this from inside another php script using require, header, or curl, it does not login to zencart. It only works when the user opens the php script directly in their browser.

I also tried virtual(), but its running the index.php script for the top level of the site, not the file I specify. Thanks.

link|improve this question

2  
How does the script log you into zencart? – Kieran Andrews Jun 16 '11 at 0:38
1  
Steve, you must be understanding something fundamentally wrong. Please add more information about what you do, how your code looks like and your motivation to make it possible that helpful answers can be given - the part about zencart is clear. – hakre Jun 16 '11 at 0:41
what kind of script is the original script? you might need cookies which you could do with curl, but seems like an odd approach. – ldg Jun 16 '11 at 1:13
Here is the script for logging into zencart. zen-cart.com/forum/… I am trying to include it in a kohana application, so when the user logs into the kohana script they log into zencart. That way, I can use links in the kohana script and send them to checkout, preferably via AJAX. – steve76 Jun 16 '11 at 2:17
What I did for a temp workaround was a javascript redirect. I will add a session variable to allow access to the bridge only by scripts on the servers. It really would be nice to eliminate the extra redirect page though. – steve76 Jun 16 '11 at 2:26
feedback

1 Answer

up vote 0 down vote accepted

I got this working by reading the session from the database. Let me know if anyone is interested and I will open up a github. Thanks!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.