[PHP] While on the topic of PHP Web Site Stats - SharePoint...

2011-09-19 Thread George Langley
Hi all. Had a meeting today where I was rather condescendingly told that most CMS web sites use SharePoint. Last I checked: http://trends.builtwith.com/cms Wordpress, Joomla! and Drupal (PHP, PHP and oh look, PHP) kind of had the CMS market wrapped up, with numerous other systems

Re: [PHP] While on the topic of PHP Web Site Stats - SharePoint...

2011-09-19 Thread Daniel Brown
On Mon, Sep 19, 2011 at 18:22, George Langley george.lang...@shaw.ca wrote:        Hi all. Had a meeting today where I was rather condescendingly told that most CMS web sites use SharePoint. Well, you may reply, equally condescendingly, that you will need that to have cited references, as

[PHP] Re: While on the topic of PHP Web Site Stats - SharePoint...

2011-09-19 Thread Ross McKay
On Mon, 19 Sep 2011 16:22:59 -0600, George Langley wrote: [...] Any stats on (warning - buzzwords ahead) External-facing web sites using SharePoint? [...] Try here: http://w3techs.com/technologies/overview/content_management/all (SharePoint comes in at 0.1% of all websites, 0.3% of all

Re: [PHP] Re: While on the topic of PHP Web Site Stats - SharePoint...

2011-09-19 Thread Tommy Pham
I don't know about external facing and 'most web sites use SharePoint' but SharePoint is mainly used in conjunction with other midsize/enterprise MS applications such as Exchange, SQLServer and other MS products, including SSO integration with Active Directory. I've yet to see it used as

Re: [PHP] web site link request

2011-03-12 Thread Daniel Brown
On Fri, Mar 11, 2011 at 23:00, Kirk Bailey kbai...@howlermonkey.net wrote: May I have suggestions of websites I would do well to visit to improve my php skills? Links please, with a breif description if you would be so good. http://php.net/links --- Overall links

[PHP] web site link request

2011-03-11 Thread Kirk Bailey
May I have suggestions of websites I would do well to visit to improve my php skills? Links please, with a breif description if you would be so good. -- end Very Truly yours, - Kirk Bailey, Largo Florida kniht

Re: [PHP] Web Site Directory Layout

2009-09-27 Thread George Langley
On 26-Sep-09, at 2:38 AM, Ashley Sheridan wrote: I tend to usually go with the following, using what fits with the project: index.php styles/ images/ scripts/ includes/ --- Add files/ for any download-able files. Then for multi-lingual projects, I'll add a

Re: [PHP] Web Site Directory Layout

2009-09-26 Thread Ashley Sheridan
On Fri, 2009-09-25 at 22:26 -0400, Robert Cummings wrote: Caner Bulut wrote: Hi All, Is there a stable or standart directory layout for PHP project (like web sites)?. Example; index.php img/ css/ js/ lib/ doc/ tools/ Thanks. There's no standard. My advice

Re: [PHP] Web Site Directory Layout

2009-09-26 Thread דניאל דנון
There is no standard for that - Its your choice, I usually use something like index.php configuration.php template/ template/NAME/template.html template/NAME/template.css template/NAME/images/ modules/ modules/connection/MySQL.php etc. On Sat, Sep 26, 2009 at 1:50 AM, Caner Bulut

RE: [PHP] Web Site Directory Layout

2009-09-26 Thread Caner Bulut
Thanks for help. Caner. _ From: דניאל דנון [mailto:danondan...@gmail.com] Sent: Saturday, September 26, 2009 2:35 PM To: Caner Bulut Cc: php-general@lists.php.net Subject: Re: [PHP] Web Site Directory Layout There is no standard for that - Its your choice, I usually use

[PHP] Web Site Directory Layout

2009-09-25 Thread Caner Bulut
Hi All, Is there a stable or standart directory layout for PHP project (like web sites)?. Example; index.php img/ css/ js/ lib/ doc/ tools/ Thanks.

Re: [PHP] Web Site Directory Layout

2009-09-25 Thread Phpster
On Sep 25, 2009, at 6:50 PM, Caner Bulut caner...@gmail.com wrote: Hi All, Is there a stable or standart directory layout for PHP project (like web sites)?. Example; index.php img/ css/ js/ lib/ doc/ tools/ Thanks. It depends. Using of the many frameworks will force

RE: [PHP] Web Site Directory Layout

2009-09-25 Thread Caner Bulut
Bulut Cc: php-general@lists.php.net; caner...@gmail.com Subject: Re: [PHP] Web Site Directory Layout On Sep 25, 2009, at 6:50 PM, Caner Bulut caner...@gmail.com wrote: Hi All, Is there a stable or standart directory layout for PHP project (like web sites)?. Example; index.php

Re: [PHP] Web Site Directory Layout

2009-09-25 Thread Jim Lucas
Caner Bulut wrote: Hi All, Is there a stable or standard directory layout for PHP project (like web sites)?. Example; index.php img/ css/ js/ lib/ doc/ tools/ Thanks. Here are a few references that I found with a quick G search

Re: [PHP] Web Site Directory Layout

2009-09-25 Thread Daniel Brown
On Fri, Sep 25, 2009, Caner Bulut caner...@gmail.com wrote: Is there a stable or standart directory layout for PHP project (like web sites)?. The very plain, simple answer is: no. There are similarities between projects, and common, logical reasons for doing them but nothing that

Re: [PHP] Web Site Directory Layout

2009-09-25 Thread Daniel Brown
On Fri, Sep 25, 2009 at 19:30, Caner Bulut caner...@gmail.com wrote: I will be out of office between 18th - 28th of June. That's fantastic. Have a nice ten-day vacation nine months from now. Thanks for letting us know so far in advance! ;-P -- /Daniel P. Brown daniel.br...@parasane.net

Re: [PHP] Web Site Directory Layout

2009-09-25 Thread Robert Cummings
Caner Bulut wrote: Hi All, Is there a stable or standart directory layout for PHP project (like web sites)?. Example; index.php img/ css/ js/ lib/ doc/ tools/ Thanks. There's no standard. My advice is to use easily identifiable names. The above are quite obbvious. My own preference

[PHP] Web Site Security Hole

2005-04-07 Thread Don
Hi, I'm developing a small web site that does a bit of e-commerce (that is, it creates security keys and such). I've been very careful to keep all constants used in calculations in a local directory above docroot, but all of my main .php pages are in (or under) docroot (my host won't allow

Re: [PHP] Web Site Security Hole

2005-04-07 Thread Duncan Hill
On Thursday 07 April 2005 14:55, Don typed: I was feeling pretty secure until a friend reminded me you can download complete sites by importing them with such tools as FrontPage and Dreamweaver. That way, the protection provided by the PHP server is non-existant. This is only possible in

Re: [PHP] Web Site Security Hole

2005-04-07 Thread Brent Baisley
If properly designed, it shouldn't really matter if someone sees your code. Everyone can see the source code for Linux and lots of other systems you may be using (MySQL, PHP, etc.), but they are considered fairly secure. Knowing your methodology will only help someone in finding security holes

RE: [PHP] web site security: how to hide login info for mysql-connection

2003-07-07 Thread Graham Rule
On Mon, 30 Jun 2003, Peter Janett wrote: This issue seems to be a huge issue, and I've been looking for a good solution for quite a long time. My concern is that a shell emulating PHP or Perl script run as Apache can read or copy ANY PHP script used with PHP as an Apache module. The reason I

RE: [PHP] web site security: how to hide login info for mysql-connection

2003-07-07 Thread Wendell Brown
On Mon, 7 Jul 2003 21:01:40 +0100 (BST), Graham Rule wrote: The only place that they are available is to PHP scripts run in the relevant directory. Which means that if a hacker finds a cross script hack in one of those directories (ie, if you have a security hole in one of your php scripts),

RE: [PHP] web site security: how to hide login info for mysql-connection

2003-07-01 Thread Mark
That's where this thread started... --- Wendell Brown [EMAIL PROTECTED] wrote: On Mon, 30 Jun 2003 13:50:21 -0600, Peter Janett wrote: My concern is that a shell emulating PHP or Perl script run as Apache can read or copy ANY PHP script used with PHP as an Apache module. It seems to me

RE: [PHP] web site security: how to hide login info for mysql-connection

2003-07-01 Thread Peter Janett
] (303)828-9882 -Original Message- From: Derick Rethans [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2003 2:59 PM To: Wendell Brown Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP] web site security: how to hide login info for mysql-connection On Mon, 30 Jun 2003, Wendell

Re: [PHP] web site security: how to hide login info for mysql-connection

2003-06-30 Thread Mark
PROTECTED] Sent: Sunday, June 29, 2003 4:33 PM Subject: Re: [PHP] web site security: how to hide login info for mysql-connection Be aware that wherever you store the settings folder, your php.ini should have that path in it's include_directories setting, and the webserver must

RE: [PHP] web site security: how to hide login info for mysql-connection

2003-06-30 Thread Peter Janett
Ganswijk; [EMAIL PROTECTED] Subject: Re: [PHP] web site security: how to hide login info for mysql-connection How do you handle storing the login info then? Do you encrypt the file and decrypt it on the fly? Where would you store the key? I'm in the process of setting up a new application

RE: [PHP] web site security: how to hide login info for mysql-connection

2003-06-30 Thread Wendell Brown
On Mon, 30 Jun 2003 13:50:21 -0600, Peter Janett wrote: Directory /var/www/html/mydatabase php_value mysql.default_user fred php_value mysql.default_password secret php_value mysql.default_host server.example.com /Directory H what about phpinfo()? It shows those settings in the

RE: [PHP] web site security: how to hide login info for mysql-connection

2003-06-30 Thread Mike Migurski
Directory /var/www/html/mydatabase php_value mysql.default_user fred php_value mysql.default_password secret php_value mysql.default_host server.example.com /Directory H what about phpinfo()? It shows those settings in the clear. solution: don't leave stray phpinfo's on a

RE: [PHP] web site security: how to hide login info for mysql-connection

2003-06-30 Thread Derick Rethans
On Mon, 30 Jun 2003, Wendell Brown wrote: On Mon, 30 Jun 2003 13:50:21 -0600, Peter Janett wrote: Directory /var/www/html/mydatabase php_value mysql.default_user fred php_value mysql.default_password secret php_value mysql.default_host server.example.com /Directory H

RE: [PHP] web site security: how to hide login info for mysql-connection

2003-06-30 Thread Wendell Brown
On Mon, 30 Jun 2003 13:50:21 -0600, Peter Janett wrote: My concern is that a shell emulating PHP or Perl script run as Apache can read or copy ANY PHP script used with PHP as an Apache module. It seems to me like the safest way to handle this would be to create a function that opens the database

[PHP] web site security: how to hide login info for mysql-connection

2003-06-29 Thread anders thoresson
Hi, At the moment I store username, password and database for my MySQL connections in a file called settings.php to avoid putting them in my php files direct. On a Linux server, what extra steps can I take to prevent others from accessing settings.php? Somewhere, I've read that settings.php

Re: [PHP] web site security: how to hide login info formysql-connection

2003-06-29 Thread Mike Morton
Anders: Somewhere, I've read that settings.php should be placed in a directory outside the html/php-directories. Today, my web directory is /home/anders/public_html and subdirectories to public_html. Should settings.php be placed in /home/anders/include? That is correct - you are always best

Re: [PHP] web site security: how to hide login info for mysql-connection

2003-06-29 Thread anders thoresson
Be aware that wherever you store the settings folder, your php.ini should have that path in it's include_directories setting, and the webserver must have read permissions for that file. I don't have access to php.ini on my ISP's web server. Is there a way for a user to make their own set ow

Re: [PHP] web site security: how to hide login info for mysql-connection

2003-06-29 Thread Avvio - Frank
).:. /your/path/here/); then include/require as normal -- frank - Original Message - From: anders thoresson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, June 29, 2003 4:33 PM Subject: Re: [PHP] web site security: how to hide login info for mysql-connection Be aware that wherever you

Re: [PHP] web site security: how to hide login info for mysql-connection

2003-06-29 Thread Jaap van Ganswijk
these files have to be readable by Apache and therefore other users on the system can often also read them. Greetings, Jaap - Original Message - From: anders thoresson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, June 29, 2003 4:33 PM Subject: Re: [PHP] web site security: how to hide

[PHP] Web site analysys

2002-09-22 Thread Rosen
Hi, Can someone tell me where I can find a PHP script for tracking visitors on WEB site ( IP, Refferer, e.t.c ) (Like http://extremetracking.com ) Thanks, Rosen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP Web site down?

2002-08-21 Thread Adam Williams
Is it just me having network connectivity problems, or is the PHP website, http://www.php.net down? I tried connecting to it from a couple of difference computers and I can't access it on any of them. Just wondering if anyone else is having problems getting to their website too.

Re: [PHP] PHP Web site down?

2002-08-21 Thread DL Neil
Is it just me having network connectivity problems, or is the PHP website, http://www.php.net down? I tried connecting to it from a couple of difference computers and I can't access it on any of them. Just wondering if anyone else is having problems getting to their website too. Adam, It

Re: [PHP] PHP Web site down?

2002-08-21 Thread Adam Williams
Thanks! Silly me, I'm always forgetting about the mirror sites ;) Adam On Wed, 21 Aug 2002, DL Neil wrote: Is it just me having network connectivity problems, or is the PHP website, http://www.php.net down? I tried connecting to it from a couple of difference

Re: [PHP] PHP Web site down?

2002-08-21 Thread Kondwani Spike Mkandawire
It seemed to be down... Earlier in the morning I had trouble getting onto it... Its alright now though, it may have been traffic or some minor stuff... Spike... Adam Williams [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Thanks! Silly me, I'm always

Re: [PHP] PHP Web site down?

2002-08-21 Thread DL Neil
General advice: take a look in the bottom right corner of any manual page and call for the mirrors list - it's worth bookmarking/favoriting a couple, just in case one goes down. Also FYI, mirror sites are often faster (depending upon relative locations) and their use certainly frees bandwidth at

[PHP] Re: PHP Web site down?

2002-08-21 Thread Sami Mahamed
it seems to be just your network, me and a couple of friends on differnt networks were just talking about that place :) works fine for us! -Sami Adam Williams [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Is it just me having network connectivity problems, or

[PHP] Web Site

2002-08-21 Thread Peter Goggin
I am setting up a web site which will be hosted on my own equipmet at home, located in Melbourne, Australia I would like some general advice on two questions. 1. What sort of permanent interconnect should I look at (Cable is not available in my area). Is DSL suitable? Are there any good

RE: [PHP] Web Site

2002-08-21 Thread Roger Lewis
On Wednesday, August 21, 2002 6:41 PM Peter Goggin wrote 2. I need to set up credit card payments. Has anyone any experience with PayPal? Are there any other providers I should consider. Nothing but good to say about PayPal Roger -- PHP General Mailing List

Re: [PHP] Web Site

2002-08-21 Thread Bogdan Stancescu
Just for the record, I'm sure you can Google out quite a few nasty comments on PayPal - I remember reading some along the lines of dear all, I know it was much easier for you to send money via PayPal, I know that giving up on using it will considerably decrease my income, but after my [...]

Re: [PHP] Web Site

2002-08-21 Thread Justin French
on 22/08/02 11:41 AM, Peter Goggin ([EMAIL PROTECTED]) wrote: I am setting up a web site which will be hosted on my own equipmet at home, located in Melbourne, Australia I would like some general advice on two questions. 1. What sort of permanent interconnect should I look at (Cable is

Re: [PHP] Web Site

2002-08-21 Thread Jason Wong
On Thursday 22 August 2002 10:42, Bogdan Stancescu wrote: Just for the record, I'm sure you can Google out quite a few nasty comments on PayPal - I remember reading some along the lines of dear all, I know it was much easier for you to send money via PayPal, I know that giving up on using it

Re: [PHP] Web Site

2002-08-21 Thread Jason Wong
On Thursday 22 August 2002 10:44, Justin French wrote: on 22/08/02 11:41 AM, Peter Goggin ([EMAIL PROTECTED]) wrote: I am setting up a web site which will be hosted on my own equipmet at home, located in Melbourne, Australia I would like some general advice on two questions. 1. What

Re: [PHP] Web Site

2002-08-21 Thread Justin French
on 22/08/02 1:18 PM, Jason Wong ([EMAIL PROTECTED]) wrote: DSL is a cheap option, although you have limited bandwidth and file transfers. It would be a good first step. Do they give you a permanent IP address? If not, you're going to have to subscribe to some dynamic IP service so people

[PHP] Web site counter

2001-08-01 Thread Kyle Smith
Is it possible to make a website counter with a PHP script and a text document? If so can somebody email me a script (unlikely) or send me to a page with a script (yay) -lk6- http://www.StupeedStudios.f2s.com Home of the burning lego man! ICQ: 115852509 MSN: [EMAIL PROTECTED] AIM:

Re: [PHP] Web site counter

2001-08-01 Thread Werner Stuerenburg
It is easy, but you need to have write privileges on that file (or rather httpd needs that) - so you may include a test that this file only holds a number as a minimal protection. $filename = $GLOBALS[DOCUMENT_ROOT]/your_counter.txt; $fp = fopen($filename,a+); $cnt = fread( $fp,

Re: [PHP] Web site counter

2001-08-01 Thread B. van Ouwerkerk
Is it possible to make a website counter with a PHP script and a text document? If so can somebody email me a script (unlikely) or send me to a page with a script (yay) freshmeat.net and sourceforge.net are great sources for scripts.. Be carefull not to use anything you see.. check the code

[PHP] Web Site Alert: Not Responding

2001-07-22 Thread mike . dever
There appears to be a problem in reaching your Web site at http://www.e-gineer.com/articles/php-hackers-paradise-revisited.phtml. Time of Error: 2001-07-22 18:27:57 Error Type: Time Out InternetSeer, a Web site monitoring company, is conducting an ongoing study of the true connectivity

[PHP] parse error in PHP Manual in php web site...

2001-06-29 Thread Romulo Roberto Pereira
Parse error: parse error in /local/Web/sites/phpweb/include/shared-manual.inc on line 265 Fatal error: Call to undefined function: sendmanualheaders() in /local/Web/sites/phpweb/manual/en/getting-started.php on line 3 HELPPP!! :) Rom -- PHP General Mailing List (http://www.php.net/)