Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 142
Search took 0.40 seconds.
Search: Posts Made By: MikoLone
Forum: Ajax and Design 03-26-2008, 10:57 PM
Replies: 1
Views: 2,701
Posted By MikoLone
The answer is that you never get a readyState 3...

The answer is that you never get a readyState 3 if your server is down.

So I would set a flag when I get readyState 3 and then check if I got it when I get ready state 4. If I didn't get it then I...
Forum: JavaScript programming 03-26-2008, 06:47 PM
Replies: 2
Views: 524
Posted By MikoLone
Why not just switch the whole table with the...

Why not just switch the whole table with the whole image? Why bother with the pieces if you are just going to put them together?
Forum: Ajax and Design 03-26-2008, 06:43 PM
Replies: 1
Views: 2,701
Posted By MikoLone
AJAX Check if server is down.

How can you check with ajax if the server is down. I hacked my way into a solution but I imagine there is a better way. This is how I did it. The snippet is inside the onreadystatechange event.

...
Forum: DOM and JSON scripting 10-16-2007, 10:10 PM
Replies: 9
Views: 1,217
Posted By MikoLone
@Fang This of course will list all of the...

@Fang

This of course will list all of the functions declared. But it doesn't tell me which JS file they belong to. I did that already and that is how I that they are in the window object. Any...
Forum: DOM and JSON scripting 10-16-2007, 04:24 PM
Replies: 9
Views: 1,217
Posted By MikoLone
Yes my goal is to do this in Javascript. I have...

Yes my goal is to do this in Javascript. I have some ideas on how to do it but they are clunky and feel like hacks. The idea is to make an iframe and read in the src to all of the script tags on the...
Forum: DOM and JSON scripting 10-16-2007, 12:42 AM
Replies: 9
Views: 1,217
Posted By MikoLone
Finding which script a function belongs to in the DOM

I would like to find out what script file a function belongs to. Better yet, I would like to know all of the functions that a javascript file declares.

I know that all javascript functions (and...
Forum: DOM and JSON scripting 10-16-2007, 12:04 AM
Replies: 3
Views: 1,374
Posted By MikoLone
I did this using curl in php. I would send an...

I did this using curl in php. I would send an AJAX request to a php page that had the following code in it.


<?php
//lang=all&bpl=$_POST['bpl']&bypass=1;
if(!isset($_POST['url'])){
echo...
Forum: Computer/PC discussions 08-16-2007, 10:19 PM
Replies: 13
Views: 1,512
Posted By MikoLone
I was using it properly. I had set up an...

I was using it properly.

I had set up an FTP site. FTP means that you edit the files directly on the server. Why would I check anything out 1. if I am the only person editing on my server. and 2....
Forum: Computer/PC discussions 08-15-2007, 11:13 PM
Replies: 13
Views: 1,512
Posted By MikoLone
I am not looking for a WSYWIG editor and the...

I am not looking for a WSYWIG editor and the problem with Dreamweaver is that it is not free. Plus in using Dreamweaver's ftp and site management I found that it would cache files and the over write...
Forum: Computer/PC discussions 08-09-2007, 07:50 PM
Replies: 13
Views: 1,512
Posted By MikoLone
I have tried bluefish and it is pretty good. ...

I have tried bluefish and it is pretty good.

I also found out that using kate and opening a server directory using sftp and fish, you have to have kde installed. so on ubuntu and did a sudo...
Forum: Computer/PC discussions 08-08-2007, 11:32 PM
Replies: 13
Views: 1,512
Posted By MikoLone
Thanks guys. I will check this stuff out. I don't...

Thanks guys. I will check this stuff out. I don't want to run Dreamweaver though. I don't what to spend money on it.

Also if anyone else has the same problem. kate has a pretty good option I...
Forum: Computer/PC discussions 08-08-2007, 07:20 PM
Replies: 1
Views: 881
Posted By MikoLone
check out this page. ...

check out this page.

http://www.maximumpc.com/articles/Best+of+the+Best

They review hardware and say what is the best out there. It is a good guide when building a new computer.
Forum: Computer/PC discussions 08-08-2007, 07:09 PM
Replies: 13
Views: 1,512
Posted By MikoLone
Web Programming Software for Linux

I am looking for a good web programming text editor for my brand spanking new ubuntu box that I just set up. I know there are a lot out there and I have checked out kate, kwrite, bluefish, etc. But...
Forum: Computer/PC discussions 08-08-2007, 07:02 PM
Replies: 3
Views: 1,195
Posted By MikoLone
If you mostly just want to do the command line...

If you mostly just want to do the command line stuff then I would install cygwin.

If not then I would download vmware server. It is great for testing linux distros out. That is how I did it.
Forum: JavaScript programming 06-22-2007, 05:48 PM
Replies: 5
Views: 721
Posted By MikoLone
You are right. I don't know what I didn't think...

You are right. I don't know what I didn't think of that.

It is better to make an array and than join the strings and I should use the DOM for stuff that is updated more often. I am going to...
Forum: PHP 06-21-2007, 08:31 PM
Replies: 3
Views: 656
Posted By MikoLone
See that is the weird part. I sshed into the...

See that is the weird part. I sshed into the server and chmoded the folder to 777 but it was still writing the files as 600.

That was dumb of me. I should have realized it was if it didn't move...
Forum: PHP 06-21-2007, 04:43 AM
Replies: 3
Views: 656
Posted By MikoLone
Oops

Sorry guys.

I found the problem. I am totally rolling my eyes at myself.

I changed my code to this


if(!move_uploaded_file($_FILES['fullSizePic'.$propId.$i]['tmp_name'], ...
Forum: PHP 06-21-2007, 04:32 AM
Replies: 3
Views: 656
Posted By MikoLone
File permissions on upload

I am uploading picture. This is part of the code


if(!move_uploaded_file($_FILES['fullSizePic'.$propId.$i]['tmp_name'], '../images/properties/'.$imageName) ){
chmod('../images/properties/' ....
Forum: JavaScript programming 06-20-2007, 11:54 PM
Replies: 5
Views: 721
Posted By MikoLone
I am actually looking at the site right now. The...

I am actually looking at the site right now. The problem is that I am also outputting other media also such as WMP and QT. Regardless, I would like to know if it is better to create HTML using the...
Forum: JavaScript programming 06-20-2007, 11:32 PM
Replies: 1
Views: 703
Posted By MikoLone
Post a quicky thing to do would be to do something...

a quicky thing to do would be to do something like

<td onclick="changeBackGroundColor(this);">


function changeBackGroundColor(el){
var tds = document.getElementsByTagName('TD');
for (var...
Forum: JavaScript programming 06-20-2007, 11:24 PM
Replies: 2
Views: 1,327
Posted By MikoLone
It doesn't seem like it is possible since...

It doesn't seem like it is possible since javascript can't manipulate the the color of the tool bars or anything. Gmail tries to do this in their google talk app built in to the email but they have a...
Forum: JavaScript programming 06-20-2007, 11:12 PM
Replies: 5
Views: 721
Posted By MikoLone
What is better? Outputting HTML as a String or Producing it with the DOM

I need to out put some html with javascript. What is more efficient? (less memory, faster loading etc)

doing something like this

var str = '<object...
Forum: JavaScript programming 06-19-2007, 11:09 PM
Replies: 8
Views: 807
Posted By MikoLone
"tried changing one of the scripts ie ...

"tried changing one of the scripts ie
name=Music> & <OBJECT id=music to read audio instead but that didn't work either. Is that what you mean?"

That is what I meant. You would have to change the...
Forum: JavaScript programming 06-18-2007, 08:34 PM
Replies: 8
Views: 807
Posted By MikoLone
And To quickly fix your problem, You probably...

And To quickly fix your problem, You probably just need to change your id names to be unique.
Forum: JavaScript programming 06-18-2007, 08:31 PM
Replies: 8
Views: 807
Posted By MikoLone
You might think about having one media player and...

You might think about having one media player and then just changing the media once they have clicked on the song they want to play. Here are some resources that helped me get started with this.
...
Showing results 1 to 25 of 142

 
Forum Jump

All times are GMT +1. The time now is 03:38 PM.