Jump to content
xisto Community

djXternal

Members
  • Content Count

    25
  • Joined

  • Last visited

About djXternal

  • Rank
    Newbie [Level 2]
  1. Hey guys I'm using Fedora Core 5, I was wondering if its possible to mount two hardrives (hdb and hdd on my system) on one folder using /etc/fstab.... if I just mount them with default options on the same folder the newest mounted takes over the folder and nothing on the older mount can be seen
  2. djXternal

    Timeout?

    My problem actually ended up being in the php.ini file, the section that limits max size for POST data was set at 8M so I just had to change that to a larger size to allow for the larger video uploads.
  3. Basically the script is for an picture/video album, so the numbers are not always the same, the code from DrK fixed my problem I was just too tired to see it skipping every 5
  4. djXternal

    Timeout?

    Well I didnt find anything there that fixed my problem, It seems like the file is too big for the server to take because at the very beginning of my script I have all the fields echoed and all are blank, so the field are rendered empty before the script even begins. I thought that possible it was IE causing the problem, but I tried uploading in Firwfox also and it still did not work
  5. djXternal

    Timeout?

    Is there a timeout setting or something of the sort in PHP or Apache? I'm building a file upload script that uploads a file and then adds a db entry in mysql with the file name and other info.... When I upload pictures everything works fine but when I upload larger .mov files it takes a little while which is expected then when the page loads my scripts tells me some of the fields were empty. If I echo all set variables, which contain the data from the fields, all of them are empty and I cannot figure out whyAny help is appreciated
  6. Thank you so much for the help, I just couldnt see the problem, possibly because I've been coding all day But thanks again
  7. Ok guys I have a small loop for cycling through mysql entries and it is having problems somewhere that it will not get the last entry in the db.... What should happen during this section of the script is it should cathc 12 entries with P as the "Type" and then one entry at the end with a "Type" of M... But for some reason it only catches the 12 P's and not the one M I cannot not find the problem so I'm hoping for someone with a little more experience can find the problem. Thanks $counter = 0;while($row = mysql_fetch_array($result)) { if ($counter != 4) { if ($row["Type"] == P) { echo "<td><a href='" . $row["Location"] . "'><img src='http://fjor.homeip.net" . $row['Location'] . "' width='175px' border='0'></a></td>"; } else { echo "<td><a href='dispMOV.php?file=" . $row["Location"] . "'><img src='media/movie.jpg' width='175px' border='0'></a></td>"; } $counter++; } else { echo "</tr><tr>"; $counter = 0; }}
  8. Well as I;ve said before I'm new to linux, but am learning fast, I'm trying to figure out how to add a program to start at fedora bootup, I need '/opt/lampp/lampp start' to start at bootup, I beleive I need to do something in the init.d folder but I am unsure of what should be done
  9. Wow thanks for telling me bout xampp it did everything ive been trying to do for the past few days in 5 minutes
  10. Ok now that I got mysql installed and running and I got phpmyadmin installed, it says that I am missing the mysql module for php, I tried installing the module it suggests as an rpm that came with fedora but it does not work for some reason? is there somewher I can find this module to install? or is it just something I need to edit in one of my config files, and if so which one?
  11. thanks i got it reinstalled and it works now.... Now how do I get mysql Administrator to connected to the server, the server doesnt seem to accept any connections from Mysql administrator, or is there a better graphical client for the server to use?
  12. Well I finally found a linux distro I like, I got the mysql server rpm installed on Fedora core 6 just last night... Now I am trying to start up the server and all i get is it saying its starting then saying its stopping from PID file /var/run/mysqld/mysqld.pidI am new to linux and farily new to running the mysql server, what should I be checking to fix this
  13. I would like both my linux machine to see my windows machine and vice versa.... I got samba installed on ubuntu, but I cant get my windows pc to see it in my network, anything I should check?
  14. ok thanks, im switching to a different distro atm because I didnt really like fedora that much plus I had an extremely old version... If I am going to run some servers on this machine which would be better, Debian or ubuntu? or will it not matter since they are basically the same core?
  15. I was hoping for it to work just like networking on my PC's just access it through the explorer, but I guess all I really need is to be able to transfer files from my one pc to the linux box
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | 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.