Jump to content

speedy_rudolf

Members
  • Posts

    27
  • Joined

  • Last visited

    Never

Posts posted by speedy_rudolf

  1. Hi. I'm trying to build a home server using Microsoft Windows Server 2008 R2, Apache 2.2, PHP 5.2, MySQL 5.5. The server works fine localy. The problem is accessing it externaly (from LAN / Internet). I can't get my other computer (both connected through a router) to "see" the server. The problem isn't with the router (I had to reinstall the Windows to solve some problems ...the first time I was using IIS and I could see the site from LAN/Internet and I didn't change any settings in the router) or the firewall (I have disabled both PC's firewalls for testing purposes). So I'm guessing it might be an Apache setting problem, but I can't figure out what (I created a virtual server for the site using localhost as the domain name as I have read that this might be a cause, but no luck). Any idea what the problem might be and how to solve it? Thank you in advance. Bye.

    PS: I don't know if this helps, but I can't even ping one PC from the other.

  2. Hi. I'm using Microsoft Windows Web Server 2008 R2. I have setup IIS7.5, PHP 5.2 and Mysql Enterprise Edition 5.5 successfuly. The problem I'm having now is getting the SMTP server to work. Using the code:

    <?php
    $to="";
    $from="";
    $subject="Contact";
    $message="Nume: $_POST[name]
    Email: $_POST[mail]
    Mesaj: $_POST[msg]";
    if(mail($to, $subject, $message, $from))
        {header("Location: site.html");}
    else
        {echo ("Mail could not be sent.<br><br>
        <a href='site.html'>HOME</a>");}
    ?>

    writes in the log entries that everything is ok

    HELO      250

    MAIL      250

    RCPT      250

    DATA      250

    QUIT      240

    and creates the mail in the queue folder, but doesn't send it (it gets stuck in the queue).

    Using the code:

    <?php
    $to = '';
    $subject = 'TEST mail';
    $message = 'Hello. This is a test email from me.';
    $headers  = 'MIME-Version: 1.0' . "
    ";
    $headers .= 'Content-type: text/plain; ' . "
    ";
    $headers .= 'To: Rudolf <>' . "
    ";
    $headers .= 'From: Contact <>' . "
    ";
    mail($to, $subject, $message, $headers);
    ?>

    writes the same log entries (everything ok) but creates the mail in either BadMail or in queue (in which case the mail sits there for a few minutes then disappears, but nothing reaches the recipient) or doesn't create a mail at all (but the log entries are always consistent).

     

    I have granted permisions in Connection to 127.0.0.1 and in Relay to 127.0.0.1 and localhost. I have allowed port forwarding on my router on port 25 and my ISP isn't blocking port 25.

     

    Any idea why this might be happening and how to solve it? Thank you in advance. Bye.

  3. Hi. I have the following code:

    <?php
    $host="";
    $username="";
    $password="";
    $db_name="";
    $tbl_name="topic";
    // Connect to server and select databse.
    mysql_connect("$host", "$username", "$password")or die("cannot connect"); 
    mysql_select_db("$db_name")or die("cannot select DB");
    
    $name=$_POST['name'];
    $detail=$_POST['details'];
    
    $sql="INSERT INTO $tbl_name(topic, detail, datetime)VALUES('$name', '$detail', NOW())";
    $result=mysql_query($sql);
    
    if($result){
    echo("Topic created. ");
    $sql3="SELECT max(id) FROM $tbl_name";
    $result3=mysql_query($sql3);
    $tbl_name2="top_img";
    for($i=1; $i<11; $i++){
    
    $uploaddir = '/imgs/';
    $uploadfile = $uploaddir . basename($_FILES['img'.$i]['name']);
    
    echo '<pre>';
    if (move_uploaded_file($_FILES['img'.$i]['tmp_name'], $uploadfile)) {
        echo "File is valid, and was successfully uploaded.\n";
    } else {
        echo "Possible file upload attack!\n";
    }
    }}
    echo 'Here is some more debugging info:';
    print_r($_FILES);
    
    print "</pre>";
    
    echo("<br><br><a href='site.html'>HOME</a>");
    ?>

    And the error message:

    Topic created.

     

    PHP Error Message

     

    Warning:  move_uploaded_file(/imgs/Sunset.jpg) [function.move-uploaded-file]: failed to open stream: No such file or directory in /home/a7129718/public_html/test/add_topic.php on line 28

     

    PHP Error Message

     

    Warning:  move_uploaded_file() [function.move-uploaded-file]: Unable to move '/tmp/php73HyFd' to '/imgs/Sunset.jpg' in /home/a7129718/public_html/test/add_topic.php on line 28

     

     

    Free Web Hosting

    Possible file upload attack!

     

    Possible file upload attack!

     

    Possible file upload attack!

     

    Possible file upload attack!

     

    Possible file upload attack!

     

    Possible file upload attack!

     

    Possible file upload attack!

     

    Possible file upload attack!

     

    Possible file upload attack!

     

    Possible file upload attack!

    Here is some more debugging info:Array

    (

        [img1] => Array

            (

                [name] => Sunset.jpg

                [type] => image/jpeg

                [tmp_name] => /tmp/php73HyFd

                [error] => 0

                => 71189

            )

     

        [img2] => Array

            (

                [name] =>

                [type] =>

                [tmp_name] =>

                [error] => 4

                => 0

     

    bla bla bla

    Any idea what the problem might be? Thanks in advance. Bye.

  4. Hi. I'm fairly new to server management, so bear with me (and sory for my english). I'm have successfuly installed and configured Windows Web Server 2008 R2 and PHP 5.3.5 (I know it works because I can run *.php files/scripts just fine), but I have one problem. It doesn't run php scripts within *.html files. Let's consider the following code:

    <html>
    <head><title>TITLE</title></head>
    <body>
    <?php echo("Hello ");?>
    world!
    </body>
    </html>
    

    The output to the above code is:

    <?php echo("Hello ");?> world!

    Does anyone know how to solve this problem? Thank you in advance. Bye.

  5. Hi. I've been working on a project for some time now, and just recently I installed Firefox. Now, part of the site (which works perfectly in IE6/7) doesn't work in Firefox. Here is part of the code:

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title>Meniu de navigare</title>
    </head>
    <body bgcolor="#000437">
    <table width="119" style="position:relative; top:35%">
    <a href="pag_start.html" target="continut"><tr><td class="nav_bar" height="24" background="p1.png" valign="center" onmouseover="background='p2.png'" onmouseout="background='p1.png'" onmousedown="background='p3.png'" onmouseup="background='p2.png'">Home</td></tr></a>
    
    blah blah blah
    
    </table>
    </body>
    </html>
    

    (I didn't copy all of the code because it's basically the same all the way down)

    The main problem is with the link (Firefox apparently doesn't recognize table rows as links). The second problem is with the onmouseover/onmouseout etc handlers (absolutely nothing happens).

    Any ideas how to solve this? Thanks. Bye.

     

    PS: just in case you need to know, the code is for a nav bar.

  6. Hi. I think you all know me by now so I'll cut to the chase.

    <?php
    $host="edited";
    $username="edited";
    $password="edited";
    $db_name="edited";
    $tbl_name="topic";
    // Connect to server and select databse.
    mysql_connect("$host", "$username", "$password")or die("cannot connect"); 
    mysql_select_db("$db_name")or die("cannot select DB");
    
    $name=$_POST['name'];
    $detail=$_POST['details'];
    
    $sql="INSERT INTO $tbl_name(topic, detail, datetime)VALUES('$name', '$detail', NOW())";
    $result=mysql_query($sql);
    
    if($result){
    header("location:site.html");}
    else{
    echo("I have failed you master.");}
    ?>

     

    Displayed error: "I have failed you master." Anyone know a possible cause? Thanks. Bye.

  7. Is the record being inserted into the database?

     

    And it might be a good idea to edit out your DB username and password . . .

     

    no. The "error" occures before the record being inserted.

     

    yeah...as it turns out, it was an error/bug on the server's end. it couldn't correctly process the form. it works just fine now. thanks.

  8. Hi. I'm trying to build a sort of blog where users have to register to post questions/comments. My problem is with the registration part. Here is part of the code:

     

    <form name="registration" method="post" action="registration.php">
    <tr><td align="left">Nume</td>
    <td align="right"><input type="text" name="name" onKeyUp="validare()"></td></tr>
    <tr><td align="left">Email</td>
    <td align="right"><input type="text" name="email" onKeyUp="validare()"></td></tr>
    <tr><td align="left">Username</td>
    <td align="right"><input type="text" name="username" onKeyUp="validare()"></td></tr>
    <tr><td align="left">Parola</td>
    <td align="right"><input type="password" name="password" onKeyUp="validare()"></td></tr>
    <tr><td align="left">Confirmare parola</td>
    <td align="right"><input type="password" name="pass_conf" onKeyUp="validare()"></td></tr>
    <tr><td align="left">Anti-spam</td>
    <td><script type="text/javascript">DrawBotBoot()</script></td></tr>
    <tr><td></td><td><input type="submit" name="register" value="Inregistreaza-te" disabled="true"></td></tr>
    </form>...
    </html>

     

    <?php
    $host="mysql3.***************";
    $username="a7129718_root";
    $password="hello2";
    $db_name="a7129718_site";
    $tbl_name="members";
    // Connect to server and select databse.
    mysql_connect("$host", "$username", "$password")or die("cannot connect"); 
    mysql_select_db("$db_name")or die("cannot select DB");
    
    $sql="SELECT MAX(id) AS Maxa_id FROM $tbl_name";
    $result=mysql_query($sql);
    $rows=mysql_fetch_array($result);
    
    if ($rows) {
    $Max_id = $rows['Maxa_id']+1;}
    else {
    $Max_id = 1;}
    
    $name=$_POST['name'];
    $email=$_POST['email'];
    $user=$_POST['username'];
    $pass=$_POST['password'];
    
    $sql2="INSERT INTO $tbl_name(id, name, email, username, password)VALUES('$Max_id', '$name', '$email', '$user', '$pass')";
    $result2=mysql_query($sql2);
    
    if($result2){
    header("location:login.html");}
    else{
    echo "cannot insert into table";}}
    ?>

     

    The problem is: there is no error message. The server just redirects me to their error page, which doesn't contain any error code, just some ads. Can you tell me what the problem might be? Thank you in advance. Bye."


  9. .......

    Nope. Doesn't work. I tried copying the, changing the code, rewriting the code from scratch (using your code as a guideline), but still nothing. At best, it just takes me right back to my original problem, but most often it just gives me an error. Thanks anyway. Hope someone else can give me another idea.

     

    I finally did it :D Here is the code

    mysql_connect("$host", "$username", "$password")or die("cannot connect"); 
    mysql_select_db("$db_name")or die("cannot select DB");
    $sql="SELECT * FROM $tbl_name ORDER BY id DESC";
    // OREDER BY id DESC is order result by descending 
    $result=mysql_query($sql);
    ?>
    <table width='50%' border="0" align="center" cellpadding="3" cellspacing="1">
    <?php
    $limit=10;
    $page=0;
    $numrows = mysql_num_rows($result);
    $pages = intval($numrows/$limit);
    if ($numrows % $limit) {
    $pages++;}
    $page=$_GET

    ;
    $limitst=10;
    if(empty($page)){
        $limit=$limitst;
        $oldlimit=0;
        $page=1;
    }else{
        $limit=$page*$limitst;
        $oldlimit=$limit-$limitst;
    }
    $result = mysql_query("SELECT * FROM $tbl_name ORDER BY id DESC LIMIT ".$oldlimit.",".$limitst);
    while($rows=mysql_fetch_array($result)){?>
    <tr><td><font size="+2"><a href="view_topic.php?id=<? echo $rows['id']; ?>"><? echo $rows['topic']; ?></a><BR></font></td>
    <td width='0*'><? echo $rows['datetime']; ?></td></tr>
    <tr><td><? echo substr($rows['detail'], 0, 250)."..."; ?>  <a href="view_topic.php?id=<? echo $rows['id']; ?>"><? echo "Citeste mai mult";} ?></a>
    </td></tr>
    <tr><tr><td>
    <?
    if($pages == 1){
        echo "<b>1</b>";
    }else{
    for ($i=1; $i <= $pages; $i++) // loop through each page and give link to it.
    {
    	if($i == $page){
    		echo("<b>$i</b>\n");} // If current page don't give link, just text.
    	else{
    		echo "<a href=\"$PHP_SELF?page=$i\">$i</a> \n";
    	}
    }
    }
    ?>
    </td></tr></tr><?php
    mysql_close();
    ?>
    </table>

     

    Thank you very much every one for your ideas  ;)

  10. .......

    Nope. Doesn't work. I tried copying the, changing the code, rewriting the code from scratch (using your code as a guideline), but still nothing. At best, it just takes me right back to my original problem, but most often it just gives me an error. Thanks anyway. Hope someone else can give me another idea.

  11. Hi. I'm trying to make a sort of a forum, and this is the part of the code that needs to be changed, only I don't know how.

    mysql_connect("$host", "$username", "$password")or die("cannot connect"); 
    mysql_select_db("$db_name")or die("cannot select DB");
    $sql="SELECT * FROM $tbl_name ORDER BY id DESC";
    // OREDER BY id DESC is order result by descending 
    $result=mysql_query($sql);
    ?>
    <table width='50%' border="0" align="center" cellpadding="3" cellspacing="1">
    <?php
    $limit=10;
    $page=0;
    $numrows = mysql_num_rows($result);
    $pages = intval($numrows/$limit);
    if ($numrows % $limit) {
    $pages++;}
    $current = ($page/$limit) + 1;
    if (($pages < 1) || ($pages == 0)) {
    $total = 1;}
    else {
    $total = $pages;}
    $result = mysql_query("SELECT * FROM $tbl_name ORDER BY id DESC LIMIT $page,$limit");
    while($rows=mysql_fetch_array($result)){?>
    <tr><td><font size="+2"><a href="view_topic.php?id=<? echo $rows['id']; ?>"><? echo $rows['topic']; ?></a><BR></font></td>
    <td width='0*'><? echo $rows['datetime']; ?></td></tr>
    <tr><td><? echo substr($rows['detail'], 0, 250)."..."; ?>  <a href="view_topic.php?id=<? echo $rows['id']; ?>"><? echo "Citeste mai mult";} ?></a>
    </td></tr>
    <tr><tr><td>
    <?
    if ($page != 0) { // Don't show back link if current page is first page.
    $back_page = $page - $limit;
    echo("<a href=\"$PHP_SELF?query=$query&page=$back_page&limit=$limit\">back</a>    \n");}
    for ($i=1; $i <= $pages; $i++) // loop through each page and give link to it.
    {
    $ppage = $limit*($i - 1);
    if ($ppage == $page){
    echo("<b>$i</b>\n");} // If current page don't give link, just text.
    else{
    echo("<a href=\"$PHP_SELF?query=$query&page=$ppage&limit=$limit\">$i</a> \n");}
    }
    if (!((($page+$limit) / $limit) >= $pages) && $pages != 1) { // If last page don't give next link.
    $next_page = $page + $limit;
    echo("    <a href=\"$PHP_SELF?query=$query&page=$next_page&limit=$limit\">next</a>");}
    ?>
    </td></tr></tr><?php
    mysql_close();
    ?>
    </table>
    

     

    I made a database with 4 fields and 11 entries. The script shows the last 10 entries just as it should, but when I click on the 'next' button, nothing happens (it should show the first entry, but it just refreshes the page, and still the last 10 entries/1st page are shown). I think it has something to do with the link, but I can't figure out what exactly.

    Can someone help, or at least give me a hint? Thanks in advance. Bye.

  12. First up, NEVER rely on a cookie for user authentication. It'd take a user a few seconds to modify the cookie to be any user they want. Not only that, but not every user has JavaScript enabled. You need to look server-side for a secure login. I'd read up on a few PHP user login tutorials to familiarise yourself with the logic behind it. Then I'd also have a good read up on security (to ensure your system has no vulnerabilities), PHPFreaks have a good tutorial on security. Then I'd scrap the tutorials you read and write your own from scratch, then have someone look over it; to ensure you understand the concept and are following the best practises.

     

    JavaScript though is certainly not the way to go.

    Thanks for the heads up. And I just found out what was wrong with my script (I was missing the cookie path=/):)

  13. Hi. I'm trying to make a website where people have to login to be able to see some contents. But I kind of got stuck. I'm trying to use cookies, but I can't get them to work. (The following code is to test if the cookies/site work)

     

    Login page:

    <html>
    <head>
    <script language="javascript">
    <!--
    function setcookie(){
    document.cookie = "logged="+escape("Dom Director")
    window.location = "/site.html"}
    </script>
    </head>
    <body onload="setcookie()"></body>
    </html>
    

     

    Site Page:

    <html>
    <head><title>TITLU</title>
    </script>
    <script language="javascript">
    <!--
    function getCookie(cookies){
    var results = document.cookie.match ( '(^| ?' + cookies + '=([^;]*)(;|$)' );
    if ( results )
    	return ( unescape ( results[2] ) );
    else
    	return null;}
    </script>
    </head>
    <body>
    <table width="100%">
    <tr height="150"></tr>
    <tr><td width="150">bara navigatie</td>
    <td width="0*"><img src="400p.png">
    <script>if (!getCookie('logged'))
    document.write('You're not logged in.')
    else
    document.write('Hello , '+getCookie("logged"))</script>
    

     

    The problem is that it doesn't matter if I load the site page or the login page, I only get "you're not logged in", so either the cookie isn't being set, or the search doesn't find the cookie.

    Any help will be very much appreciated. Bye.

  14. Hi. I'm trying to design a "security system" for a program. Basically, the user has a custom built usb memory stick. When he/she wants to use the software, he/she has to first insert the memory stick into a usb port. Then, when the program is opened, it checks to see if the memory stick is in the correct "layout" (in this example it has a 32 mb memory chip and a 64 mb memory chip), then runs some apps from the memory stick. Anyway, the problem is, how do I get the "layout" of the stick (that is, check to see if the memory chips are from a genuine security stick)? Is there any way to do this? Or should we consider other options? Thank you in advance. Bye.

     

    PS: the programming has to be in c++, c# or assembly

  15. HTML:
    <form method="post" action="upload.php" name="site" enctype="multipart/form-data">
    <input type="radio" name="Layout" value="Fisier" onClick="Val_layout();Cont_pag1();">Trimite fisier<br/>
    <table id="Sl_f" style="display: none"><tr><td><input type="file" name="Fis_lay" size="100" onChange="Cont_pag1()"></td></tr></table>
    <input type="radio" name="Text" value="Fisier" onClick="Val_text();Cont_pag2();">Trimite fisier<br/>
    <table id="St_f" style="display: none"><tr><td><input type="file" name="Fis_txt" size="100" onChange="Cont_pag2()"></td></tr></table>
    <input type="submit" name="Finalizare" value="Finalizeaza Comanda" disabled=true>

    Well...that's just a small part of the code...the entire file has about 80k so i'm not going to post that.

     

     

    [attachment deleted by admin]

  16. You are likely exceeding one or more of the file upload settings on the server (upload_max_filesize and/or post_max_size and/or a MAX_FILE_SIZE setting being put into the form.)

     

    The form processing code will be executed any time the upload finishes, with errors or without errors. It is up to your form processing code to validate the upload data and check for all possible errors. Is your code doing any error checking and reporting why each file is not being uploaded so that you would know which upload error is occurring?

     

    Since this is not a HTML problem, moving thread to the php help forum...

    OK...here's what happened: I used the form (for debugging), after about 2 minutes after I hit the submit button the php script launched, but the files took another 4 minutes to upload.

  17. Hi. I'm making a website with multiple file inputs. The problem is submitting the form: if the user selects big files (eg: 3-4mb), when he submits the form, the php script is launched before the files have uploaded completely. How can I launch the script AFTER the file have uploaded (something like onfileupload or something like that)? It can be any language (html, javascript, php). Thank you in advance. Bye.

  18. Try setting the headers using the headers section rather than adding them at the start of the $message text.

    they were already set:

    $headers="From: $from";
    $semi_rand=md5(time());
    $mime_boundary="==Multipart_Boundary_x{$semi_rand}x";
    $header.="\nMIME-Version: 1.0\n"."Content-Type: multipart/mixed;\n"."boundary=\"{$mime_boundary}\"";

  19. Hi. I have the following code:

    else if(file_exists("site".$timp.".zip"))
    {$file=fopen("site".$timp.".zip", "rb");
    $data=fread($file, filesize("site".$timp.".zip"));
    fclose($file);
    $data=chunk_split(base64_encode($data));
    $message.="Content-Type:{\"application/octet-stream\"};\n"."name=\"site".$timp.".zip\"\n"."Content-Disposition: attachment;\n"."filename=\"site".$timp.".zip\"\n"."Content-Transfer-Encoding: base64\n\n".$data."\n\n";
    $message.="--{{$mime_boundary}\n";
    unset($data);
    unset($file);
    if(mail($to, $subject, $message, $headers))
    	{header("Location: comanda_primita.html");}

    The problem with it is, there is no attachment. Instead, at the end of the mail I get:

    --==Multipart_Boundary_x1074db4782f70d7323f462617b73ab9dx

    Content-Type:{"application/octet-stream"};

    name="site1256892830.zip"

    Content-Disposition: attachment;

    filename="site1256892830.zip"

    Content-Transfer-Encoding: base64

     

    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

    SVA=

     

     

    --{==Multipart_Boundary_x1074db4782f70d7323f462617b73ab9dx

    Does anyone know what's wrong with the code? Thank you in advance.

     

    PS: This script also sends multiple attachments (if there are multiple files)...But since it doesn't send even one attachment....

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.