| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 566 online users. » 1 Member(s) | 562 Guest(s) Applebot, Bing, Google, go881cocom
|
| Latest Threads |
IW 16.2.0 Missing librari...
Forum: IntraWeb General Discussion
Last Post: Gregory_Twedt
06-24-2026, 04:40 AM
» Replies: 5
» Views: 642
|
VCL conversion
Forum: Delphi General Discussion
Last Post: tobenschain
06-20-2026, 05:00 AM
» Replies: 0
» Views: 84
|
TIWjQDBGrid changing UI
Forum: IntraWeb General Discussion
Last Post: BoostedCruiser
06-08-2026, 02:02 AM
» Replies: 36
» Views: 70,401
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: Fabrizio Conti
06-04-2026, 09:14 AM
» Replies: 3
» Views: 480
|
Access Violation When Val...
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
06-03-2026, 08:47 AM
» Replies: 2
» Views: 520
|
Bootstrap5
Forum: IntraWeb General Discussion
Last Post: geraldtatum
06-02-2026, 06:24 AM
» Replies: 1
» Views: 421
|
weakpackageunit contains ...
Forum: IntraWeb General Discussion
Last Post: rlebeau
05-26-2026, 04:56 PM
» Replies: 4
» Views: 551
|
Custom 404 handler
Forum: IntraWeb General Discussion
Last Post: CfawesDwale
05-21-2026, 08:02 AM
» Replies: 0
» Views: 260
|
PopUp Menu
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
05-13-2026, 04:35 AM
» Replies: 4
» Views: 8,212
|
Image question on tiwjqdb...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
05-13-2026, 03:32 AM
» Replies: 3
» Views: 4,131
|
|
|
| Unable to upload to correct FTPS folder if FTP site also exists |
|
Posted by: Vintner - 05-10-2018, 03:37 PM - Forum: Indy
- Replies (1)
|
 |
Hello
I'm using Indy 10.6.0.516 on Delphi XE7.
I can get FTPS to upload to the correct folder using port 990 if there is no FTP site on the same IP. However, as soon as I set up an FTP site on port 21, then FTPS uploads now go to the FTP folder rather than the FTPS one.
Is it possible for Indy to work with FTPS when there are both FTP and FTPS sites on the same host?
Here is my code:
Code: If IdFTP1.Connected then
IdFTP1.Disconnect;
IdFTP1.Host:=FTP_HOST;
IdFTP1.Port:=FTP_PORT; //990
IdFTP1.Username:=FTP_USERID;
IdFTP1.Password:=FTP_PASSWORD;
IdFTP1.Passive:=True;
IdSSLIOHandlerSocketOpenSSL1.Host:=FTP_HOST;
IdSSLIOHandlerSocketOpenSSL1.Port:=FTP_PORT; //990
IdSSLIOHandlerSocketOpenSSL1.DefaultPort:=FTP_PORT;
IdSSLIOHandlerSocketOpenSSL1.SSLOptions.Method:=sslvSSLv23;
IdFTP1.IOHandler:=IdSSLIOHandlerSocketOpenSSL1;
IdFTP1.UseTLS:=utUseExplicitTLS;
IdFTP1.DataPortProtection:=ftpdpsPrivate;
IdFTP1.Connect;
IdFTP1.ChangeDir(FTP_FOLDER);
IdFTP1.Put(zipSourceFile, zipDestinationFile);
Many thanks
|
|
|
| How to pass email datetime to the New TIdImap4.AppendMsg method? |
|
Posted by: edwinyzh - 05-10-2018, 08:44 AM - Forum: Indy
- Replies (3)
|
 |
Hello,
In the old version of Indy 10 (a few years back), the TIdImap4.AppendMsg allows me to pass the UTC datetime of the email, but I don't know since when the parameter list of that method has changed.
I have noticed the AAlternativeHeaders: TIdHeaderList parameter, I guess I can set the email date using this parameter? If yes, how? Thanks.
|
|
|
| ISAPI & ComInitialization |
|
Posted by: JalcoJohn - 05-09-2018, 01:58 PM - Forum: IntraWeb General Discussion
- Replies (2)
|
 |
I've an app that has ComInitialization set to ciMultiThreaded and it all works fine on my installation of IIS (Version 8). however, when I deploy it to my Client's server running the same version of IIS I get the error 'Cannot change thread mode after it is set'. If I change it to ciNormal it seems to work OK.
So the question is, has IIS got some setting somewhere that controls COM on the face of it both systems look the same and is there any harm in leaving it at ciNormal?
Any help much appreciated.
Regards
John
|
|
|
| Error: Could not load SSL library |
|
Posted by: RaelB - 05-09-2018, 08:49 AM - Forum: Indy
- Replies (8)
|
 |
Hi,
A small number of users report this error when trying to download webpages with my application.
The app includes recent versions of OpenSSL in the same folder as the exe.
I thought when loading a dll, the first place an app looks is in the same folder as the exe, so whether there are other copies of the dlls in other places or not, should not affect my application. However it seems that such things can have an effect. (see https://stackoverflow.com/questions/2504...i-xe2-iw14).
Is it possible for me to rename the dlls and then set a custom name for the dlls in Indy?
(Delphi XE4; Indy 5438)
Thanks
Rael
|
|
|
| CGS is not working |
|
Posted by: charl - 05-08-2018, 02:14 PM - Forum: COSMOS
- Replies (1)
|
 |
Hello. I am using the newest userkit of Cosmos and my code compiles but the canvas never shows up on the screen. It stays in text mode. There are no exceptions or anything. I used my own OS and the CGS example code and the issue wasn't resolved.
|
|
|
|