Re: [PHP] Detect and Redirect Mobile Users

2013-06-14 Thread Marc Guay
curious of a simple, common, universal way to detect a mobile user so I can redirect them to a mobile directory... What is best for this: Javascript - CSS - PHP? I think for my purposes if I can detect screen size or mobile browser agent - that would be good enough for what I need right now

[PHP] LightBox click detection

2013-06-14 Thread Tedd Sperling
would like to have a php/javascript combination that would: 1. Detect when a user clicked the LightBox; 2. Pass that value to PHP so I can keep count. Any ideas? Cheers, tedd _ t...@sperling.com http://sperling.com -- PHP General Mailing List (http://www.php.net

Re: [PHP] LightBox click detection

2013-06-14 Thread Marc Guay
the problem -- I need to count the number of times a user activates a LightBox -- how do you do that? Here's a LightBox Example: http://www.webbytedd.com/c2/lightbox/ All the javascript is there (jQuery et al). Ideally, I would like to have a php/javascript combination that would: 1. Detect

Re: [PHP] LightBox click detection

2013-06-14 Thread Marc Guay
the number of times a user activates a LightBox -- how do you do that? Here's a LightBox Example: http://www.webbytedd.com/c2/lightbox/ All the javascript is there (jQuery et al). Ideally, I would like to have a php/javascript combination that would: 1. Detect when a user clicked

RE: [PHP] Detect and Redirect Mobile Users

2013-06-14 Thread Ford, Mike
-Original Message- From: Dead Letter.Office [mailto:dead.letter.off...@isam.co.nz] Sent: 14 June 2013 05:22 To: php-general@lists.php.net http://php.net/manual/en/misc.configuration.php#ini.browscap http://tempdownloads.browserscap.com/ $browser = get_browser(null, TRUE

php-general Digest 13 Jun 2013 06:51:23 -0000 Issue 8264

2013-06-13 Thread php-general-digest-help
php-general Digest 13 Jun 2013 06:51:23 - Issue 8264 Topics (messages 321373 through 321377): Re: debugging remote PHP code in eclipse 321373 by: Jason P. ZF developers in Spain 321374 by: Jason P. Detect and Redirect Mobile Users 321375 by: dealTek 321376

php-general Digest 14 Jun 2013 04:22:06 -0000 Issue 8265

2013-06-13 Thread php-general-digest-help
php-general Digest 14 Jun 2013 04:22:06 - Issue 8265 Topics (messages 321378 through 321400): Enabling the chroot() function in PHP 5.4 321378 by: Aaron Stephens 321393 by: Matijn Woudt PHP is Zero 321379 by: BUSCHKE Daniel 321380 by: georg 321381

Re: [PHP] Detect and Redirect Mobile Users

2013-06-13 Thread Tihanyi Péter
Hi, It might be a good solution for your problem: http://detectmobilebrowsers.com/ You can find php, js, apache, etc scripts for your problem. Regards, Peter Tihanyi http://systream.hu 2013.06.13. 1:19 keltezéssel, dealTek írta: Hi all, I'm curious of a simple, common

[PHP] Enabling the chroot() function in PHP 5.4

2013-06-13 Thread Aaron Stephens
Hi All, Does anybody know how to enable the chroot() function in PHP 5.4? It was easy in PHP 5.3 as long as you were building the CLI by itself. In the PHP 5.4 configure script there is a new PHP_BINARIES variable being used instead of setting PHP_SAPI=cli and thus the #define

[PHP] PHP is Zero

2013-06-13 Thread BUSCHKE Daniel
Hi all, I want to start a discussion about a PHP behaviour that drives me crazy for years. For the beginning I would like you to guess what the result of the following snippet will be: var_dump('PHP' == 0); I know the difference of == and === but the result was unexcpected for me. And I hope

Re: [PHP] PHP is Zero

2013-06-13 Thread georg
of == which is the equivalence test, and see; the variable is the same since it was just assigned that value; if this theory is correct you would get TRUE regardless what number is following :) /g - Original Message - From: BUSCHKE Daniel daniel.busc...@nextiraone.eu To: php-general

AW: [PHP] PHP is Zero

2013-06-13 Thread BUSCHKE Daniel
Hi, I used 2 x =. Using 3 x = would not result in that behaviour because string is not equal to number. I am fine === here. I explicitly talk about the 2 x = variant. BTW: # php -r 'var_dump(PHP == 0);' bool(true) # php -r 'var_dump(PHP == 1);' bool(false) regards Daniel -Ursprüngliche

Re: [PHP] PHP is Zero

2013-06-13 Thread Pete Ford
On 13/06/13 08:59, BUSCHKE Daniel wrote: Hi all, I want to start a discussion about a PHP behaviour that drives me crazy for years. For the beginning I would like you to guess what the result of the following snippet will be: var_dump('PHP' == 0); I know the difference

AW: [PHP] PHP is Zero

2013-06-13 Thread BUSCHKE Daniel
the conversion falls back to INF. To handle really big integers like 8315e839da08e2a7afe6dd12ec58245d you probably need a more specialist library (or language) For me it is not. PHP throws things away during conversion. In my opinion a language (compiler, interpreter whatever) should not do

Re: AW: [PHP] PHP is Zero

2013-06-13 Thread richard gray
are used and if anything else is found the conversion falls back to INF. To handle really big integers like 8315e839da08e2a7afe6dd12ec58245d you probably need a more specialist library (or language) For me it is not. PHP throws things away during conversion. In my opinion a language (compiler

Re: AW: [PHP] PHP is Zero

2013-06-13 Thread Pete Ford
and if anything else is found the conversion falls back to INF. To handle really big integers like 8315e839da08e2a7afe6dd12ec58245d you probably need a more specialist library (or language) For me it is not. PHP throws things away during conversion. In my opinion a language (compiler

AW: AW: [PHP] PHP is Zero

2013-06-13 Thread BUSCHKE Daniel
Hi, It gives up when it finds a non-numeric character (as the documentation would tell you) Why is PHP doing that? I know it works as designed and I know it is documented like this but that does not mean that it is a good feature, does it? So lets talk about the question: Is that behaviour

AW: AW: [PHP] PHP is Zero

2013-06-13 Thread BUSCHKE Daniel
To be more technical: If intval('8315e839da08e2a7afe6dd12ec58245d') would return NULL instead of 8315 then PHP would be still weak-typed and the developer could know that the conversion failed. Good idea? Of course NULL should be transparent in operations like +. So 0 + NULL should be still 0

Re: AW: [PHP] PHP is Zero

2013-06-13 Thread Samuel Lopes Grigolato
daniel.busc...@nextiraone.eu wrote: To be more technical: If intval('8315e839da08e2a7afe6dd12ec58245d') would return NULL instead of 8315 then PHP would be still weak-typed and the developer could know that the conversion failed. Good idea? Of course NULL should be transparent in operations

Re: [PHP] PHP is Zero

2013-06-13 Thread Stuart Dallas
On 13 Jun 2013, at 12:27, BUSCHKE Daniel daniel.busc...@nextiraone.eu wrote: Hi, It gives up when it finds a non-numeric character (as the documentation would tell you) Why is PHP doing that? I know it works as designed and I know it is documented like this but that does not mean

Re: [PHP] PHP is Zero

2013-06-13 Thread Samuel Lopes Grigolato
Just found out that MySQL uses the same implicit conversion precedence on SQL clauses. That shows me that possibly exists some higher order rule that states this consistency, and changing that is outside the scope of PHP. On Thu, Jun 13, 2013 at 9:20 AM, Stuart Dallas stu...@3ft9.com wrote

Re: [PHP] Detect and Redirect Mobile Users

2013-06-13 Thread raphael khaiat
Hi, On Thu, Jun 13, 2013 at 1:19 AM, dealTek deal...@gmail.com wrote: Hi all, I'm curious of a simple, common, universal way to detect a mobile user so I can redirect them to a mobile directory... What is best for this: Javascript - CSS - PHP? I think for my purposes if I can detect

[PHP] Re: AW: AW: PHP is Zero

2013-06-13 Thread Alessandro Pellizzari
Il Thu, 13 Jun 2013 13:27:51 +0200, BUSCHKE Daniel ha scritto: Why is PHP doing that? Because a decision had to be made, and they chose to do it that way. I know it works as designed and I know it is documented like this but that does not mean that it is a good feature, does

Re: [PHP] Enabling the chroot() function in PHP 5.4

2013-06-13 Thread Matijn Woudt
Hi Aaron, It's better if you ask this question on the PHP internals list, there's hardly anyone compiling it's own PHP here. - Matijn On Thu, Jun 13, 2013 at 9:55 AM, Aaron Stephens aaron.t.steph...@gmail.comwrote: Hi All, Does anybody know how to enable the chroot() function in PHP

Re: [PHP] Detect and Redirect Mobile Users

2013-06-13 Thread Matijn Woudt
for this: Javascript - CSS - PHP? I think for my purposes if I can detect screen size or mobile browser agent - that would be good enough for what I need right now. This is not really a PHP question. I understand your asking it, though. Does anyone know of a better list or whatever for generic web

Re: [PHP] Detect and Redirect Mobile Users

2013-06-13 Thread Matijn Woudt
so I can redirect them to a mobile directory... What is best for this: Javascript - CSS - PHP? I think for my purposes if I can detect screen size or mobile browser agent - that would be good enough for what I need right now. This is not really a PHP question. I understand your asking

Re: [PHP] Detect and Redirect Mobile Users

2013-06-13 Thread Camille Hodoul
Hello, I stumbled upon this the other day : http://mobiledetect.net/ I haven't tried it yet, since I have my own small user agent parser when I need it, but it may help you if it's a pure php solution you're looking for. Have a nice day 2013/6/13 dealTek deal...@gmail.com Hi all, I'm

Re: AW: [PHP] PHP is Zero

2013-06-13 Thread Matijn Woudt
On Thu, Jun 13, 2013 at 1:49 PM, BUSCHKE Daniel daniel.busc...@nextiraone.eu wrote: To be more technical: If intval('8315e839da08e2a7afe6dd12ec58245d') would return NULL instead of 8315 then PHP would be still weak-typed and the developer could know that the conversion failed. Good idea

[PHP] What is the name of the pattern that will ...

2013-06-13 Thread Richard Quadling
the public scope. 2 - The response is by ref, but I think having a AuthResponse class containing $i_State and $s_Message should be enough there, but no way to enforce return types in PHP. Any ideas? Thank you. -- Richard Quadling Twitter : @RQuadling EE : http://e-e.com/M_248814.html Zend : http

Re: [PHP] What is the name of the pattern that will ...

2013-06-13 Thread David Harkness
. While you cannot enforce the return type at parse time, they should be verified with unit tests. Unit tests are critical with dynamic languages like PHP and Python since runtime is the only way to verify behavior. Otherwise, your example is spot on, though the name AuthRequestMade implies

Re: [PHP] Detect and Redirect Mobile Users

2013-06-13 Thread Dead Letter.Office
http://php.net/manual/en/misc.configuration.php#ini.browscap http://tempdownloads.browserscap.com/ $browser = get_browser(null, TRUE); if (isset($browser['ismobiledevice']) ($browser['ismobiledevice'] == TRUE)) { $isMobile = TRUE; } else { $isMobile = FALSE; } unset($browser); -- PHP

php-general Digest 12 Jun 2013 16:02:03 -0000 Issue 8263

2013-06-12 Thread php-general-digest-help
php-general Digest 12 Jun 2013 16:02:03 - Issue 8263 Topics (messages 321369 through 321372): Re: htaccess to make html act as php suffixed files 321369 by: Stuart Dallas 321370 by: Matijn Woudt 321371 by: Rodrigo Silva dos Santos debugging remote PHP code

[PHP] debugging remote PHP code in eclipse

2013-06-12 Thread Rafnews
Hi everybody, I have big trouble to correctly configure Eclipse/Xdebug to remotely debug a PHP website. When web server is local i have no problem, it works like a charm...but in case webserver is not local, that's a real nightmare. till now everything what i found on internet was about

[PHP] Re: debugging remote PHP code in eclipse

2013-06-12 Thread Jason P.
to your /etc/php5/apache2/php.ini and add the zend_extension for xdebug and its configuration. This is the post I've been following: http://www.cleancode.co.nz/blog/724/remote-php-debugging-eclipse-php-xdebug It's possible (I don't know it for sure) that you may have to activate in Eclipse

[PHP] ZF developers in Spain

2013-06-12 Thread Jason P.
;) Thanks. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Detect and Redirect Mobile Users

2013-06-12 Thread dealTek
Hi all, I'm curious of a simple, common, universal way to detect a mobile user so I can redirect them to a mobile directory... What is best for this: Javascript - CSS - PHP? I think for my purposes if I can detect screen size or mobile browser agent - that would be good enough for what I need

Re: [PHP] Detect and Redirect Mobile Users

2013-06-12 Thread Paul M Foster
On Wed, Jun 12, 2013 at 04:19:50PM -0700, dealTek wrote: Hi all, I'm curious of a simple, common, universal way to detect a mobile user so I can redirect them to a mobile directory... What is best for this: Javascript - CSS - PHP? I think for my purposes if I can detect screen size

php-general Digest 11 Jun 2013 17:16:09 -0000 Issue 8262

2013-06-11 Thread php-general-digest-help
php-general Digest 11 Jun 2013 17:16:09 - Issue 8262 Topics (messages 321360 through 321368): Re: Using Table prefixes 321360 by: Julian Wanke 321361 by: Tedd Sperling 321362 by: Julian Wanke 321367 by: Tamara Temple basic authentication usage 321363

[PHP] htaccess to make html act as php suffixed files

2013-06-11 Thread Tedd Sperling
Hi gang: To get html pages to use php scripts, I've used: RewriteEngine on # handler for phpsuexec. -- this makes these prefixes considered for php FilesMatch \.(htm|html)$ SetHandler application/x-httpd-php /FilesMatch In a .htaccess file. However, it works on one site, but not on another

Re: [PHP] htaccess to make html act as php suffixed files

2013-06-11 Thread Stuart Dallas
On 11 Jun 2013, at 18:16, Tedd Sperling t...@sperling.com wrote: Hi gang: To get html pages to use php scripts, I've used: RewriteEngine on # handler for phpsuexec. -- this makes these prefixes considered for php FilesMatch \.(htm|html)$ SetHandler application/x-httpd-php /FilesMatch

Re: [PHP] htaccess to make html act as php suffixed files

2013-06-11 Thread Matijn Woudt
On Tue, Jun 11, 2013 at 7:17 PM, Stuart Dallas stu...@3ft9.com wrote: On 11 Jun 2013, at 18:16, Tedd Sperling t...@sperling.com wrote: Hi gang: To get html pages to use php scripts, I've used: RewriteEngine on # handler for phpsuexec. -- this makes these prefixes considered for php

Re: [PHP] htaccess to make html act as php suffixed files

2013-06-11 Thread Rodrigo Silva dos Santos
Em Ter 11 Jun 2013 15:08:59 BRT, Matijn Woudt escreveu: On Tue, Jun 11, 2013 at 7:17 PM, Stuart Dallas stu...@3ft9.com wrote: On 11 Jun 2013, at 18:16, Tedd Sperling t...@sperling.com wrote: Hi gang: To get html pages to use php scripts, I've used: RewriteEngine on # handler for phpsuexec

Re: [PHP] Using Table prefixes

2013-06-10 Thread Tedd Sperling
. At least, that's been my experience -- YMMV. Cheers, tedd _ tedd.sperl...@gmail.com http://sperling.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Using Table prefixes

2013-06-10 Thread Julian Wanke
. My advise -- raise your rates until you narrow those clients down to a manageable size. Both you and your clients will be happier. At least, that's been my experience -- YMMV. Cheers, tedd _ tedd.sperl...@gmail.com http://sperling.com -- PHP General Mailing List (http

Re: [PHP] Using Table prefixes

2013-06-10 Thread Tedd Sperling
down to a manageable size. Both you and your clients will be happier. At least, that's been my experience -- YMMV. Cheers, tedd _ tedd.sperl...@gmail.com http://sperling.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Using Table prefixes

2013-06-10 Thread Julian Wanke
and your clients will be happier. At least, that's been my experience -- YMMV. Cheers, tedd _ tedd.sperl...@gmail.com http://sperling.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List

[PHP] basic authentication usage

2013-06-10 Thread Jim Giner
to re-enter the credentials. What am I missing (besides it's a lousy security solution)? Can one NOT unset a SERVER variable? How does one get around that in this case if so? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] basic authentication usage

2013-06-10 Thread Julian Wanke
that in this case if so? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] basic authentication usage

2013-06-10 Thread Jim Giner
using forms normally but the Authentification cannot be reset so easily... No - I think you misunderstood. I am NOT using directory protection, hence my attempt at using this method. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] basic authentication usage

2013-06-10 Thread Julian Wanke
be wrong because I'm using forms normally but the Authentification cannot be reset so easily... No - I think you misunderstood. I am NOT using directory protection, hence my attempt at using this method. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Using Table prefixes

2013-06-10 Thread Tamara Temple
to the data team which is very unrealistic. I think, again, that people have *very* different concepts of what the term 'client' means. I would never call Facebook's billion accounts clients - they are users. And, seriously, I think taking a concept to absurd lengths is just that, absurd. -- PHP

[PHP] Using Table prefixes

2013-06-08 Thread dealTek
Hi all, I can see the basic need for a table prefix in a case where you may use one mysql database for several projects at once so as to distinguish tables per project like... Project 1 mysales_contacts mysales_invoices etc and jobs_contacts jobs_invoices however I was told a long time

Re: [PHP] Using Table prefixes

2013-06-08 Thread Ashley Sheridan
it sensibly as in your first example. Thanks, Ash -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Using Table prefixes

2013-06-08 Thread Tedd Sperling
, tedd _ tedd.sperl...@gmail.com http://sperling.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Using Table prefixes

2013-06-08 Thread Julian Wanke
the tables in them are related to the client and not each other, such as: client1_db contacts invoices etc and client2_db contacts invoices etc As such, the tbl_ prefix is not needed. Cheers, tedd _ tedd.sperl...@gmail.com http://sperling.com -- PHP General Mailing

Re: [PHP] Using Table prefixes

2013-06-08 Thread Tamara Temple
and client2_db contacts invoices etc As such, the tbl_ prefix is not needed. Cheers, tedd _ tedd.sperl...@gmail.com http://sperling.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php In a multi-client

Re: [PHP] Using Table prefixes

2013-06-08 Thread Tamara Temple
etc and client2_db contacts invoices etc As such, the tbl_ prefix is not needed. Cheers, tedd _ tedd.sperl...@gmail.com http://sperling.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] Using Table prefixes

2013-06-08 Thread Bastien
is one DB per application install -- 'client' can be a way-overloaded term. Some projects or apps require one db per client. But it does become a pain to manage. Bastien -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Using Table prefixes

2013-06-08 Thread Bastien
other, such as: client1_db contacts invoices etc and client2_db contacts invoices etc As such, the tbl_ prefix is not needed. Cheers, tedd _ tedd.sperl...@gmail.com http://sperling.com -- PHP General Mailing List (http://www.php.net

Re: [PHP] Fwd: Wanted : Solid/documented/tests Nested Set Model class for mySQL.

2013-06-06 Thread shiplu
If you find one that you are going to use, dont forget to share it here. I'll need this on a certain phase of my current project. -- Shiplu.Mokadd.im ImgSign.com | A dynamic signature machine Innovation distinguishes between follower and leader

[PHP] PHP 5.4.16 and PHP 5.3.26 released!

2013-06-06 Thread Stas Malyshev
Hello! The PHP development team announces the immediate availability of PHP 5.4.16 and PHP 5.3.26. These releases fix about 15 bugs, including CVE-2013-2110. All users of PHP are encouraged to upgrade to PHP 5.4.16. PHP 5.3.26 is recommended for those wishing to remain on the 5.3 series

[PHP] Re: [PHP-DEV] PHP 5.4.16 and PHP 5.3.26 released!

2013-06-06 Thread Pierre Schmitz
Am 07.06.2013 01:58, schrieb Stas Malyshev: Hello! The PHP development team announces the immediate availability of PHP 5.4.16 and PHP 5.3.26. These releases fix about 15 bugs, including CVE-2013-2110. All users of PHP are encouraged to upgrade to PHP 5.4.16. PHP 5.3.26 is recommended

php-general Digest 4 Jun 2013 08:58:15 -0000 Issue 8258

2013-06-04 Thread php-general-digest-help
php-general Digest 4 Jun 2013 08:58:15 - Issue 8258 Topics (messages 321341 through 321344): Re: Seemingly incorrect strict standard. 321341 by: Matijn Woudt 321342 by: Richard Quadling 321343 by: shiplu 321344 by: Richard Quadling Administrivia

Re: [PHP] Seemingly incorrect strict standard.

2013-06-04 Thread Richard Quadling
On 3 June 2013 20:37, shiplu shiplu@gmail.com wrote: Show a short reproducible code. Short-ish ... ?php abstract class baseClass { static public function generateLocalisedContent($s_Stuff){ throw new Exception('Must implement static public function ' . get_called_class

Re: [PHP] Seemingly incorrect strict standard.

2013-06-04 Thread Richard Quadling
On 4 June 2013 09:57, Richard Quadling rquadl...@gmail.com wrote: On 3 June 2013 20:37, shiplu shiplu@gmail.com wrote: Show a short reproducible code. And I can now see an interface is a much simpler mechanism! ?php interface baseInterface { static public function

Re: [PHP] Seemingly incorrect strict standard.

2013-06-03 Thread Matijn Woudt
. Static function should not be abstract. It doesn't SEEM right to inhibit this. Am I missing something? I'm on PHP 5.4.15 (Mac and Centos). Hi Richard, This change is done on purpose. From the PHP manual: Dropped abstract static class functions. Due to an oversight, PHP 5.0.x and 5.1.x allowed

Re: [PHP] Seemingly incorrect strict standard.

2013-06-03 Thread Richard Quadling
this. Am I missing something? I'm on PHP 5.4.15 (Mac and Centos). Hi Richard, This change is done on purpose. From the PHP manual: Dropped abstract static class functions. Due to an oversight, PHP 5.0.x and 5.1.x allowed abstract static functions in classes. As of PHP 5.2.x, only interfaces

Re: [PHP] Seemingly incorrect strict standard.

2013-06-03 Thread shiplu
Show a short reproducible code.

php-general Digest 2 Jun 2013 13:12:02 -0000 Issue 8256

2013-06-02 Thread php-general-digest-help
php-general Digest 2 Jun 2013 13:12:02 - Issue 8256 Topics (messages 321310 through 321328): Re: REQUEST 321310 by: Last Hacker Always onpoint 321326 by: musicdev php links doest work when im using mod rewrite 321311 by: Farzan Dalaee 321313 by: Julian Wanke

[PHP] browser rendering

2013-06-02 Thread georg
strange from smaller (Opera) and much bigger (Explorer) brower !!! any hints for mitigation ? br georg -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] browser rendering

2013-06-02 Thread Stephen
!!! so the looks of the pages get very strange from smaller (Opera) and much bigger (Explorer) brower !!! img src=smiley.gif alt=Smiley face height=42 width=42 The img tag supports specifying the height and width. -- Stephen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] URL Rewriting

2013-06-02 Thread Daniel Brown
? Not entirely sure what you're asking here, or how you (or the nginx folks) expect it to relate to PHP. Do you mean that you want to use PHP to have theme2.php act as if it was called as theme.php?id=2 ? I have me write a blog, but my blog has link like blogdetail.html?id=1 or =2 through 16 at moment

Re: [PHP] browser rendering

2013-06-02 Thread Daniel Pöllmann
having gotten a nice result jon fireforx, I realize picture sizes gets treated very differntly on different browsers !!! so the looks of the pages get very strange from smaller (Opera) and much bigger (Explorer) brower !!! any hints for mitigation ? br georg -- PHP General Mailing List

Re: [PHP] browser rendering

2013-06-02 Thread Ashley Sheridan
realize picture sizes gets treated very differntly on different browsers !!! so the looks of the pages get very strange from smaller (Opera) and much bigger (Explorer) brower !!! any hints for mitigation ? br georg -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] sorry for the blast from the past

2013-06-02 Thread Daniel Brown
On Sat, Jun 1, 2013 at 9:02 PM, Tamara Temple tamouse.li...@gmail.com wrote: Sorry for replying to a message from 2011 -- for some reason I had a whole bunch of PHP messages suddenly show up in my inbox from the past. I generally don't check the year of an unread message in my inbox, as I

Re: [PHP] browser rendering

2013-06-02 Thread Matijn Woudt
On Sun, Jun 2, 2013 at 3:09 PM, georg georg.chamb...@telia.com wrote: Possibly this issue is for other fora, which you might direct me, anyways; I have been dablling making my own little webpages, however having gotten a nice result jon fireforx, I realize picture sizes gets treated very

Re: [PHP] Re: How to enable cURL php extension on Debian Wheezy?

2013-06-02 Thread Tamara Temple
to Hungarian language for installation, I get it again. I am completely unfamiliar with Moodle, have no idea what it is or how it works with I18n stuff. But, if it works in one language and not the other, the problem probably isn't with curl, or necessarily with the php configuration, either

Re: [PHP] URL Rewriting

2013-06-02 Thread Tamara Temple
Daniel Brown danbr...@php.net wrote: Studying archaeology now, Tam? ;-P Always been a huge fan. :) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] browser rendering

2013-06-02 Thread Tamara Temple
seem to be abating, either, while IE10 comes more in line, Opera and now Chrome are branching out, and we still have a huge legacy of older IE versions. Achieving completely identical views on different browsers is a fool's errand. Just get it close enough, and move on. -- PHP General Mailing List

[PHP] Re: How to enable cURL php extension on Debian Wheezy?

2013-06-02 Thread Csanyi Pal
, or necessarily with the php configuration, either. It doesn't work in Englis language either, just at this step of Moodle installation on the web interface, it doesn't complain for the missing cURL extension. But, when I proceed with the installation in English language, I come to the step where

Re: [PHP] Re: How to enable cURL php extension on Debian Wheezy?

2013-06-02 Thread Tamara Temple
in ../conf.d. Give that go, and see? I'm sorry I'm not much better help -- this all came out of the box the way I needed it and I didn't think about it much. Yes, that help me out. Now the phpinfo() funktion gives the cURL module enabled. Excellent! -- PHP General Mailing List (http

php-general Digest 1 Jun 2013 20:25:12 -0000 Issue 8255

2013-06-01 Thread php-general-digest-help
php-general Digest 1 Jun 2013 20:25:12 - Issue 8255 Topics (messages 321302 through 321309): Re: Looking for a good working PDO and/or mysqli database class to get started with OOP 321302 by: dealTek Binding object instances to static closures 321303 by: Nathaniel Higgins

[PHP] How to enable cURL php extension on Debian Wheezy?

2013-06-01 Thread Csanyi Pal
Hi, I just upgraded Squeeze to Wheezy, and have difficulties with cURL PHP extension: I can't enable it. I have installed following packages related to this issue: curl, libcurl3, libcurl3-gnutls, php5-curl. I have in /etc/php5/mods-available/curl.ini ; configuration for php CURL module

Re: [PHP] REQUEST

2013-06-01 Thread Last Hacker Always onpoint
very funny how big a novice i can be. On Wed, May 29, 2013 at 1:48 PM, Stuart Dallas stu...@3ft9.com wrote: On 29 May 2013, at 17:26, Last Hacker Always onpoint lasthack...@gmail.com wrote: HEY GUYZ I KNOW, I KNOW THIS IS NOT A PLACE FOR SOMETHING LIKE THIS SO BUT HEY I HAVE A LITTLE

[PHP] php links doest work when im using mod rewrite

2013-06-01 Thread Farzan Dalaee
i need a way with php to make urls thanks

Re: [PHP] How to enable cURL php extension on Debian Wheezy?

2013-06-01 Thread Adam Szewczyk
On Sat, Jun 01, 2013 at 09:41:33PM +0200, Csanyi Pal wrote: Hi, I just upgraded Squeeze to Wheezy, and have difficulties with cURL PHP extension: I can't enable it. I have installed following packages related to this issue: curl, libcurl3, libcurl3-gnutls, php5-curl. I have in /etc

Re: [PHP] php links doest work when im using mod rewrite

2013-06-01 Thread Julian Wanke
work my current query string is: index.php?r=blogpage=2 i want to change it with this: /blog/2 this is my .htaccess file RewriteEngine On RewriteRule ^([^/]*)/([^/]*)$ /framework/?r=$1page=$2 [L] but none of my js or css cant find i need a way with php to make urls thanks -- PHP General Mailing

Re: [PHP] php links doest work when im using mod rewrite

2013-06-01 Thread Farzan Dalaee
=blogpage=2 i want to change it with this: /blog/2 this is my .htaccess file RewriteEngine On RewriteRule ^([^/]*)/([^/]*)$ /framework/?r=$1page=$2 [L] but none of my js or css cant find i need a way with php to make urls thanks

Re: [PHP] How to enable cURL php extension on Debian Wheezy?

2013-06-01 Thread Adam Szewczyk
On Sat, Jun 01, 2013 at 09:41:33PM +0200, Csanyi Pal wrote: Hi, I just upgraded Squeeze to Wheezy, and have difficulties with cURL PHP extension: I can't enable it. I have installed following packages related to this issue: curl, libcurl3, libcurl3-gnutls, php5-curl. I have in /etc

[PHP] Re: How to enable cURL php extension on Debian Wheezy?

2013-06-01 Thread Csanyi Pal
Adam Szewczyk adam...@gmail.com writes: On Sat, Jun 01, 2013 at 09:41:33PM +0200, Csanyi Pal wrote: Hi, I just upgraded Squeeze to Wheezy, and have difficulties with cURL PHP extension: I can't enable it. I have installed following packages related to this issue: curl, libcurl3

Re: [PHP] php links doest work when im using mod rewrite

2013-06-01 Thread Adam Szewczyk
=2 i want to change it with this: /blog/2 this is my .htaccess file RewriteEngine On RewriteRule ^([^/]*)/([^/]*)$ /framework/?r=$1page=$2 [L] but none of my js or css cant find i need a way with php to make urls thanks -- A.

Re: [PHP] php links doest work when im using mod rewrite

2013-06-01 Thread Julian Wanke
On RewriteRule ^([^/]*)/([^/]*)$ /framework/?r=$1page=$2 [L] but none of my js or css cant find i need a way with php to make urls thanks -- Erstellt mit Operas E-Mail-Modul: http://www.opera.com/mail/

Re: [PHP] How to enable cURL php extension on Debian Wheezy?

2013-06-01 Thread Tamara Temple
Csanyi Pal csanyi...@gmail.com wrote: I have installed following packages related to this issue: curl, libcurl3, libcurl3-gnutls, php5-curl. All good. I have in /etc/php5/mods-available/curl.ini ; configuration for php CURL module ; priority=20 extension=curl.so Have you enabled

Re: [PHP] php links doest work when im using mod rewrite

2013-06-01 Thread Tamara Temple
://www.pmwiki.org/wiki/Cookbook/CleanUrls I don't know if that will help at all, but I've used it successfully. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: How to enable cURL php extension on Debian Wheezy?

2013-06-01 Thread Csanyi Pal
Tamara Temple tamouse.li...@gmail.com writes: Csanyi Pal csanyi...@gmail.com wrote: I have installed following packages related to this issue: curl, libcurl3, libcurl3-gnutls, php5-curl. All good. I have in /etc/php5/mods-available/curl.ini ; configuration for php CURL module ; priority

Re: [PHP] URL Rewriting

2013-06-01 Thread Tamara Temple
Silvio Siefke li...@silvio-siefke.de wrote: On Wed, 22 Jun 2011 17:50:49 -0400 Daniel P. Brown wrote: Has someone a Link with Tutorials or other Information? Not entirely sure what you're asking here, or how you (or the nginx folks) expect it to relate to PHP. Do you mean that you

Re: [PHP] Re: How to enable cURL php extension on Debian Wheezy?

2013-06-01 Thread Tamara Temple
, have no idea what it is or how it works with I18n stuff. But, if it works in one language and not the other, the problem probably isn't with curl, or necessarily with the php configuration, either. When you switch to Hungarian, what are the actual errors you are seeing? Stick the log in a gist

[PHP] sorry for the blast from the past

2013-06-01 Thread Tamara Temple
Sorry for replying to a message from 2011 -- for some reason I had a whole bunch of PHP messages suddenly show up in my inbox from the past. I generally don't check the year of an unread message in my inbox, as I try to keep inbox-zero. Anyway, carry on! -- PHP General Mailing List (http

Re: [PHP] sorry for the blast from the past

2013-06-01 Thread Daniel
On Sun, Jun 2, 2013 at 11:02 AM, Tamara Temple tamouse.li...@gmail.com wrote: Sorry for replying to a message from 2011 -- for some reason I had a whole bunch of PHP messages suddenly show up in my inbox from the past. I generally don't check the year of an unread message in my inbox, as I

Re: [PHP] REQUEST

2013-06-01 Thread musicdev
On Wed, May 29, 2013 at 12:26 PM, Last Hacker Always onpoint lasthack...@gmail.com wrote: HEY GUYZ I KNOW, I KNOW THIS IS NOT A PLACE FOR SOMETHING LIKE THIS SO BUT HEY I HAVE A LITTLE TINY QUESTION FOR MY COOL GUYZ. DOES ANYONE HERE USE A SIMPLY MACHINE FUNCTION SCRIPT? BECAUSE THE

<    6   7   8   9   10   11   12   13   14   15   >