|
| xampp connect in windev17 |
| Iniciado por guest, 03,jun. 2015 06:31 - 12 respuestas |
| |
| | | |
|
| |
| Publicado el 03,junio 2015 - 06:31 |
how to connect xampp server in windev17 but not work this code FTPConnect("Localhost","root","","80") |
| |
| |
| | | |
|
| | |
| |
| Publicado el 03,junio 2015 - 11:55 |
IF FTPConnect("mysql","root","123","3306")=True THEN Info("ok") ELSE Info("not ok") END
but not connect xampp server |
| |
| |
| | | |
|
| | |
| |
| Publicado el 03,junio 2015 - 12:04 |
Vijay,
Port number is an integer, i.e. no quotes? |
| |
| |
| | | |
|
| | |
| |
| Publicado el 03,junio 2015 - 12:42 |
darref sir,
I am try this code not connect server
IF FTPConnect("mysql","root","123",3306)=True THEN Info("ok") ELSE Info("not ok") END |
| |
| |
| | | |
|
| | |
| |
| Publicado el 03,junio 2015 - 13:12 |
Vijay, Normally port 80 is for HTTP and port 3306 is for MYSQL, FTP is usually in port 21
Are you sure that you have one ftp server configured to listen in one of this ports?
what are you trying to do? |
| |
| |
| | | |
|
| | |
| |
| Publicado el 03,junio 2015 - 13:41 |
this not connect IF FTPConnect("mysql","root","123",21)=True THEN Info("ok") ELSE Info("not ok") END
--------------------
IF FTPConnect("mysql","root","123",80)=True THEN Info("ok") ELSE Info("not ok") END |
| |
| |
| | | |
|
| | |
| |
| Publicado el 03,junio 2015 - 13:51 |
Result = FTPConnect(Server [, User Name [, Password [, Port Number [, Type of Connection [, Connection Time-out [, Private Key [, Key Password]]]]]]])
Where are you setting the server IP address to connect? It can't be "mysql"
The FTP user is "root" and the FTP password is "123"?
Try your first post changing port 80 by 21 and the correct FTP user and password.
Rubén |
| |
| |
| | | |
|
| | |
| |
| Publicado el 03,junio 2015 - 14:52 |
Vijay,
Rubén is right you sintax is wrong. But as i told you before if what you need is to access the mysql db installed with xampp you can't connect with ftp.
xampp is one development environment (apache,php,mysql,....) what are you trying to acheive?
If what you need is to share the same db in mysql, it's possible but not using ftp, just search the help for mysql.
Please take some time to explain your needs, just posting some lines of code isn't enough to understand your problem. |
| |
| |
| | | |
|
| | |
| |
| Publicado el 04,junio 2015 - 16:10 |
i am try to wamp server and xampp server
not connect wamp server and xampp server |
| |
| |
| | | |
|
| | |
| |
| Publicado el 04,junio 2015 - 16:42 |
the problem must be the same with wamp or xampp.
If you don't explain what you are trying to acheive we can't help you. Access one web server from windev, why?
If you need to access some app in the web server probably what you need is to use some HTTP... function, not FTP.
If you need to share the db read my previous post.
If none of the above, let us know what you need. |
| |
| |
| | | |
|
| | |
| |
| Publicado el 04,junio 2015 - 17:21 |
The primary question is did you start the FileZilla FTP server in your XAMPP?
You cannot connect to something whose service is not running.
So first fire up the XAMPP control panel and start the FTP server and then try to connect to it.
HTH
Yogi Yang |
| |
| |
| | | |
|
| | |
| |
| Publicado el 04,junio 2015 - 22:09 |
mysql server is currently running but nor solution |
| |
| |
| | | |
|
| | |
| |
| Publicado el 05,junio 2015 - 10:13 |
Vijay,
you can't connect to mysql using FTPConnect.
Read the windev help to use mysql databases. |
| |
| |
| | | |
|
| | | | |
| | |
|