Guys, I am having an extremely strange issue. When accessing a page through an SSL connection (HTTPS) this XML page will not load and produces this error
"<b>Fatal error</b>: Call to undefined function: fetchrow() in <b>/home/dletson/public_html/vision/htdocs/xml_data/xml_std_tasks.php</b> on line <b>37</b><br />"
But the page loads fine in a standard HTTP connection.
This i the line that's generates the error and halts the page from loading.
while ($task =& $res->fetchRow(DB_FETCHMODE_ASSOC))
So, what gets me is why fetchrow() is defined using standard HTTP, but not through and SSL connection...
P.S.--I tried fetchInto and receive the same problem.
"<b>Fatal error</b>: Call to undefined function: fetchrow() in <b>/home/dletson/public_html/vision/htdocs/xml_data/xml_std_tasks.php</b> on line <b>37</b><br />"
But the page loads fine in a standard HTTP connection.
This i the line that's generates the error and halts the page from loading.
while ($task =& $res->fetchRow(DB_FETCHMODE_ASSOC))
So, what gets me is why fetchrow() is defined using standard HTTP, but not through and SSL connection...
P.S.--I tried fetchInto and receive the same problem.