ng they REALLY
hate), sending emails that are too big, or simply sending too many
emails or emails with too many recipients, then it'll tighten the
restrictions. Over time if your good then those restrictions will be
released and eventually you'll be able to send at normal rates.
--
e randomly
generated, or you can use the GEONames database
<http://www.geonames.org/> to generate actual locations.
Also, wasn't there some test data available by MySQL? I think it was the
Sakila <http://dev.mysql.com/doc/sakila/en/sakila.html>database
<http://forums.mysql.com/list
ere's also the added bonus that being
a Open Source project it is being worked on by lots of people and
constantly getting better.
So I'd have to vote twice. I've used my own frameworks, but now using a
proper one.
My 2c.
--
Michael Kubler
I believe in a better world
y,
which is great when you get a whole heap of corrupt data that gets
sync'd across, you can go back to an old snapshot instead of loosing
everything.
--
Michael Kubler
*G*rey *P*hoenix *P*roductions <http://www.greyphoenix.biz>
Mobile : 0433483008
I believe in a better world.
k use
(for their LiveFeed system).
For a PHP based implementation check this out
<http://www.zeitoun.net/articles/comet_and_php/start>.
Michael Kubler
*G*rey *P*hoenix *P*roductions <http://www.greyphoenix.biz>
Mobile : 0433483008
I believe in a better world. I support the Ze
to perform a PHP.net search
Not sure if you can do this with other browsers, but I have found it to
be very useful.
Jim Lucas
I second that.
It's great to be able to type something like "PHP str_replace" into
Firefox's address bar and go straight to the documentation on
, which is more accurate but also slower.
For bandwidth you can use something like the bandwidth mod for Apache
which will allow you to prevent your webserver from completely
saturating your Internet connection, allowing you to still surf the net
or play games while people are accessing your
You can configure different index file names for Apache to check for.
e.g index.html, index.htm, index.php, default.htm
I had one webserver where it would only accept default.htm as the file,
and didn't allow .htaccess files.
Michael Kubler
*G*rey *P*hoenix *P*roductions
found only had
Anonymous FTP login, or MySQL (which is what I want), but the server
wouldn't work with the MySQL plugin.
Looks like I'll have to compile from source... joy.
Thanks for all the replies though.
Michael Kubler
*G*rey *P*hoenix *P*roductions <http://www.greyphoenix.biz>
ing else.
Has someone already got a script that does this (at least accepting FTP
connections), or is this a crazy idea that's just not possible?
Should I just compile the latest version of some FTP server, and try and
configure that to do what I want instead?
Thanks.
--
Michael Kub
Do you have magic quotes on?
Also, try a >*print_r($_SERVER);*
or even a >*var_dump($_GET);*
See what's actually in the arrays.
Michael Kubler
*G*rey *P*hoenix *P*roductions <http://www.greyphoenix.biz>
John Corry wrote:
I am completely baffled by this.
I have a PHP scri
n; //This works.
}
}
$person= new People;
$person->display_list();
?>
Instead of painstakingly working out most of the other mistakes I'm
likely to make, I'd love to read about other peoples issues they had
with learning OO so I can skip most of the hard stuff, and only make
smal
These days SHA should really be used instead of MD5, and you should be
SALTing the password as well.
Here's a great guide : http://phpsec.org/articles/2005/password-hashing.html
Michael Kubler
*G*rey *P*hoenix *P*roductions <http://www.greyphoenix.biz>
Jan G.B. wrote:
2009
cause it's even
easier than using windows network file transfer. Plus the fact that I
have a script to automatically backup the repository regularly, so once
the data is in the repository I'm highly unlikely to loose it (esp as
I've got local cached copies on 3 computers).
Best of al
Maybe you can use Firebug <http://getfirebug.com/>, or the Web Developer
<https://addons.mozilla.org/en-US/firefox/addon/60> plugins for Firefox?
Michael Kubler
*G*rey *P*hoenix *P*roductions <http://www.greyphoenix.biz>
Ashley Sheridan wrote:
On Sun, 2009-02-01 at 1
at
doesn't quite sound like what you want as it isn't something you host,
and you'd basically need to create a new one for each project.
Michael Kubler
*G*rey *P*hoenix *P*roductions <http://www.greyphoenix.biz>
Sancar Saran wrote:
Not really.
It was someting lik
http://au2.php.net/cli
PHP via command line.
Michael Kubler
*G*rey *P*hoenix *P*roductions <http://www.greyphoenix.biz>
Shawn McKenzie wrote:
Merlin Morgenstern wrote:
Hi there,
I am trying to unlink a file which is inside a folder that is not
writable to phps user "www&
t, especially if the users previous selection is listed next to the
actual buttons, but it's at least something to be aware of.
My 2c.
Michael Kubler
*G*rey *P*hoenix *P*roductions <http://www.greyphoenix.biz>
Nitsan Bin-Nun wrote:
Since you are using JS why not just update the con
ly use a plugin for something like Wordpress
<http://wordpress.org/> which will be 10x better than anything you'll
ever create anyway.
Michael Kubler
*G*rey *P*hoenix *P*roductions <http://www.greyphoenix.biz>
PS : Sorry to everyone about the long email replies... seems to be m
he script say 10,000 times. Also good for making sure your site can
survive a slashdot (it turns out that without some tweaking of apache
mine can't).
Michael Kubler
*G*rey *P*hoenix *P*roductions <http://www.greyphoenix.biz>
Boyd, Todd M. wrote:
Statements do not end with questi
Hmm, are people getting confused between < and <= ?
for($icount=0;$icount<11;$icount++) (is less than 11)
for($icount=0;$icount<=10;$icount++) (is less than or equal to 10)
Both iterate 10 times.
Michael Kubler
*G*rey *P*hoenix *P*roductions <http://www.greyphoenix.biz>
ome -
Archived News
You can usually get away with just using *&* as the separator but it
probably won't validate properly if your making it in xhtml (as you
should be). Also, if your not sure what the %20 means (a space) then
look up urlencode <http://au.php.net/manual/en/function
arious mailman mailing lists, amount of data
transferred, HDD space left, ram used, uptime, and current load, and all
sorts of things.
Michael Kubler
*G*rey *P*hoenix *P*roductions <http://www.greyphoenix.biz>
Daniel Brown wrote:
On Sat, Jan 24, 2009 at 10:03, Martin ZvarĂk wrote:
e easier way (that likely keep a track of the last activity from a
user, and assume they are online if they have had any activity within
the last 30mins, assuming they haven't logged out.
Hope that helps a little, unless I've completely mis-interpreted the
question.
Michael Kubler
*
t have the ram for
two copies of the array in memory at the same time.
Not sure if that actually helps, seeing as array_reverse() is already a
function that's probably written in C which could just make a copy with
re-arrange the pointers or something.
Michael Kubler
*G*rey *P*hoenix *P*r
like the PHP filter_var() function?
I've seen plenty of libraries for AJAX, and the like (Prototype, jquery,
etc), but haven't run across any for standard form input validation.
Thanks.
Michael Kubler*
* <http://www.greyphoenix.biz>
Nathan Rixham wrote:
where as I think valid
A couple of sites about making CSS print stylesheets.
http://www.alistapart.com/articles/goingtoprint/
http://www.webdesignschoolreview.com/css-printing.html
I'd send you links to more, but my Internet connection is shaped, and
it's too slow to look through many more.
Michael Kub
und like a computer. My Dad blurted out when I first went to
your site 'Ohh I was playing with text to speech 30 years ago.'
I can see things like this being a big plus for usability.
Michael Kubler
*G*rey *P*hoenix *P*roductions <http://www.greyphoenix.biz>
Nathan Nobbe wrote:
ttp://www.eicar.org/anti_virus_test_file.htm>
file is a semi-standardised anti-virus test. Then again, I run exim4,
and haven't bothered looking at trying to force certain bounce messages
without reconfiguring the server.
Michael Kubler
*G*rey *P*hoenix *P*roductions <http://www.greyphoenix.biz>
pearing, and I could view the map, but caused the map to disappear
after I tried searching for a different Google Maps location.
Michael Kubler
*G*rey *P*hoenix *P*roductions <http://www.greyphoenix.biz>
tedd wrote:
Hi gang:
I posted this question on the Google Map Discussion group/list
t
Hi Kyle,
The line looks fine in my text editor (SciTE).
Have you checked the line above it is properly enclosed and ended?
Michael Kubler
*G*rey *P*hoenix *P*roductions <http://www.greyphoenix.biz>
Kyle Terry wrote:
I keep getting this syntax error on the following string...
syntax
.com_)
and can then have multiple lists on that domain, such as
[EMAIL PROTECTED], [EMAIL PROTECTED] etc..
Michael Kubler
*G*rey *P*hoenix *P*roductions <http://www.greyphoenix.biz>
Bjoern Bartels wrote:
Dotan Cohen wrote ..
2008/10/29 Richard Heyes <[EMAIL PROTECTED]>:
just another example of how you can't purely rely on IP
addresses, although it is the easiest thing from a webservers PoV, and
usually right >90% of the time (as far as I am aware, although haven't
tested, nor have any good ways of testing besides Traceroute).
Michael
&charset=%28detect+automatically%29&doctype=Inline&group=0>,
nor character Encoding set.
It might be something else, but I haven't played with enough AJAX to
debug the javascript.
Michael Kubler
*G*rey *P*hoenix *P*roductions <http://www.greyphoenix.biz>
bperquku wro
icsLens is the plugin for browsers, while PicLens lite uses javascript
and lets people who don't have the browser plugin view the photos.
<http://piclens.com/lite/webmasterguide.php>
Michael Kubler
*G*rey *P*hoenix *P*roductions <http://www.greyphoenix.biz>
philip wrote:
Hi ev
File Permissions? PHP safe mode?
Mail server locking the file?
Can you >/tail /path/to/file-with-contents-at-bottom / ??
Michael Kubler
*G*rey *P*hoenix *P*roductions <http://www.greyphoenix.biz>
Mathijs van Veluw wrote:
I get the error message: "Can't open mailbox&
Does :
/echo strtolower("CL22");/
work?
You could also try :
/var_dump($strLow);
/
Ed Curtis wrote:
Richard Heyes wrote:
Ed Curtis wrote:
I'm converting upper case characters in a string to lower case and
am coming up with an empty string.
As I've done a million times before with other n
joined.
Michael Kubler
*G*rey *P*hoenix *P*roductions <http://www.greyphoenix.biz>
Ted Wood wrote:
On 1-Jun-08, at 8:15 AM, Ryan S wrote:
Thanks for replying, but how and where do I put that into the script?
all that "this->" stuff is confusing
Tony Marsten's links s
38 matches
Mail list logo