Forum: Windows NT / 2000 / XP 14 Days Ago |
| Replies: 5 Views: 371 The internet (HTTP) runs on port 80 for example Google can only be accessed via port 80
The only way to access the internet without that port would be setting up a dedicated HTTP Tunnle server... |
Forum: Windows NT / 2000 / XP 14 Days Ago |
| Replies: 5 Views: 371 What make/model is the router?
If you know the router password you can usualy change this setting on the routers configure page (192.168.0.1 if Netgear, 192.168.0.11 if Belkin, others vary)
If... |
Forum: JavaScript / DHTML / AJAX 28 Days Ago |
| Replies: 4 Views: 403 This is a good tutorial on Advanced AJAX with MySQL
http://www.tizag.com/ajaxTutorial/ajax-mysql-database.php |
Forum: JavaScript / DHTML / AJAX 28 Days Ago |
| Replies: 4 Views: 403 The request URL would have _GET varaibles in, just create the file action.php with the contents
<?php
print_r($_GET);
?>
and view the output in Firebug (XHTML requests section) |
Forum: JavaScript / DHTML / AJAX 29 Days Ago |
| Replies: 4 Views: 403 Sending data:
The easiest way to send data to your server from the form is using _GET variables
You can take the variables from your form and add them to your string like this
function action()... |
Forum: PHP Oct 22nd, 2009 |
| Replies: 6 Views: 940 If you only have basic FTP access I don't think its possible, some admin panels will let you do it (if you have one) but other than that no ideas so sorry =( |
Forum: PHP Oct 22nd, 2009 |
| Replies: 6 Views: 940 Several ways to run a PHP script outside browser:
CLI (Command Line Interface)
Call your script like #php /path/to/your/script.php from terminal/CMD
Telnet/SSH (Same as above)
Crond
On *NIX... |
Forum: ASP.NET Oct 14th, 2009 |
| Replies: 6 Views: 684 Firefox, Netscape Navigator and Opera will allow target to eather be an id= or a name= whereas IE only allows name= so I have both to cover all browsers |
Forum: ASP.NET Oct 14th, 2009 |
| Replies: 6 Views: 684 <form id="form1" action="#" method="post" enctype="multipart/form-data" runat="server" target="myframe">
<input type="file" id="myfile" accept="image" runat="server"/>
<input... |
Forum: PHP Sep 16th, 2009 |
| Replies: 3 Views: 329 There are a few options
1st would be JoomlaXplorer if you are running a Joomla system
This is a very good method of editing files and includes pritty syntax highlighting which makes it much easyer... |
Forum: PHP Aug 12th, 2009 |
| Replies: 4 Views: 231 See the contents of your variable with
print_r($row);
This prints out all the values in an array |
Forum: PHP Jul 31st, 2009 |
| Replies: 5 Views: 447 This is nothing to do with PHP, its all to do with the browsers trying to "URL Encode" the strings. |
Forum: PHP Jul 27th, 2009 |
| Replies: 4 Views: 748 Try this one out
http://pmsys.sourceforge.net/
Its open source :D |
Forum: PHP Jul 27th, 2009 |
| Replies: 4 Views: 748 You meen something like the PM system here at Daniweb?
I'm sure there will be loads of systems out there prebuilt for you |
Forum: Windows NT / 2000 / XP Jul 7th, 2009 |
| Replies: 3 Views: 374 Try start>accessories>system tools>system restore and select a date when you didn't have a problem. If that doesn't work post bak on the result/error |
Forum: PHP May 25th, 2009 |
| Replies: 4 Views: 882 Glad to see you figured it out |
Forum: PHP May 24th, 2009 |
| Replies: 4 Views: 882 Create a simple script such as
<?php
echo $_SERVER['HTTP_USER_AGENT'];
?>
And look at the response. Find something uneque to the IPhone E.G. Safari-Mobile etc. and add that to your script |
Forum: Windows NT / 2000 / XP May 10th, 2009 |
| Replies: 9 Views: 823 Avast Pro (Basic is SH*T) |
Forum: PHP Apr 10th, 2009 |
| Replies: 11 Views: 588 Tizag has some realy great beginer tutorials on PHP (They helped me learn in about 1 month)
Tizag PHP Tutorials (http://tizag.com/phpT/)
Enjoy |
Forum: PHP Apr 6th, 2009 |
| Replies: 2 Views: 404 There are many problems with that.
1 - Unless you spacificaly tell it, PHP will wait till the end of the script before sending ANY information to the browser so that script would not be sent till... |
Forum: PHP Apr 6th, 2009 |
| Replies: 5 Views: 359 Also you should insert some security as users could SQL inject into your database. |
Forum: PHP Mar 22nd, 2009 |
| Replies: 2 Views: 344 Mail (http://php.net/mail) PHP Function
(You would need to be running your own SMTP/Email server though) |
Forum: Windows Vista and Windows 7 Mar 16th, 2009 |
| Replies: 7 Views: 889 I don't think you can use network backup drives in anything other than business/ultimate. Might need an OS upgrade :( |
Forum: PHP Mar 16th, 2009 |
| Replies: 5 Views: 930 Yer soz, i wrote that during a Geography lesson and I wasn't thinking propperli :D |
Forum: PHP Mar 16th, 2009 |
| Replies: 5 Views: 930 Open Notepad/Wordpad and navigate to
<Your Windows Drive (C:/)>/windows/system32/drivers/etc/hosts
(You might need to change Text Document (*.txt) to all files to see it)
It should look something... |
Forum: PHP Jan 27th, 2009 |
| Replies: 18 Views: 1,285 OK then, i've looked at it and the URL rewriting rule is working fine (Its redirecting to the right page) and the server is clearly running as there is an error document being displayed. I think you... |
Forum: PHP Jan 27th, 2009 |
| Replies: 18 Views: 1,285 Hmm, it dont look like a missing module in apache as the error outputs the redirect URL
something/mysite/shopping/leftproducts.php?c_id=5
Try asking your webhost but other than that im stumped,... |
Forum: PHP Jan 27th, 2009 |
| Replies: 18 Views: 1,285 .htaccess files can go in any directory but if you are putting your rewrites in a .htaccess you should have it in the topmost directory. However you can put it anywhere you like as long as the links... |
Forum: PHP Jan 26th, 2009 |
| Replies: 18 Views: 1,285 OK then,
Try this:
RewriteEngine on
RewriteRule ^shopping/leftproducts/([A-Za-z0-9]).html$ /shopping/leftproducts.php?c_id=$1 [L, QSA]
I will explain the bits of this for you
1stly you need to... |
Forum: PHP Jun 11th, 2008 |
| Replies: 4 Views: 766 Right i see,
The problem is on the processor there is a command which says:
if (!isset($_POST['email']))
so if email post is not set it will send you back to the form i presume however on the form... |
Forum: PHP May 26th, 2008 |
| Replies: 5 Views: 1,640 When you post your form you need to tell it to post the form to the frame called _top, the frame _top is always the main browser window E.G. everything displayed in the browser.
You need to add a... |