Eddie Shipman
|
| Posted: 08/30/2001, 7:27 AM |
|
Warning: Call-time pass-by-reference has been deprecated - argument passed
by value;
If you would like to pass it by reference, modify the declaration of
[runtime function name]().
If you would like to enable call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However, future
versions may not
support this any longer. in /home/sites/site19/web/regform/db_odbc.inc on
line 76
Warning: Cannot send session cookie - headers already sent by
(output started at /home/sites/site19/web/regform/db_odbc.inc:76) in
/home/sites/site19/web/regform/Default.php on line 12
Warning: Cannot send session cache limiter - headers already sent
(output started at /home/sites/site19/web/regform/db_odbc.inc:76) in
/home/sites/site19/web/regform/Default.php on line 12
Fatal error: Call to undefined function: odbc_pconnect() in
/home/sites/site19/web/regform/db_odbc.inc on line 35
How to remedy these problems??? I have no access to the server options.
|
|
|
 |
Alexey Alexapolsky
|
| Posted: 08/31/2001, 2:22 AM |
|
Looks like you're trying to work with ODBC but it's not supported by the
current php
binary at your server , if this is unix server , go to
site/properties/database and set database type to
something else , e.g. mysql , otherwise enable odbc at your server.
What version of PHP is installed on your server ?
--
Alex
Eddie Shipman <eshipman@austin.rr.com> wrote in message
news:9mlih8$snk$1@news.codecharge.com...
> Warning: Call-time pass-by-reference has been deprecated - argument passed
> by value;
> If you would like to pass it by reference, modify the declaration of
> [runtime function name]().
> If you would like to enable call-time pass-by-reference, you can set
> allow_call_time_pass_reference to true in your INI file. However, future
> versions may not
> support this any longer. in /home/sites/site19/web/regform/db_odbc.inc on
> line 76
>
> Warning: Cannot send session cookie - headers already sent by
> (output started at /home/sites/site19/web/regform/db_odbc.inc:76) in
> /home/sites/site19/web/regform/Default.php on line 12
>
> Warning: Cannot send session cache limiter - headers already sent
> (output started at /home/sites/site19/web/regform/db_odbc.inc:76) in
> /home/sites/site19/web/regform/Default.php on line 12
>
> Fatal error: Call to undefined function: odbc_pconnect() in
> /home/sites/site19/web/regform/db_odbc.inc on line 35
>
> How to remedy these problems??? I have no access to the server options.
>
>
>
>
>
|
|
|
 |
Eddie Shipman
|
| Posted: 08/31/2001, 6:43 AM |
|
As I said in my original post, I have no access to the server options.
I do not know how to get the PHP version and can not install another
DB. I do know that it is a Cobalt rack server, however. Guess I'm
SOOL. (shit out of luck!) ;>)
> Looks like you're trying to work with ODBC but it's not supported by the
> current php
> binary at your server , if this is unix server , go to
> site/properties/database and set database type to
> something else , e.g. mysql , otherwise enable odbc at your server.
> What version of PHP is installed on your server ?
>
|
|
|
 |
guest
|
| Posted: 08/31/2001, 8:06 AM |
|
In codecharge.discussion, "Eddie Shipman" <eshipman@austin.rr.com> wrote:
=> I do not know how to get the PHP version
Try:
~~~~~<snip here>
<?php
phpinfo();
?>
~~~~~<snip after previous line>
which is all your really need. Gives you lots and lots of info about PHP and
all its variables and setting etc etc.
|
|
|
 |
Eddie Shipman
|
| Posted: 08/31/2001, 8:20 AM |
|
After running that script, I found that they have mySQl support.
But, I don't know what to do as far as generating and enabling
the regform sample to use mySQL.
Any tips?
> ~~~~~<snip here>
> <?php
> phpinfo();
> ?>
> ~~~~~<snip after previous line>
|
|
|
 |
|