Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    PHP


SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





Is Gmail Homepage Real Ajax?


I saw gmail's storage size on mail.google.com. It was counting size like "Over 2728.845439 megabytes". then increasing... but my dialup connection disconnected I don't understand howto count storage size, when my pc disconnected internet. is it real 2728.845439 MB? or only text?




View Complete Forum Thread with Replies

Related Forum Messages:
AJAX + Rubberized Text (GMail Subject Like)
I am developing a site in PHP, MySQL using AJAX Technology. There are various dynamic datas being displayed in the page (from MySQL database). Code:

View Replies !
Import Yahoo,msn,Gmail Address Book Contacts For Particular Yahoo,msn,Gmail Email Id
I am trying to import the yahoo, msn,gmail address book contacts for the particular yahoo, msn, Gmail Email ID's. The process is first entering the yahoo, msn, or Gmail email id and password and after submitting the form, i am trying to get the yahoo, msn, Gmail address book contacts for that particular email id.

View Replies !
A Real Challenge For Real PHP Programmers
<?php
/*
A challenge to every PHP programmer.The one who's gonna solve this
problem would be deemed as

PSP(PHP Supreme Programmer).The problem is this : You have to write a
script that displays a list of

categories and subcategorieslike this one:

<select name="category">
<option value="1">Main</option>
<option value="2">Main > Computers</option>
<option value="4">Main > Computers > Hardware </option>
<option value="8">Main > Computers > Hardware > PC</option>
<option value="7">Main > Computers > Hardware > Mac</option>
<option value="9">Main > Computers > Hardware > Atari</option>
<option value="11">Main > Computers > Hardware > PC > History of
Pc</option>
<option value="">etc...</option>
</select>

The categories and subcategories details are stored in these two
tables in a MySQL database.
-categories : the categories names and ids.
-cat_relations : the relations between categories.It shows which
subcategory belongs to which category.
The belongings between categories can go very deep and the number of
categories is unlimited. This script will create the two tables and
fill them with sample data. All you need to do is to change the four
variables below. You can send the script back to this email :
yasbergy@yahoo.com.
*/

//Here starts the script. Please change the values of these variables
to fit your settings
$user = "prospective_PSP";
$database = "db";
$server = "localhost" ;
$pwd = "" ;
//Connection to the database that you created
mysql_connect($server,$user,$pwd) ;
mysql_select_db($database);
//Creation of the two tables : categories and cat_relations
$categories = " CREATE TABLE `categories` (`id` INT not null
AUTO_INCREMENT, `name` VARCHAR(100) not null , PRIMARY KEY (`id`),
INDEX (`id`), UNIQUE (`id`)) comment = 'The categories details' ";
mysql_query($categories) ;
$cat_relations = "CREATE TABLE `cat_relations` (`id` INT not null
AUTO_INCREMENT, `daughter_id` INT not null, `mother_id` INT not null ,
PRIMARY KEY (`id`), INDEX (`id`), UNIQUE (`id`)) comment = 'Which
category is the daughter of which category'";
mysql_query($cat_relations) ;

//Filling the two tables with sample data
$cats = array('Main','Computers','Countries','Hardware','S oftware','Programming
languages','Mac','PC','Atari','Winamp','History of the
PC','IBM','Components','High
level','USA','NYC','LA','Manhattan','India','Winzi p');
for ($i=0;$i<count($cats);$i++){
$sql = mysql_query("insert into categories (name)
values('".$cats[$i]."')");
}
mysql_query("insert into cat_relations (daughter_id,mother_id) values
(2,1),(3,1),(4,2),(5,2),(6,2),(7,4),(8,4),(9,4),(1 1,8),(12,8),(13,8),(10,5),(20,5),(14,6),(15,3),(16

,15),(17,15),(18,16),(19,3)");
//Now you can have a look on them through phpMyAdmin
?>

View Replies !
AJAX:: Using AJAX To Improve The Bandwidth Performance Of Web Applications
This is an amazing example of increasing bw performance using ajax. a
must see for all

visit:
http://webperformanceinc.com/library/reports/AjaxBandwidth/index.html

View Replies !
PHP HomePage Maker
Has anyone seen a php homepage maker using templates? I have spent hours looking through the php sites to no avail. It would seem that this type of app would be easier to do with php..

View Replies !
I Want An Introduction To Appear Only On The Homepage
I am using a simple online commerce system and I need to have an introduction (image+text) that will only appear on the home page (see demo). I already created a file called intro.php.

View Replies !
Password For Homepage
I need to figure out how to set a password on my home page so people cannot view any of the contents unless they're logged in. I don't need everyone to have a password but just have one for everyone and every now and then I can change that pass manually.

View Replies !
Changing Homepage From .html To .php
I want to change my homepage from .html to .php so that the page will by dynamic. What do I need to do to make this change properly. I am new to php and do not want to throw my site into chaos. I also do not want to cause problems with search engines.

If I get ride of the index.html page and replace it with index.php page and then change all of my internal links to point to the new page will everything work properly?

View Replies !
Redirect Certain IP Range To Homepage?
Firstly - yes I have Googled this and spent quite a while trying to understand these complicated HTACCESS rewrite engines and stuff, and it just completely escapes me.

Is anyone able to create for me a line that will block 74.6.0.0 - 74.6.255.255 (all the 74.6's) from accessing http://www.mydomain.com/myfile.php5 and redirect them to http://www.mydomain.com ?

I'm trying to do this because I have a file that uses MASSIVE resources, and it's being hit repeatedly by Inkitomi's bot, in clear violation of robots.txt. This usage is costing me a fortune. The same principle will be used to any other bots doing this. Permenant redirect would be best ofc.

View Replies !
Script Redirects To Homepage
Still quite new to php and just wrote this script for a webiste im writing for my local hockey team. The problem I have is that when you hit the submit button instead of printing the "the player has been updated" on the screen the browser goes to my index page.

What is annoying is I am running the same script for add a new team and this works fine I am a little bit confused and wonderded if anyone could help. The script does insert the data into my mysql database so there must be something going wrong between my isset submit part. Code:

View Replies !
Newsletter Subscribe On Homepage
I am trying to improve my site and wanted to add a subcribe form on my homepage where only email is required. When the user hits submit they are directed to the rest of the form with the email filled in.

View Replies !
List Who's Currently Logged In On The Homepage.
I'm trying to figure out who's logged into my user system. I've created a table with the username password and all that jazz. I've got all the authentication working but I want to list who's currently logged in on the homepage. So is what I did is create another row in the table called loggedin and it's defaulted to 'no'. When the user logs in its updated to 'yes'. It works and displays on the page but how can I get it to list all the logged in users instead of just the first one it finds? Here's my code: PHP Code:

$result = mysql_query("SELECT username FROM users WHERE loggedin='yes'");
        $row = mysql_fetch_row($result);
        echo '<b>'. $row[0] . '</b>'

View Replies !
Goto Homepage After Executing A Script
Probably a very easy question but I am stumped. I have written one of those tell a friend scripts where you enter your friend's email address and the script sends out an email to the friend's email. The problem is that I want the user to be directed to my homepage after the script that generates the email is executed. Is there a function or something in PHP to do this. Sort of like a goto or redirect function if there is such a thing. Due to reasons I wont go into here the homepage is not and cannot be in PHP. The homepage is just a static html page.

Alternatively, do I just use the action= on my form page ie:

<form method="POST" action= "www.homepage.com" and "sendurl.php">

I tried the above but it does not seem to work for some reason the URL appears on the browser address bar but I end up in an invalid page. It is only when I hit refresh that that the page comes up

If I have confused everyone by what I want to do, all I really want to do the same thing as what this bullitin board does when you submitt a new thread ie: goto thank you page and then a back to homepage or any other page.

View Replies !
Redirect To My Homepage Without Using The Standard Header Command
I have a php contact script and I want it to redirect to my homepage without using the standard header command.

<?php
header("location:http://www.johndoe.com/index.html");
exit;
?>

View Replies !
Section On Homepage Updating With Ten Most Recently Accessed Pages
Since all my pages are in PHP, I was thinking with each non-homepage page load, I can have a MySQL table be written to adding that document to the top of the list, and then delete the 11th item on the list (keeping the list at ten items).

Then on a homepage load, it could read the MySQL table and grab all the links and put them into the special section. Code:

View Replies !
Unexpected T Constant Encapsed String At Homepage Of Online Site
I came across the following error message when trying to access the homepage of online site : parse error : syntax error, unexpected T_Constant_Encapsed_String on line 288.
The affected section of my PHP script, from line 287 onwards is as follows: Code:

View Replies !
Gmail Imap
I have tried every possible combination to get gmails imap working through php using imap open why cant I connect is anyone else having this problem? Code:

View Replies !
How Does Gmail Set Up Their Checkboxes?
After loading several other pages, I can return to the original and find my selection intact.

View Replies !
Hotmail, Gmail Etc...
I have a problem with sending mail from the site I am working on.  Some users recieve the emails but those who use the major web based services (Hotmail, Yahoo, Gmail, AOL) don't even get mail delivered in their Junk folder - I have tested to check because I didn't quite believe it.

I am sending out a html formatted email with just one image in it...

Can any suggest a reason for this? Is it just my headers? Can anyone point me to some better headers to try and get through top the inbox..

View Replies !
Using Gmail Atom
I'm trying to make a script that reads gmail's atom RSS feeds. The only thing I can't quite figure out is how I am supposed to send the login info to the servers?

View Replies !
Connect To Gmail
I am trying to connect to my gmail account using the script below, but i can't connect. Does anyone know how to do this or what i am doing wrong. I essentially want to fetch my emails and then parse them.

$mail = @imap_open('{pop.gmail.com:995/novalidate-cert/pop3/ssl}',
'******@gmail.com', 'password')
or die("Connection to server failed");

i have enabled pop3 forwarding in gmail.. im using XAMPP (apache, mercurymail, mysql, php and all of that good stuff) and am currently working off of localhost.

View Replies !
How To Create A "send-a-message_and-show-the-sended-message"-homepage?
Hi! How to create a homepage, in which you can send a message, the
website shows on another webpage the message, so you can read it. I
mean, how to create so a system, which you need? (databank...) I only
know, that you must use PHP for creating it.

Ciao and thx for answers! :-)

View Replies !
RoundCube Mail With Gmail
I want to fetch emails from Gmail using Roundcube. But i can't. How can I fetch gmail?

View Replies !
Gmail POP Account Script
I have gmail account! I have enabled POP forwarding into my gmail account.

Now I need a ready-made script for running to access my POP account... I just
dont have enuf time to write all the scripts down...

View Replies !
Hotmail/gmail Contacts
I'm trying to find how I can get a list of hotmail/gmail contacts using PHP,
like a lot of sites use these days for 'tell a friend'.
Problem is there are no real examples anywhere that I can find..

I *do not* want a script that uses CURL to access a free website that lists
your contacts.. I don't want anything to do with third party websites, I
just want the raw code to access hotmail/gmail myself and get the list.

I thot this would use the webdav/httpmail method, but I heard that hotmail
now charge for this, and I very much doubt that all these sites pay just for
the privellege of accessing a contact list, so there must be an alternative.

Does anyone have any solutions ?

View Replies !
Imap_open And Gmail Issues
I have a CRM web application that checks users' email accounts and
downloads them to the application. One of the users has a gmail
account and I am trying to get access to this account using the PHP
imap_open (which works with POP mailboxes) function. I have tried
various methods for the values of the domain, but nothing seems to
work.

View Replies !
Login Gmail Through CURL
I am able to login Gmail through CURL, But I could goto Contacts Page,

Please let me know If you have any solution.

Contact URL http://mail.google.com/mail/h/qwsanjhbkyco/?pnl=a&v=cl
where "qwsanjhbkyco" is randomly generated.

View Replies !
Accesing Gmail From POP3
I'm trying to make a mail client in PHP, i can send mails using smtp, throw my gmail account, and i can download all my mails from gmail using pop3. But the problem is that i dont know how to download the mails in the spam folder or how to know if a mail is unread or not. 

For connect to pop.gmail.com im using the class NET_POP3, from PEAR.  Somebody know how can i solve this problem???

View Replies !
Downloading Mails From Gmail
anybody here has downloaded mails from gmail account along with attachment.

View Replies !
Sending Email Via Gmail
I am trying to send email via a gmail acount and I am not able to. I have run various scripts but they all amount to an error. Does anyone have a email script that uses authization and works with gmail.

View Replies !
Mail() Not Getting To Gmail Or Yahoo
The site I'm working on has the need to send out e-mails to its users (account creation, modification, etc). I've just been using the mail() function to do this with no problems... until I tested the functionality with my gmail account. No dice. I did some reading and found that others who were having the gmail problem also could not get emails to yahoo, so I got an account there and tried it... also no dice.

I've been all over the net trying different header tricks, I've checked my server info at dnsreport (found a NS problem but it has been corrected), I can verify the header information looks correct through my pop mail program, I don't get a single error when the script runs... it just... doesn't work.

I have another domain on the exact same box that sends a notification to my gmail account every night via a cron job script that I got over a year and a half ago. That notification works just fine, so I know that it isn't a server setting or something else I don't have control over. I've looked through the code for that script and can't made heads or tails of it to be honest... it does a bunch of crazy header stuff with boundary strings and base64 encoding because its job is to send a backup file.

The real kicker is that my friend who also has a gmail account received a notice from the script about two weeks ago when he tested it for me. I had a relative test it about a week ago and of the 4 or so e-mails they should've gotten from the script, they got 2. They have a Yahoo account.

In my own testing, nothing is getting through. My host did just recently move me to a new box... I guess that might have something to do with it, but it doesn't make sense that it would work for one of my domains and not the other.

Anyway, here's the code I'm using: .....

View Replies !
HTML CODE IN GMAIL
I have html generated code:

like

<table><tr><td><img src="http://www.abc.com/images/abc.jpg"></td></
tr></table>

When i copy above code and paste this code in gmail,yahoo or hotmail compose mail. But when i send mail with this code i received html code not display image in table format.

I want to accept this html code and display in html structure in mail without use of any server side scripting language.

View Replies !
Gmail Does Not Pick Up Sender Id
I had a shared hosting account with Godaddy earlier. I have script in my code which sends automatic emails to users when they sign up on the website.

All these emails were going in a proper format earlier. When i changed to Virtual Dedicated Server on Godaddy, emails which are automatically being shot to yahoo, hotmail or any other accounts are going properly. Code:

View Replies !
Send Email With Gmail By Using Php
I set up a server at home by using WAMP. I got error like this:

Warning: fsockopen() [function.fsockopen]: SSL operation failed with
code 1. OpenSSL Error messages: error:140770FC:SSL
routines:func(119):reason(252) in F:livingProgrammeswamp5www
est_phpmailerclass.smtp.php on line 110


openssl option is enable.

View Replies !
Configuring Gmail Smpt In Php´
Is there any way to set up the php.ini file, in order to be able to use
gmail to send mails from a local machine?

I've tryied with

SMTP = smtp.gmail.com
smtp_port = 25

but I can't figure out where I've to write user and password data nor
the place where I've to write the SSL data which Gmail waits for...

View Replies !
Can't Connect To Gmail With SMTP SSL Connection
I am trying to send emails from php using a hosted gmail account.  I have PHP Version 4.3.1.0 and Apache version 2.0.55 running on Windows.  Based on code examples and information I found from other sites it seems that the only way to do this is with a SMTP SSL connection.  I tried using the Swift mailing library, but I could not get a connection. Code:

View Replies !
Contact Importer Of Gmail, Aol, Hotmail
Can anyone here recommend a good contact importer script where a user can place in their email/password and outputs an array of their contacts? Ideally free but I notice a lot of contacts importer scripts out there do not work sometimes because the mail clients change their specs.

View Replies !
MIME Html E-mail To Gmail
i have met a problem that i can send the html e-mail by using MIME via php to yahoo mail and hotmail, but when i was try to send to gmail, it show all the html coding. can someone help me to solve this kind of problem?
the coding i made----->:

<?php
$a=<<<A
<form action="" method="post">
<input type="submit" name="submit" value="submit">
</form>
A;
echo $a;
if(isset($_POST['submit']))
{
$to = 'stam1982@gmail.com,stam_1982@yahoo.com'

$subject = 'Testing'
.........................

View Replies !
Can Anyone Code An Invite System Like Gmail
I was wondering if anybody knows how to code an invite system similar to gmail in php. I need it for a script i own. Look forward to your responses.

View Replies !
Mail To Function Not Working To Aol Or Gmail
i'm using the php mailto function

mail($email, 'Account Information', $message, "From: "test"<test@mysite.com>");

this works to my regular email but does not work to my gmail email or my clients aol email

has anyone else run into this??

View Replies !
Mail() Not Working To Y But Works To Gmail
A simple mail example like...

<?
mail("acco...@yahoo.com","Subject of Message","Message");
?>

does not work to yahoo or spymac.com, but the same works to gmail and
other servers.

Yahoo and others does not even receive the message. Inbox and Bulk
folders stay empty.

Does anybody have an idea why yahoo or other servers does not receive
the messsage?

View Replies !
Emails Going To Junk In Hotmail And Gmail
I am sending emails to all the members of my website using a script i wrote in php using mail function, but my emails are gone to their junk folder and not inbox main folder. specially in hotmail and gmail, please help me to solve out this problem.

View Replies !
Logging Into Gmail,yahoo,hotmail
I have realised there is this new trick around these days, All these so called networking sites are using(tagged,orkut).. they somehow login to the mail account(after taking username and password from user) and then pull out all details from address book....

I dont think all users have IMAP and POP activated then how do they do it.

View Replies !
Gmail Online Status Indicator?
I am wondering if it's possible to create a Gmail Online Status Indicator with PHP. Is that possible? Just asking, because if it's possible I would really need a script!

View Replies !
Email Keeps Going To Junk Mail In Hotmail/gmail
Recently i got a dedicated server (running CentOS), and im trying to send emails using a php to hotmail, gmail, yahoo, etc.. But the emails keep going to junk email, this are the headers i get in gmail, i changed my domain name to "example.com", and my ip to 99.99.99.99

-------------------------------------------------------
Delivered-To: myemail@example.com
Received: by 10.140.187.1 with SMTP id k1cs11218rvf;
Sun, 2 Sep 2007 01:16:43 -0700 (PDT)
Received: by
10.35.27.1 with SMTP id e1mr4411248pyj.1188721002619;
Sun, 02 Sep 2007 01:16:42 -0700 (PDT)
Return-Path: <staff@example.com>
Received: from
mysite.net ([99.99.99.99])
by mx.google.com with ESMTP id n63si2393055pyh.2007.09.02.01.16.41;
Sun, 02 Sep 2007 01:16:42 -0700 (PDT)

Received-SPF: neutral (google.com: 99.99.99.99 is neither permitted nor denied by best guess record for domain of staff@example.com
) client-ip=99.99.99.99;
Authentication-Results: mx.google.com; spf=neutral (google.com:
99.99.99.99 is neither permitted nor denied by best guess record for domain of staff@mysite.net) smtp.mail=staff@example.com
Received: from
mysite.net (example.com [127.0.0.1])
by mysite.net (8.13.8/8.13.8) with ESMTP id l828Gj3h013152

-------------------------------------------------------

whats wrong here? i tried everything, im guessing "example.com (example.com [127.0.0.1])" is one of the reasons, but how can i change it so it shows my ip address instead of "127.0.0.1"? what is SPF anyway?

i have googled this a lot, seen many people with the same problem, yet no solutions, you help would really really really reallllyy be much appreciated.

View Replies !
Mail Function Sends To Gmail But Not Hotmail.
Can anyone tell me what the requirements are to allow hotmail to collect
messages. I have a script using the mail function at the moment that emails
most email clients but the email doesn't seem to be accepted by hotmail. It
email doesn;t even go into the junk box.

Please help,

The code:

ini_set(sendmail_path, "/usr/sbin/sendmail -t -f webmaster@domain.com");

//Contents of an Registration Auto responce email(text format)
$message = "Thanks for registering".$userName;

$headers .= "From: Name<webmaster@domain.com>
";
$headers .= "Reply-To: <webmaster@domain.com>
";
$headers .= "X-Sender: <webmaster@domain.com>
";
$headers .= "X-Mailer: PHP4
"; //mailer
$headers .= "X-Priority: 3
"; //1 UrgentMessage, 3 Normal
$headers .= "Return-Path: <webmaster@domain.com>
";
mail($email,"Registration ",wordwrap(stripslashes($message)),$headers);

View Replies !
Html Mail() Making It Work In Gmail
I am having some problems making my html mail() work in all free mail servers, the main one being Gmail. It works fine in Yahoo and most others but in gmail the mail does not show up, it only shows the html code. Does anyone know the correct headers that I am suppose to use, or help me fix my script. PHP Code:

View Replies !
Open My Gmail Account From Another Browser With The Imap_open
What I am trying to do is simply open my gmail account from another browser with the imap_open and display the contents of the inbox.  So far everything that I have tried has given me an error.  Any suggestions?

View Replies !
With Gmail Space And Php Plugins To Build A Forum?
this is what i saw last week on googlecommunity.com the forum"Gmail"

a member there named "carbonbase" had a post about how to make full use of gmail space,...i dont remeber clearly, but he said using maybe some gmail plugin in php( like a php drive something) and with a dns(i suppose this means domain name something) we can use gmail as webspace for php forum....

its really a great gift! 2Gb of webspace , it should spend me lots of money if i apply these space via a webhosting.

so...does anyboy know about this details? i think if gmail space supports php, it would support others as well maybe asp too?

View Replies !
Getting Address Book Of Hotmail, Gmail, Yahoo
i want to get address book of hotmail, gmail, yahoomail, and msn using php curl coding.

View Replies !
Problem With Email Script After Gmail Implemented
It's a script that sends email from a contact info page from mysite.com to admin@mysite.com

I also was recently lucky enough to get to beta test the Gmail Hosted program where email from mysite.com gets routed thru Gmail so I can read all my email in Gmail instead of say Squirrelmail. Code:

View Replies !
Send Email Using Gmail Account Through Php Script
I am trying to send email using Gmail account through php script. But i am getting error like "Error: 530 5.7.0 Must issue a STARTTLS command first c28sm773563nfb".

View Replies !

Copyright © 2005-08 www.BigResource.com, All rights reserved