Greetings, "daniel danon".
In reply to Your message dated Saturday, October 11, 2008, 2:50:34,
> By php.net manual, "Please note that variable variables cannot be used with
> PHP's Superglobal arrays within functions or class methods". Is there any
> way to override this problem? Just the not nic
Hello,
I have trouble uploading files to a server. Actually I can't upload more than
500 bytes or so.
Here's a quick print_r of the $_FILES
[_FILES] => Array( [avatar] => Array ([name] => index.html[type] =>
text/html[tmp_name] => /tmp/phpRbmXK5[error] => 0[size] =>
Oops
Logins are from
http://www.rons-home.net/page/login-greeting/
Blog postings are from
http://www.rons-home.net/blog/28/
with the word 'page' gone the session variable doesn't acknowledge the
login.
Ron
On Sat, 2008-10-11 at 21:12 -0400, Ron Piggott wrote:
> I did some more testing. The
I did some more testing. The URL is the problem.
Logins are from
On Sat, 2008-10-11 at 19:59 -0400, Daniel Brown wrote:
> On Sat, Oct 11, 2008 at 7:49 PM, Ron Piggott <[EMAIL PROTECTED]> wrote:
> > I am programming a blog.
> >
> > index.php sets up the layout for the web page. This includes
This is one of the first commands given.
I am using modrewrites to call the blog entries.
blog.php is responsible for displaying both the table of contents and
the blog entries. When the table of contents is called
(http://www.rons-home.net/page/blog/ ) the session variables are
present. W
On Sat, Oct 11, 2008 at 7:49 PM, Ron Piggott <[EMAIL PROTECTED]> wrote:
> I am programming a blog.
>
> index.php sets up the layout for the web page. This includes the
> heading, left hand and bottom menus.
>
> The content is loaded by the command:
>
> include($filename);
>
> the $_SESSION variab
I think what you're looking at is one of a myriad of available ISAPI
plug-ins; essentially, an IIS add-on that mimics the functionality of
mod_rewrite to some degree.
I found one that claims to work on IIS 5.0-7.0 *and* appears to be FREE.
Problem is, you won't be able to simply copy over any exi
I am programming a blog.
index.php sets up the layout for the web page. This includes the
heading, left hand and bottom menus.
The content is loaded by the command:
include($filename);
the $_SESSION variables aren't available to files like blog.php . The
session variables only work in the
On 11 Oct 2008, at 20:18, Alain Roger wrote:
to have access to my web application, user needs to log in. Before
to send
login/password over the net, user is directly redirected to HTTPS
version of
my web application in case he did not write HTTPS:// at the address
bar.
once he types login/pa
Hi,
to have access to my web application, user needs to log in. Before to send
login/password over the net, user is directly redirected to HTTPS version of
my web application in case he did not write HTTPS:// at the address bar.
once he types login/password, everything is checked with DB data and
Ben Stones wrote:
> are there any alternatives to HTTP_REFERER as that only works for
> "clicking" but it won't work for referrals from redirects?
>
It does work in FF, but not in MSIE - as usual. I had a design that
relied on HTTP_REFERER, but I had to change for exactly that reason.
I'd be ve
Eric Butera wrote:
On Sat, Oct 11, 2008 at 1:58 PM, Alan Boudreault
<[EMAIL PROTECTED]> wrote:
Richard Heyes wrote:
Problem with memory management
I sure know that feeling... :-/
So, there is no other choice that waiting a new PHP release ?
--
Alan Boudreault
Mapge
are there any alternatives to HTTP_REFERER as that only works for "clicking"
but it won't work for referrals from redirects?
Cheers
On Sat, Oct 11, 2008 at 1:58 PM, Alan Boudreault
<[EMAIL PROTECTED]> wrote:
> Richard Heyes wrote:
>>>
>>> Problem with memory management
>>>
>>
>> I sure know that feeling... :-/
>>
>>
>
> So, there is no other choice that waiting a new PHP release ?
>
> --
> Alan Boudreault
> Mapgears
> http://ww
> That wasn't what I was asking. I meant is there an equivalent to
> mod-rewrite for IIS?
No. At least nothing simple and free. Run a Google search for
"mod_rewrite iis" and you will see what I mean.
--
Crash
Committed to the search for intraterrestrial intelligence.
--
PHP General Mailing L
Richard Heyes wrote:
Problem with memory management
I sure know that feeling... :-/
So, there is no other choice that waiting a new PHP release ?
--
Alan Boudreault
Mapgears
http://www.mapgears.com/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://w
> mod_rewite if you use Apache.
Or, if you don't have it (not very likely), directories. Eg For the
URL you gave, make a dir called company and put a default document in
there (usually index.html). You will end up with a trailing slash on
the URL, and it does incur a redirect, but it works. This m
On Sat, 2008-10-11 at 13:00 -0400, "Crash" Dummy wrote:
> > Incidentally, does anyone know how this would be achieved on IIS?
> > We've got a site at work that's running off a CMS I knocked up, but
> > they'd prefer the URLs to look proper, without the query string.
>
> On IIS, the default docume
> Incidentally, does anyone know how this would be achieved on IIS?
> We've got a site at work that's running off a CMS I knocked up, but
> they'd prefer the URLs to look proper, without the query string.
On IIS, the default document(s) are set on the server. If index.php is
not in the default doc
On Sat, 2008-10-11 at 11:02 -0500, Shawn McKenzie wrote:
> Shawn McKenzie wrote:
> > OOzy Pal wrote:
> >> Hello,
> >>
> >> I expect that this question been beaten to death. I googled for many hours
> >> and all what I found is related to one CMS or another. I want to do is to
> >> make a very very
Ben Stones wrote:
> What I mean is I cannot use setcookie, I need to check if user
> credentials are correct first (which is BEFORE setcookie) and if so,
> set a cookie. I can't do that unless setcookie is first, but I need to
> check if the user credentials is correct. Furthermore I cannot use
>
What I mean is I cannot use setcookie, I need to check if user credentials
are correct first (which is BEFORE setcookie) and if so, set a cookie. I
can't do that unless setcookie is first, but I need to check if the user
credentials is correct. Furthermore I cannot use setcookie in the header as
I
Ben Stones wrote:
> I'm using cookies for my website script and upon users logging in a
> cookie is set. Problem for me is that the cookie doesn't work due to
> headers already sent. Is there anyway of fixing this because, there is
> no possible way of adding setcookie() to the top of the PHP file
Shawn McKenzie wrote:
> OOzy Pal wrote:
>> Hello,
>>
>> I expect that this question been beaten to death. I googled for many hours
>> and all what I found is related to one CMS or another. I want to do is to
>> make a very very very simple index.php that when is it called it
>> automatically detect
OOzy Pal wrote:
> Hello,
>
> I expect that this question been beaten to death. I googled for many hours
> and all what I found is related to one CMS or another. I want to do is to
> make a very very very simple index.php that when is it called it
> automatically detect the page and load it. For ex
Hi,
I'm using cookies for my website script and upon users logging in a cookie
is set. Problem for me is that the cookie doesn't work due to headers
already sent. Is there anyway of fixing this because, there is no possible
way of adding setcookie() to the top of the PHP file when the cookie is
ho
Hello,
I expect that this question been beaten to death. I googled for many hours
and all what I found is related to one CMS or another. I want to do is to
make a very very very simple index.php that when is it called it
automatically detect the page and load it. For example, when I call
www.xyz.
On Fri, 2008-10-10 at 16:29 -0500, [EMAIL PROTECTED] wrote:
>
>
> Hi forum
>
> I install library GD in Centos with
>
> yum install php-gd
>
> I follow your instructions and install,
> but when i execute phpinfo( ), i see the next
>
> './configure' '--build=i686-redhat-linux-gnu' '. withou
> Problem with memory management
I sure know that feeling... :-/
--
Richard Heyes
HTML5 Graphing for FF, Chrome, Opera and Safari:
http://www.rgraph.org
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
29 matches
Mail list logo