This topic is locked

3 errors..

7/9/2005 12:09:32 PM
PHPRunner General questions
diac21 author

Warning: open_basedir restriction in effect. File is in wrong directory in /home/httpd/vhosts/bbatotaal.nl/httpdocs/test/test7/include/berichten_functions.php'>bbatotaal.nl/httpdocs/test/test7/include/berichten_functions.php on line 2
Warning: open_basedir restriction in effect. File is in wrong directory in /home/httpd/vhosts/bbatotaal.nl/httpdocs/test/test7/include/berichten_functions.php'>bbatotaal.nl/httpdocs/test/test7/include/berichten_functions.php on line 3
Warning: Cannot add header information - headers already sent by (output started at /home/httpd/vhosts/bbatotaal.nl/httpdocs/test/test7/include/berichten_functions.php'>bbatotaal.nl/httpdocs/test/test7/include/berichten_functions.php:2) in /home/httpd/vhosts/bbatotaal.nl/httpdocs/test/test7/include/dbcommon.php on line 15
im getting these 3 errors, ive made 10 different projects today but none of them work propperly. Downloaded today the trial version, and got some questions too. Is it possible to store a password in a database, and that i can't see what pass that is.. <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=question&id=1614&image=1&table=forumtopics' class='bbc_emoticon' alt=':P' /> so if somebody has got the password: hello, that i see this: 32847sdjf08uflsdajndlfakj or something like that <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=question&id=1614&image=2&table=forumtopics' class='bbc_emoticon' alt=':P' /> and maybe someone has got a solution for the 3 errors...

Sergey Kornilov admin 7/11/2005

Hi,
please try to modify ..._functions.php file in PHPRunner output folder.

Open it with a text editor and replace these lines in the beginning:

include("locale.php");

include("dbcommon.php");



with the following:

include("include/locale.php");

include("include/dbcommon.php");


If this helps, you can make these changes permanent by modifying

C:\Program Files\PHPRunner\source\include\functions.php file in the same way.

diac21 author 7/11/2005

Hi admin,
thx for reply! <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=5102&image=1&table=forumreplies' class='bbc_emoticon' alt=':)' /> I've changed that, and it worked, i was getting 3 other errors <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=5102&image=2&table=forumreplies' class='bbc_emoticon' alt=':P' /> <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=5102&image=3&table=forumreplies' class='bbc_emoticon' alt=':lol:' /> but ive to change all the other files too, (only tested on 1) and that page worked. But still i don't know how to get passwords like alkjvzoiuv983428 into the database instead of just: 'hello' or something. And maybe you can tell me too what the difference is between asp and php, because i dont know.. thx anyway, but i would really like to know about the passwords, and then I might buy this program <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=5102&image=4&table=forumreplies' class='bbc_emoticon' alt=':)' />

Sergey Kornilov admin 7/11/2005

To store encrypted passwords in the database you can use md5 function that comes with PHP. Modifications need to be made in login, register, change password and password reminder files. After you purchase PHPRunner I can show you how to implement this feature. Also we plan to include this feature in one of the following versions of PHPRunner.
ASP and PHP are two different technologies. Some people choose PHP because it's newer, becoming more popular every day and doesn't depend on Microsoft. Other people, especially those who rely on Windows-based hosting, choose to stay with ASP. Some people like me are comfortable using both.