Wed Sep 16, 2015 1:06 pm |
Replies: 4 |
Views: 2647 |
|
|
One last thought on this, I have no other problems with SFTP from filezilla or free SFTP net drive (which I had to install since PHPed sftp feature is not working on my end)
|
Wed Sep 16, 2015 1:03 pm |
Replies: 4 |
Views: 2647 |
|
|
My server side logs simply say
sshd[30636]: Did not receive identification string from <my ip address>
PHPED Settings:
host: my srv ip
port: 50000 <my ssh port if 50000, I set server t ...
|
Mon Sep 14, 2015 5:00 pm |
Replies: 4 |
Views: 2647 |
|
|
I am trying to connect to a CentOs 7 box with PHPED. I cann connect fine through the terminal to this server in PHPED. But when I setup Sftp, it just hangs. Just using for the most part default settin ...
|
Wed Oct 06, 2010 9:11 am |
Replies: 3 |
Views: 3782 |
|
|
I have an ODBC connection setup through Windows Data Sources that is working. Not sure if that helps or not.
When I try to connect in PHPED I get
Sql Server Error [DBNETLIB]ConnectionOpen(Conne ...
|
Wed Oct 06, 2010 8:58 am |
Replies: 3 |
Views: 3782 |
|
|
I am using v5.95 5980eval and trying to establish a DB Client to SQL Server 2008. Docs says it supports SQL server, but not versions. Can I get ODBC working with SQL client? If so, I cannot locate doc ...
|
Fri Feb 19, 2010 9:58 am |
Replies: 0 |
Views: 2698 |
|
|
Is anyone else expierencing this problem. I am testing PHP 5.9 (Build 5933eval) and am running into a problem TRYING to do a find and replace.
First I did a replace and only wanted to replace cert ...
|
Fri Mar 13, 2009 12:49 pm |
Replies: 1 |
Views: 4156 |
|
|
How can I change the default open directory in PHPED? I do not want my files / workspaces to be in the default path the PHPED wants. So everytime I go to create a new project it default to [user dir]\ ...
|
Fri Mar 13, 2009 10:49 am |
Replies: 2 |
Views: 14285 |
|
|
I know that
$res = mysqli::query()
has a "mixed" return of true, false or MySQLi_Result object.
But it would be nice if PHPED let the developer decide how to deal with this an go ah ...
|
Wed May 28, 2008 11:52 am |
Replies: 11 |
Views: 4966 |
|
|
That solution worked, I mad a minor revision to your code. You have to UNSET the public variable when every you SET the protected variable. __SET does not work the second time around because the varia ...
|
Wed May 28, 2008 11:27 am |
Replies: 11 |
Views: 4966 |
|
|
Thanks, I am going to try that. Here is something of what I would like to achieve. Seems like IDE's should have some capability to do this, but none of them do. Basically it allows the "Universal ...
|
Wed May 28, 2008 6:31 am |
Replies: 11 |
Views: 4966 |
|
|
My problem is I am trying to work around some limitations. Some IDE's will allow you to configure object and there accessors through PHPDOC @property. I would like to do this so I do NOT have to get i ...
|
Mon May 26, 2008 4:56 pm |
Replies: 11 |
Views: 4966 |
|
|
Example:
class frank
{
private $dog;
public $animal;
}
$me = new frank();
$me->(the context window will only display animal)
Need to see $dog to.
|