Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
Pages: 1 [2]
Print
Topic: PHP Upgraded to 5.2.x  (Read 16694 times)
« Reply #15 on: January 19, 2007, 08:03:55 AM »
enWILLYado Offline
Newbie

View Profile
*
Posts: 10



When the php's version was  updated, my php used the function "fopen" to read the php's the contents of the files.
Right now than the function "fread" is not supported by the new php, we have to change, manually, all of the php that use that invalidated function.
It's my guess that you have some of those shows and that's why do not charge your forum ( I suffered something like that, that he didn't read users' meter and when incrementing it 1 showed up, until now than, when modifying the function, he reads it and increment correctly )
Logged

 
« Reply #16 on: April 23, 2007, 03:36:18 PM »
enWILLYado Offline
Newbie

View Profile
*
Posts: 10



After over two years utilizing the fabulous service of t35, two weeks ago that they have erased me the account erasing all of the files without sending me no back up copy ( approximately of 3 to 5 megabytes ) and without warning notification for me; Such and as I accepted in the terms in days gone by.

Thanks to this altercation, now I offer my page Web below my own server, without advertisement and with great quickness ( for the users and for me by the hour to update ) and with the aplomb to not to have that to adhere to no norm imposed by other ones.

Only I wanted to acknowledge the service rendered and that they know that I was here. I will remember you a bit well, although this unpleasant taste of mouth remain at the end. A hug to all. cool
Logged
« Reply #17 on: April 23, 2007, 04:37:20 PM »
Alex Melen Offline
President / Founder
Administrator
Addict

View Profile WWW
*****
Posts: 1,951



We never erased any of your files.. i would make sure that nobody knows your password or has spyware on your computer. The only recommendation I would make is to read up on web hosting before you just starting offering it to people. Not only the security concerns that you might experience, but the legal ones as well. We had a customer recently who thought it was just fun and games offering it from his home on his parent's computer. I won't go into details, but his parents wound up with a $50,000 fine from AOL because of matters to do with spam.
Logged

« Reply #18 on: April 24, 2007, 08:11:59 AM »
enWILLYado Offline
Newbie

View Profile
*
Posts: 10



Create me, I saw as they erased files ( very fast ) like it were from your server. Immediately after erasing, I lost the authorized access ( when updating after some second from my FTP-Client ) and neither I could enter by FTP-Web. I were  forwarded in my Web from HTTP to the error 404, since all files were eliminated.

I tried to send the reactivation, and it was useless. Now I can't ask for the lost password. I would like to be able to recover my account, although I no longer will go back to use her with so much dedication as before ( most of all to maintain the favorites that I was getting after these years ).  wink
Logged
« Reply #19 on: April 24, 2007, 08:22:24 AM »
Alex Melen Offline
President / Founder
Administrator
Addict

View Profile WWW
*****
Posts: 1,951



What's the username? And what ftp program did you use? i've heard specific ftp programs crashing and sending erranious commands to the server that often result in file deletion. In general, we don't delete member accounts unless its a severe abuse issue and the member is contacted and given 24 hours to move his files.
Logged

« Reply #20 on: April 30, 2007, 09:25:52 AM »
enWILLYado Offline
Newbie

View Profile
*
Posts: 10



Mi username was enwillyado.t35, and my mail is enwillyado@hotmail.com. The FTP-CLIENT I use is Cute.
Logged
« Reply #21 on: April 30, 2007, 09:43:10 AM »
Alex Melen Offline
President / Founder
Administrator
Addict

View Profile WWW
*****
Posts: 1,951



Where did you send messages to? We never touched your account, our logs show that you deleted the files in there (or someone with your login). There is also still a folder in there, so apparently not all files were deleted? I can ftp into your account without any problems.
Logged

« Reply #22 on: April 30, 2007, 09:59:03 AM »
enWILLYado Offline
Newbie

View Profile
*
Posts: 10



But  huh ... good, I guess so, that somebody went into my system ... and therefore that the system takes revenge for vulnerabilities. I am sure that the password could not be gotten by nobody. In any case, I thank his fidelity during these years.
I would like to know if they have some log to see if, about « Sent to: Alex Melen on: April 14, 2007, 05:49:46 PM », somebody accessed my account, above-cited.
Now I have erased all of FOLDERS ( there were no files )
I suppose that it was an external attack, that it was dedicated to erasing all of the files ... it has to there have been it note... there were many files. And my web site was visited by a lot of people.
Logged
« Reply #23 on: April 30, 2007, 03:35:07 PM »
Alex Melen Offline
President / Founder
Administrator
Addict

View Profile WWW
*****
Posts: 1,951



I would recommend you change your password asap. It wasn't a security issue.. someone used your username/password to delete the files. If it was a security issue they would have been deleted with an admin/root account and I doubt someone who can hack our entire system would just delete your account and not touch anything else or any of the other 300,000 members.
Logged

« Reply #24 on: May 23, 2007, 11:47:57 AM »
It's not the code that's bad, it's the coder.
trecool999 Offline
Newbie

View Profile WWW
*
Posts: 29



I re-enabled them for the time being.. but in general, you could use something like this instead:

// set file to read
$file = '/usr/local/stuff/that/should/be/elsewhere/recipes/omelette.txt';
// read file into string
$data = file_get_contents($file) or die('Could not read file!');
// print contents
echo $data;

Have you disabled the ability to upload files? Because it's one of the main reasons I came here...
Logged

I want my RS Account Back
« Reply #25 on: May 23, 2007, 01:56:43 PM »
Alex Melen Offline
President / Founder
Administrator
Addict

View Profile WWW
*****
Posts: 1,951



you should be able to upload them as long as you are uploading them into the same directory as the file you are using to upload with.
Logged

« Reply #26 on: May 23, 2007, 01:58:57 PM »
It's not the code that's bad, it's the coder.
trecool999 Offline
Newbie

View Profile WWW
*
Posts: 29



you should be able to upload them as long as you are uploading them into the same directory as the file you are using to upload with.

That's odd. I have a script that has worked on previous hosts, but when I download and upload them here again, it will take the action like the file was never uploaded...

Code:
<?php
if(!isset($_FILES['Name'])) {
    
header('Location: UpFormRSS.php');
}
$Temp $_FILES['Name']['tmp_name'];
$Name $_FILES['Name']['name'];
$Size $_FILES['Name']['size'];
$Type $_FILES['Name']['type'];

function 
WriteFile() {
    global 
$Temp$Name$Size$Type;
    if(
$Type !== 'text/xml') {
    unlink($Name);
        echo 
'This file is not an XML/RSS file: ' $Type;
    } elseif(
$Size 50000) {
    unlink($Name);
        echo 
'This file is over 5MB.';
} elseif(file_exists($Name)) {
    unlink($Name);
    echo 'The file, ' $Name ', already exists.';
    } elseif(!
$_FILES) {
unlink($Name);
        echo 
'There was an error uploading the file.';
    } elseif(
move_uploaded_file($Temp'./' $Name)) {
    echo 'Success!<p>

<input type="hidden" value="' 
$Name '" id="Name" name="Name"><input name="Submit" type="image" id="Submit" src="images/Buttons/Submit/Submit.png" alt="Submit" onmouseover="MM_swapImage(\'Submit\',\'\',\'images/Buttons/Submit/Submit_f2.png\',1);" onmouseout="MM_swapImage(\'Submit\',\'\',\'images/Buttons/Submit/Submit.png\',1);" />';
}
}
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Upload</title>
<script src="Scripts.js" ></script>
<link href="Style.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
.smalltext {font-size: 12px}
.headertext {font-style: italic; font-size: 14px;}
.style5 {font-size: 12px; font-weight: bold; }
-->
</style>
</head>
<body>
<form id="Go" name="Go" method="post" action="ViewRSS.php">
  <?php WriteFile(); ?>
</form>
<p>&nbsp;</p>
<p>
</p>
</body>

</html>
Logged

I want my RS Account Back
 
Pages: 1 [2]
Print
Jump to:  

Powered by SMF | SMF © 2006-2008, Simple Machines LLC