Jump to content

mens

Members
  • Posts

    52
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

mens's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. On my local test machine, running WinXp SP3, I've got xampp and wamp. Both of them service different purposes, and was was always running smoothly. Yesterday, I upgraded xampp PHP version to 5.3.2 manually, I didn't re-install the whole xampp because I did not want to lose my current configuration files. The thing now is: apache won't start, logs holds nothing. System event viewer says that "libapr-1.dll" is, and I'm quoting... "faulty". In addition, a error dialog apears when starting httpd, saying that memory can't be read, and refers back to "libapr-1.ddl". I have searched google, and no solutions have been posted there. Xampp and Wamp are shutdown, and when started doesn't show any active service. I've run netstat -a -b, and it doesn't show any port open for 80 or 443. Later, I ran nmap -sS to see if WinXP isn't lying, and sure enough, it picked up that ports 80 and 443 was open, though mysql wasn't. When trying to browse port 80 in my browser, it does actually load, but at very slow speeds and then fails for anything else browsed. When trying to start apache, it gives me an "failed to 'read' memory. Another thing, when starting Apache manually(httpd -k start), it always says that the pid file existed at time of execution; even though I tried to delete the pid file. At this point, reinstalling apache won't work, as "some" previous instance is already active. Does anyone have ideas why this is happening, and how I could repair it? Any help is appreciated. Edit: if anyone knows how to kill the process, or a utility that can, that'll also work.
  2. I found this a while back: http://technophiliac.wordpress.com/2008/05/28/ever-wondered-how-gmailfacebook-chat-works/ It may offer an explanation to you, as I also don't know exactly how it works. Edit: look at this as well.
  3. You can use CSV files, or XML - your choice. Unfortunately for you, fopen() is your best bet when working with file manipulation techniques. There's also file() and file_get_contents() though.
  4. As you said, it may get large. MySQL wouldn't be your answer then, unless you clear logs on a daily basis. I'd suggest using files for the chat logs, and dividing them by hour, day or week depending on the size of them. The is, by using MySQL for this, you would need to select through thousands of chat message entries, which would make it very slow indeed. With files, you can specify the size of the files, and instantly create a new file for chat messages as needed. This wouldn't affect performance as much as a MySQL database design would.
  5. Try without the money() function, as it is pointless anyway. <?php $income = 5000000000; $daily = number_format($income*24,0); $weekly = number_format(($income*24)*7,0); $monthly = number_format((($income*24)*7)*30,0); ?> <html> <center> <table border="1"> <tr> <td>Daily</td> <td><?php echo $daily; ?></td> </tr> <tr> <td>Weekly</td> <td><?php echo $weekly; ?></td> </tr> <tr> <td>Monthly</td> <td><?php echo $monthly; ?></td> </tr> </table> </form> </center> </html>
  6. The variables need an ending semi-colon(, or else it will show syntax errors.
  7. I can't think of any tutorials for this specific task, but I would suggest reading up on jQuery. It makes working with Javascript much easier. Here's a guide on checkbox/radio manipulation with jQuery: http://www.techiegyan.com/2008/07/09/using-jquery-check-boxes-and-radio-buttons/
  8. I'm using Chrome 10.0.648.205. As for the sorting and images, I can suggest Quicksand. It could be a valuable plugin to use for your images.
  9. Using Javascript would be your best solution, and less time consuming on your part. By adding an onclick property to the checkbox, you can alter the display properties of a specific input element causing it top appear. The back-end of this, would be simple: if the specific checkbox is selected validate the input element - else, don't. This can be done with PHP, sure. But the user will need to submit the form, and you need to validate it and generate the HTML for the input element; and then output it... again.
  10. There are many other jQuery plugins that you could use. Just search on the jQuery website. I'd suggest this.
  11. 1. Please obscure or remove your email address. 2. Google, and learn.
  12. By looking at your script, pre-appending to $fullpath should do the trick. Or manually, you can edit the fopen function, eg.: $path = getcwd() . '/DIR/'; $x = fopen($path . $fullpath,'x');
  13. I'm loving the design, so simplistic and elegant. What I don't love: All the images are loaded, whether I like it or not. The images, could use a plugin like FancyBox, instead of going directly to the image. The "What I'm about" section by the contact form, not liking the contrast between the black background and white text. One thing worth mentioning about one page websites, they are load intensive, and since you have a lot of images being displayed I'd prefer the option to load the different sections on command. Other than that, good job.
  14. Try: SELECT COUNT(*) as `filled` FROM `done` WHERE DATE(`date`) = DATE(NOW()) GROUP BY `user_id` Hope that helps.
  15. Whoah, PHP4 hey? Anyways, the manual has a lot of valueble information on this, see the use of POST and GET global variables here. Although, it is still possible to use a PHP4 method, using HTTP_POST_VARS. The basic usage would be: if (!empty($_POST['name'])) { $clientName = $_POST['name']; } { ... HTML ... } <form method="post"> <input type="text" name="name"> <input type="submit"> </form>
×
×
  • 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.