-
Notifications
You must be signed in to change notification settings - Fork 1
/
ds-messages
2396 lines (2396 loc) · 817 KB
/
ds-messages
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Oct 20 04:02:05 php2 kernel: imklog 3.22.1, log source = /proc/kmsg started.
Oct 20 04:02:05 php2 rsyslogd: [origin software="rsyslogd" swVersion="3.22.1" x-pid="1344" x-info="http://www.rsyslog.com"] (re)start
Oct 20 04:02:10 php2 dosomething: http://www.dosomething.org|1382241730|php|208.115.113.83|http://www.dosomething.org/user/password?destination=blog/celebsgonegood/www.sevensitestour.com%3Ffield_blog_type_tid%3DAll%26taxonomy_vocabulary_5_tid%3DAll%26page%3D14||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-408/sites/all/themes/doit/template.php).
Oct 20 04:02:13 php2 dosomething: http://www.dosomething.org|1382241733|php|108.201.205.235|http://www.dosomething.org/cause/9385/resources|http://www.dosomething.org/cause/disasters|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-408/sites/all/themes/doit/template.php).
Oct 20 04:02:23 php2 dosomething: http://www.dosomething.org|1382241743|page not found|66.249.73.103|http://www.dosomething.org/club/art-institute-california-hollywood-dosomething-club||0||club/art-institute-california-hollywood-dosomething-club
Oct 20 04:02:23 php2 dosomething: http://www.dosomething.org|1382241743|opengraph_meta|66.249.73.103|http://www.dosomething.org/club/art-institute-california-hollywood-dosomething-club||0||Already output og:title
Oct 20 04:02:23 php2 dosomething: http://www.dosomething.org|1382241743|opengraph_meta|66.249.73.103|http://www.dosomething.org/club/art-institute-california-hollywood-dosomething-club||0||Already output og:description
Oct 20 04:02:23 php2 dosomething: http://www.dosomething.org|1382241743|opengraph_meta|66.249.73.103|http://www.dosomething.org/club/art-institute-california-hollywood-dosomething-club||0||Already output og:image
Oct 20 04:02:23 php2 dosomething: http://www.dosomething.org|1382241743|opengraph_meta|66.249.73.103|http://www.dosomething.org/club/art-institute-california-hollywood-dosomething-club||0||Already output og:url
Oct 20 04:02:23 php2 dosomething: http://www.dosomething.org|1382241743|opengraph_meta|66.249.73.103|http://www.dosomething.org/club/art-institute-california-hollywood-dosomething-club||0||Already output og:site_name
Oct 20 04:02:26 php2 dosomething: http://www.dosomething.org|1382241746|file system|127.0.0.1|http://www.dosomething.org/index.php||0||Did not delete temporary file "public://5293366646_7446cf8a81_b_0.jpg" during garbage collection, because it is in use by the following modules: file.
Oct 20 04:02:26 php2 dosomething: http://www.dosomething.org|1382241746|file system|127.0.0.1|http://www.dosomething.org/index.php||0||Did not delete temporary file "public://AJgBS.jpg" during garbage collection, because it is in use by the following modules: file.
Oct 20 04:02:27 php2 dosomething: http://www.dosomething.org|1382241747|file system|127.0.0.1|http://www.dosomething.org/index.php||0||Could not delete temporary file "public://social_scholarships/content banner2-01-01.png" during garbage collection
Oct 20 04:02:27 php2 dosomething: http://www.dosomething.org|1382241747|file system|127.0.0.1|http://www.dosomething.org/index.php||0||Could not delete temporary file "public://pictures/blog/thumb wars leonardo jimenezs.jpg" during garbage collection
Oct 20 04:02:27 php2 dosomething: http://www.dosomething.org|1382241747|file system|127.0.0.1|http://www.dosomething.org/index.php||0||Could not delete temporary file "public://webform/grants/KAST Edu Budget Summary.docx" during garbage collection
Oct 20 04:02:27 php2 dosomething: http://www.dosomething.org|1382241747|file system|127.0.0.1|http://www.dosomething.org/index.php||0||Could not delete temporary file "public://webform/grants/Do_Something_budget_AMFM.xlsx" during garbage collection
Oct 20 04:02:27 php2 dosomething: http://www.dosomething.org|1382241747|file system|127.0.0.1|http://www.dosomething.org/index.php||0||Could not delete temporary file "public://webform/grants/Soccer Jersey budget.pdf" during garbage collection
Oct 20 04:02:27 php2 dosomething: http://www.dosomething.org|1382241747|file system|127.0.0.1|http://www.dosomething.org/index.php||0||Could not delete temporary file "public://projects/rules-regs-file/CellPhonesforSurvivorsRules.pdf" during garbage collection
Oct 20 04:02:27 php2 dosomething: http://www.dosomething.org|1382241747|file system|127.0.0.1|http://www.dosomething.org/index.php||0||Could not delete temporary file "public://projects/banner-image/CellDonation_Header.jpg" during garbage collection
Oct 20 04:02:27 php2 dosomething: http://www.dosomething.org|1382241747|file system|127.0.0.1|http://www.dosomething.org/index.php||0||Could not delete temporary file "public://projects/action-item-image/kitten3.jpeg" during garbage collection
Oct 20 04:02:27 php2 dosomething: http://www.dosomething.org|1382241747|file system|127.0.0.1|http://www.dosomething.org/index.php||0||Could not delete temporary file "public://projects/project-profile-image/kitten2.jpeg" during garbage collection
Oct 20 04:02:27 php2 dosomething: http://www.dosomething.org|1382241747|file system|127.0.0.1|http://www.dosomething.org/index.php||0||Could not delete temporary file "public://projects/project-profile-image/Batman_Lee.png" during garbage collection
Oct 20 04:02:27 php2 dosomething: http://www.dosomething.org|1382241747|file system|127.0.0.1|http://www.dosomething.org/index.php||0||Could not delete temporary file "public://projects/action-item-image/batman logo.gif" during garbage collection
Oct 20 04:02:27 php2 dosomething: http://www.dosomething.org|1382241747|file system|127.0.0.1|http://www.dosomething.org/index.php||0||Could not delete temporary file "public://projects/project-profile-image/kitten2_0.jpeg" during garbage collection
Oct 20 04:02:26 php2 dosomething: http://www.dosomething.org|1382241746|dosomething_subscribe_mailchimp|127.0.0.1|http://www.dosomething.org/index.php||0||listBatchSubscribe: Array#012(#012 [add_count] => 62#012 [update_count] => 104#012 [error_count] => 0#012 [errors] => Array#012 (#012 )#012#012)#012 Batch:a:166:{i:0;a:10:{s:5:"EMAIL";s:22:"[email protected]";s:10:"EMAIL_TYPE";s:4:"html";s:3:"UID";s:7:"1365485";s:7:"MMERGE3";s:12:"Ana Vazquez2";s:7:"MMERGE7";a:1:{i:0;a:3:{s:5:"value";s:10:"6198624592";s:6:"format";N;s:10:"safe_value";s:10:"6198624592";}}s:4:"BDAY";s:5:"11/29";s:8:"BDAYFULL";s:10:"11/29/1995";s:7:"TURNS18";s:10:"11/29/2013";s:7:"TURNS26";s:10:"11/29/2021";s:9:"GROUPINGS";a:1:{i:0;a:2:{s:2:"id";i:10621;s:6:"groups";s:18:"MindonMyMoney20132";}}}i:1;a:11:{s:5:"FNAME";s:6:"Sarah ";s:5:"LNAME";s:6:"Bogart";s:7:"MMERGE3";s:12:"Sarah Bogart";s:3:"UID";s:7:"1443909";s:4:"BDAY";s:5:"07/11";s:8:"BDAYFULL";s:10:"07/11/1995";s:7:"TURNS18";s:10:"07/11/2013";s:7:"TURNS26";s:10:"07/11/2021";s:5:"EMAIL";s:20:"[email protected]";s:10:"EMAIL_TYPE";s:4:"html";s:9:"GROUPINGS";a:1:{i:0;a:2:{s:2:"id";i:10613;s:6:"groups";s:14:"NewMembers2012";}}}i:2;a:10:{s:5:"EMAIL";s:18:"[email protected]";s:10:"EMAIL_TYPE";s:4:"html";s:3:"UID";s:7:"1435594";s:7:"MMERGE3";s:15:"McKenzie Cromer";s:7:"MMERGE7";a:1:{i:0;a:3:{s:5:"value";s:10:"8175057183";s:6:"format";N;s:10:"safe_value";s:10:"8175057183";}}s:4:"BDAY";s:5:"07/04";s:8:"BDAYFULL";s:10:"07/04/1995";s:7:"TURNS18";s:10:"07/04/2013";s:7:"TURNS26";s:10:"07/04/2021";s:9:"GROUPINGS";a:1:{i:0;a:2:{s:2:"id";i:10621;s:6:"groups";s:16:"Microfinance2013";}}}i:3;a:12:{s:5:"FNAME";s:8:"Brooklyn";s:5:"LNAME";s:7:"Ballard";s:7:"MMERGE3";s:16:"Brooklyn Ballard";s:3:"UID";s:7:"1443911";s:4:"BDAY";s:5:"02/26";s:8:"BDAYFULL";s:10:"02/26/1996";s:7:"TURNS18";s:10:"02/26/2014";s:7:"TURNS26";s:10:"02/26/2022";s:7:"MMERGE7";s:10:"9317975873";s:5:"EMAIL";s:24:"[email protected]";s:10:"EMAIL_TYPE";s:4:"html";s:9:"GROUPINGS";a:1:{i:0;a:2:{s:2:"id";i:10613;s
Oct 20 04:06:42 php2 dosomething: http://www.dosomething.org|1382242002|page not found|66.249.73.212|http://www.dosomething.org/webform-submission/1917146||0||webform-submission/1917146
Oct 25 20:17:45 php2 dosomething: http://www.dosomething.org|1382732265|opengraph_meta|164.58.74.5|http://www.dosomething.org/files/css/null|http://www.dosomething.org/50cans?page=22|1401583||Already output og:description
Oct 25 20:17:45 php2 dosomething: http://www.dosomething.org|1382732265|opengraph_meta|164.58.74.5|http://www.dosomething.org/files/css/null|http://www.dosomething.org/50cans?page=22|1401583||Already output og:image
Oct 25 20:17:45 php2 dosomething: http://www.dosomething.org|1382732265|opengraph_meta|164.58.74.5|http://www.dosomething.org/files/css/null|http://www.dosomething.org/50cans?page=22|1401583||Already output og:url
Oct 25 20:17:45 php2 dosomething: http://www.dosomething.org|1382732265|opengraph_meta|164.58.74.5|http://www.dosomething.org/files/css/null|http://www.dosomething.org/50cans?page=22|1401583||Already output og:site_name
Oct 25 20:17:48 php2 dosomething: http://www.dosomething.org|1382732268|php|66.249.73.103|http://www.dosomething.org/user?destination=webform-submission/760522||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 20:17:51 php2 dosomething: http://www.dosomething.org|1382732271|user|127.0.0.1|http://www.dosomething.org/rest/user/login.json?1382732270||1454657||Session opened for [email protected].
Oct 25 20:17:51 php2 dosomething: http://www.dosomething.org|1382732271|php|127.0.0.1|http://www.dosomething.org/rest/user/login.json?1382732270||1454657||Notice: Undefined variable: bLoginAsEmail in _dosomething_services_user_resource_login() (line 540 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_services/dosomething_services.module).
Oct 25 20:17:58 php2 dosomething: http://www.dosomething.org|1382732278|php|157.55.33.25|http://www.dosomething.org/blog/celebsgonegood/90210-star%C3%A2%E2%82%AC%E2%84%A2s-message-young-hollywood-%C3%A2%E2%82%AC%CB%9Cclean-your-act%C3%A2%E2%82%AC%E2%84%A2?page=143||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 20:18:00 php2 dosomething: http://www.dosomething.org|1382732280|php|37.59.32.148|http://www.dosomething.org/user/registration?destination=node/3|http://www.dosomething.org/help|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 20:18:01 php2 dosomething: http://www.dosomething.org|1382732281|page not found|176.57.141.193|http://www.dosomething.org/grant-alumni-listing/lynn-anne-perez||0||grant-alumni-listing/lynn-anne-perez
Oct 25 20:18:01 php2 dosomething: http://www.dosomething.org|1382732281|opengraph_meta|176.57.141.193|http://www.dosomething.org/grant-alumni-listing/lynn-anne-perez||0||Already output og:title
Oct 25 20:18:01 php2 dosomething: http://www.dosomething.org|1382732281|opengraph_meta|176.57.141.193|http://www.dosomething.org/grant-alumni-listing/lynn-anne-perez||0||Already output og:description
Oct 25 20:18:01 php2 dosomething: http://www.dosomething.org|1382732281|opengraph_meta|176.57.141.193|http://www.dosomething.org/grant-alumni-listing/lynn-anne-perez||0||Already output og:image
Oct 25 20:18:01 php2 dosomething: http://www.dosomething.org|1382732281|opengraph_meta|176.57.141.193|http://www.dosomething.org/grant-alumni-listing/lynn-anne-perez||0||Already output og:url
Oct 25 20:18:01 php2 dosomething: http://www.dosomething.org|1382732281|opengraph_meta|176.57.141.193|http://www.dosomething.org/grant-alumni-listing/lynn-anne-perez||0||Already output og:site_name
Oct 25 20:18:12 php2 dosomething: http://www.dosomething.org|1382732292|filter|66.249.73.195|http://www.dosomething.org/action-finder?issues=All&who=All&where=1&time=15&page=2||0||Missing text format: 4.
Oct 25 20:18:12 php2 dosomething: http://www.dosomething.org|1382732292|php|66.249.73.195|http://www.dosomething.org/action-finder?issues=All&who=All&where=1&time=15&page=2||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 20:18:14 php2 dosomething: http://www.dosomething.org|1382732294|page not found|164.58.74.5|http://www.dosomething.org/files/css/null|http://www.dosomething.org/50cans?page=24|1401583||files/css/null
Oct 25 20:18:14 php2 dosomething: http://www.dosomething.org|1382732294|opengraph_meta|164.58.74.5|http://www.dosomething.org/files/css/null|http://www.dosomething.org/50cans?page=24|1401583||Already output og:title
Oct 25 20:18:14 php2 dosomething: http://www.dosomething.org|1382732294|opengraph_meta|164.58.74.5|http://www.dosomething.org/files/css/null|http://www.dosomething.org/50cans?page=24|1401583||Already output og:description
Oct 25 20:18:14 php2 dosomething: http://www.dosomething.org|1382732294|opengraph_meta|164.58.74.5|http://www.dosomething.org/files/css/null|http://www.dosomething.org/50cans?page=24|1401583||Already output og:image
Oct 25 20:18:14 php2 dosomething: http://www.dosomething.org|1382732294|opengraph_meta|164.58.74.5|http://www.dosomething.org/files/css/null|http://www.dosomething.org/50cans?page=24|1401583||Already output og:url
Oct 25 20:18:14 php2 dosomething: http://www.dosomething.org|1382732294|opengraph_meta|164.58.74.5|http://www.dosomething.org/files/css/null|http://www.dosomething.org/50cans?page=24|1401583||Already output og:site_name
Oct 25 20:18:22 php2 dosomething: http://www.dosomething.org|1382732302|php|107.206.115.90|http://www.dosomething.org/sas-landing/724211?sid=2603873|http://www.dosomething.org/sas-landing/724211?sid=2603873|0||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 20:18:22 php2 dosomething: http://www.dosomething.org|1382732302|php|107.206.115.90|http://www.dosomething.org/sas-landing/724211?sid=2603873|http://www.dosomething.org/sas-landing/724211?sid=2603873|0||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 20:18:22 php2 dosomething: http://www.dosomething.org|1382732302|php|107.206.115.90|http://www.dosomething.org/sas-landing/724211?sid=2603873|http://www.dosomething.org/sas-landing/724211?sid=2603873|0||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 20:18:22 php2 dosomething: http://www.dosomething.org|1382732302|php|107.206.115.90|http://www.dosomething.org/sas-landing/724211?sid=2603873|http://www.dosomething.org/sas-landing/724211?sid=2603873|0||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 20:18:22 php2 dosomething: http://www.dosomething.org|1382732302|php|107.206.115.90|http://www.dosomething.org/sas-landing/724211?sid=2603873|http://www.dosomething.org/sas-landing/724211?sid=2603873|0||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 20:18:23 php2 dosomething: http://www.dosomething.org|1382732303|php|107.206.115.90|http://www.dosomething.org/sas-landing/724211?sid=2603873|http://www.dosomething.org/sas-landing/724211?sid=2603873|0||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 20:18:23 php2 dosomething: http://www.dosomething.org|1382732303|php|107.206.115.90|http://www.dosomething.org/sas-landing/724211?sid=2603873|http://www.dosomething.org/sas-landing/724211?sid=2603873|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 20:18:23 php2 dosomething: http://www.dosomething.org|1382732303|php|107.206.115.90|http://www.dosomething.org/sas-landing/724211?sid=2603873|http://www.dosomething.org/sas-landing/724211?sid=2603873|0||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 20:18:25 php2 dosomething: http://www.dosomething.org|1382732305|php|185.10.104.194|http://www.dosomething.org/project/first-friday-fest||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 20:18:32 php2 dosomething: http://www.dosomething.org|1382732312|php|65.55.213.73|http://www.dosomething.org/project/healthy-living-homeless||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 20:18:33 php2 dosomething: http://www.dosomething.org|1382732313|page not found|71.41.170.6|http://www.dosomething.org/files/css/null|http://www.dosomething.org/footlocker/apply/status|1450689||files/css/null
Oct 25 20:18:33 php2 dosomething: http://www.dosomething.org|1382732313|opengraph_meta|71.41.170.6|http://www.dosomething.org/files/css/null|http://www.dosomething.org/footlocker/apply/status|1450689||Already output og:title
Oct 25 20:18:33 php2 dosomething: http://www.dosomething.org|1382732313|opengraph_meta|71.41.170.6|http://www.dosomething.org/files/css/null|http://www.dosomething.org/footlocker/apply/status|1450689||Already output og:description
Oct 25 20:18:33 php2 dosomething: http://www.dosomething.org|1382732313|opengraph_meta|71.41.170.6|http://www.dosomething.org/files/css/null|http://www.dosomething.org/footlocker/apply/status|1450689||Already output og:image
Oct 25 20:18:33 php2 dosomething: http://www.dosomething.org|1382732313|opengraph_meta|71.41.170.6|http://www.dosomething.org/files/css/null|http://www.dosomething.org/footlocker/apply/status|1450689||Already output og:url
Oct 25 20:18:33 php2 dosomething: http://www.dosomething.org|1382732313|opengraph_meta|71.41.170.6|http://www.dosomething.org/files/css/null|http://www.dosomething.org/footlocker/apply/status|1450689||Already output og:site_name
Oct 25 20:18:40 php2 dosomething: http://www.dosomething.org|1382732320|opengraph_meta|68.90.80.19|http://www.dosomething.org/news/latina-teen-suicide-rate-sparking-concern|http://www.dosomething.org/search/teen%20suicide|0||Already output og:title
Oct 25 20:18:40 php2 dosomething: http://www.dosomething.org|1382732320|opengraph_meta|68.90.80.19|http://www.dosomething.org/news/latina-teen-suicide-rate-sparking-concern|http://www.dosomething.org/search/teen%20suicide|0||Already output og:description
Oct 25 20:18:40 php2 dosomething: http://www.dosomething.org|1382732320|opengraph_meta|68.90.80.19|http://www.dosomething.org/news/latina-teen-suicide-rate-sparking-concern|http://www.dosomething.org/search/teen%20suicide|0||Already output og:image
Oct 25 20:18:40 php2 dosomething: http://www.dosomething.org|1382732320|opengraph_meta|68.90.80.19|http://www.dosomething.org/news/latina-teen-suicide-rate-sparking-concern|http://www.dosomething.org/search/teen%20suicide|0||Already output og:type
Oct 25 20:18:40 php2 dosomething: http://www.dosomething.org|1382732320|opengraph_meta|68.90.80.19|http://www.dosomething.org/news/latina-teen-suicide-rate-sparking-concern|http://www.dosomething.org/search/teen%20suicide|0||Already output og:url
Oct 25 20:18:40 php2 dosomething: http://www.dosomething.org|1382732320|opengraph_meta|68.90.80.19|http://www.dosomething.org/news/latina-teen-suicide-rate-sparking-concern|http://www.dosomething.org/search/teen%20suicide|0||Already output og:site_name
Oct 25 20:18:42 php2 dosomething: http://www.dosomething.org|1382732322|opengraph_meta|204.126.230.5|http://www.dosomething.org/grants/seed-grants?sid=2603875|http://www.dosomething.org/grants|0||Already output og:title
Oct 25 20:18:42 php2 dosomething: http://www.dosomething.org|1382732322|opengraph_meta|204.126.230.5|http://www.dosomething.org/grants/seed-grants?sid=2603875|http://www.dosomething.org/grants|0||Already output og:description
Oct 25 20:18:42 php2 dosomething: http://www.dosomething.org|1382732322|opengraph_meta|204.126.230.5|http://www.dosomething.org/grants/seed-grants?sid=2603875|http://www.dosomething.org/grants|0||Already output og:image
Oct 25 20:18:42 php2 dosomething: http://www.dosomething.org|1382732322|opengraph_meta|204.126.230.5|http://www.dosomething.org/grants/seed-grants?sid=2603875|http://www.dosomething.org/grants|0||Already output og:type
Oct 25 20:18:42 php2 dosomething: http://www.dosomething.org|1382732322|opengraph_meta|204.126.230.5|http://www.dosomething.org/grants/seed-grants?sid=2603875|http://www.dosomething.org/grants|0||Already output og:url
Oct 25 20:18:42 php2 dosomething: http://www.dosomething.org|1382732322|opengraph_meta|204.126.230.5|http://www.dosomething.org/grants/seed-grants?sid=2603875|http://www.dosomething.org/grants|0||Already output og:site_name
Oct 25 20:18:43 php2 dosomething: http://www.dosomething.org|1382732323|opengraph_meta|184.72.158.161|http://www.dosomething.org/grants/seed-grants?sid=2603875||0||Already output og:title
Oct 25 20:18:43 php2 dosomething: http://www.dosomething.org|1382732323|opengraph_meta|184.72.158.161|http://www.dosomething.org/grants/seed-grants?sid=2603875||0||Already output og:description
Oct 25 20:18:43 php2 dosomething: http://www.dosomething.org|1382732323|opengraph_meta|184.72.158.161|http://www.dosomething.org/grants/seed-grants?sid=2603875||0||Already output og:image
Oct 25 20:18:43 php2 dosomething: http://www.dosomething.org|1382732323|opengraph_meta|184.72.158.161|http://www.dosomething.org/grants/seed-grants?sid=2603875||0||Already output og:type
Oct 25 20:18:43 php2 dosomething: http://www.dosomething.org|1382732323|opengraph_meta|184.72.158.161|http://www.dosomething.org/grants/seed-grants?sid=2603875||0||Already output og:url
Oct 25 20:18:43 php2 dosomething: http://www.dosomething.org|1382732323|opengraph_meta|184.72.158.161|http://www.dosomething.org/grants/seed-grants?sid=2603875||0||Already output og:site_name
Oct 25 20:18:45 php2 dosomething: http://www.dosomething.org|1382732325|php|82.12.234.8|http://www.dosomething.org/webform-counter-field/726458/1|http://www.dosomething.org/teensforjeans|0||Warning: array_unshift() expects parameter 1 to be array, string given in ajax_render() (line 295 of /var/www/jenkins-Deploy-413/includes/ajax.inc).
Oct 25 19:32:51 php2 dosomething: http://www.dosomething.org|1382729571|php|71.231.137.0|http://www.dosomething.org/webform/mobile-referral-form|http://www.dosomething.org/webform/mobile-referral-form|0||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:32:51 php2 dosomething: http://www.dosomething.org|1382729571|php|71.231.137.0|http://www.dosomething.org/webform/mobile-referral-form|http://www.dosomething.org/webform/mobile-referral-form|0||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:32:51 php2 dosomething: http://www.dosomething.org|1382729571|php|71.231.137.0|http://www.dosomething.org/webform/mobile-referral-form|http://www.dosomething.org/webform/mobile-referral-form|0||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:32:51 php2 dosomething: http://www.dosomething.org|1382729571|php|71.231.137.0|http://www.dosomething.org/webform/mobile-referral-form|http://www.dosomething.org/webform/mobile-referral-form|0||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:32:51 php2 dosomething: http://www.dosomething.org|1382729571|php|71.231.137.0|http://www.dosomething.org/webform/mobile-referral-form|http://www.dosomething.org/webform/mobile-referral-form|0||Notice: Undefined index: in webform_submission_data() (line 26 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/includes/webform.submissions.inc).
Oct 25 19:32:52 php2 dosomething: http://www.dosomething.org|1382729572|php|71.231.137.0|http://www.dosomething.org/webform/mobile-referral-form|http://www.dosomething.org/webform/mobile-referral-form|0||Notice: Undefined index: in webform_rules_rules_invoke_event() (line 122 of /var/www/jenkins-Deploy-413/sites/all/modules/webform_rules/webform_rules.module).
Oct 25 19:32:52 php2 dosomething: http://www.dosomething.org|1382729572|dosomething_subscribe_mailchimp|71.93.240.14|http://www.dosomething.org/campaign/join/731007|http://www.dosomething.org/campaign/join/731007|1454525||Cannot find List / Grouping ID for group named giveaspit2013
Oct 25 19:32:52 php2 dosomething: http://www.dosomething.org|1382729572|php|71.93.240.14|http://www.dosomething.org/campaign/join/731007|http://www.dosomething.org/campaign/join/731007|1454525||Notice: Undefined index: tags in dosomething_mandrill_mandrill_mail_alter() (line 327 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:32:52 php2 dosomething: http://www.dosomething.org|1382729572|php|71.93.240.14|http://www.dosomething.org/campaign/join/731007|http://www.dosomething.org/campaign/join/731007|1454525||Warning: array_merge(): Argument #2 is not an array in dosomething_mandrill_mandrill_mail_alter() (line 327 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:32:52 php2 dosomething: http://www.dosomething.org|1382729572|php|71.93.240.14|http://www.dosomething.org/campaign/join/731007|http://www.dosomething.org/campaign/join/731007|1454525||Notice: Undefined index: message in dosomething_mandrill_mandrill_mail_alter() (line 346 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:32:52 php2 dosomething: http://www.dosomething.org|1382729572|php|71.93.240.14|http://www.dosomething.org/campaign/join/731007|http://www.dosomething.org/campaign/join/731007|1454525||Warning: Invalid argument supplied for foreach() in dosomething_mandrill_mandrill_mail_alter() (line 346 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:32:52 php2 dosomething: http://www.dosomething.org|1382729572|php|71.93.240.14|http://www.dosomething.org/campaign/join/731007|http://www.dosomething.org/campaign/join/731007|1454525||Notice: Undefined index: merge_vars in dosomething_mandrill_mandrill_mail_alter() (line 365 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:32:52 php2 dosomething: http://www.dosomething.org|1382729572|php|71.93.240.14|http://www.dosomething.org/campaign/join/731007|http://www.dosomething.org/campaign/join/731007|1454525||Notice: Undefined index: merge_var_name in dosomething_mandrill_mandrill_mail_alter() (line 376 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:32:52 php2 dosomething: http://www.dosomething.org|1382729572|php|71.93.240.14|http://www.dosomething.org/campaign/join/731007|http://www.dosomething.org/campaign/join/731007|1454525||Notice: Undefined index: merge_var_content in dosomething_mandrill_mandrill_mail_alter() (line 377 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:32:52 php2 dosomething: http://www.dosomething.org|1382729572|php|71.93.240.14|http://www.dosomething.org/campaign/join/731007|http://www.dosomething.org/campaign/join/731007|1454525||Warning: array_merge(): Argument #1 is not an array in dosomething_mandrill_mandrill_mail_alter() (line 395 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:32:53 php2 dosomething: http://www.dosomething.org|1382729573|access denied|69.171.224.114|http://www.dosomething.org/files/styles/thumbnail/public/mm-logo.png?itok=tOZvLweG||0||files/styles/thumbnail/public/mm-logo.png
Oct 25 19:32:54 php2 dosomething: http://www.dosomething.org|1382729574|dosomething_mandrill|71.93.240.14|http://www.dosomething.org/campaign/join/731007|http://www.dosomething.org/campaign/join/731007|1454525||To: [email protected] - Key: spit13.
Oct 25 19:32:54 php2 dosomething: http://www.dosomething.org|1382729574|php|68.66.89.8|http://www.dosomething.org/user/1439647/complete-profile|http://www.dosomething.org/social-scholarship/gun-violence|1439647||Notice: Undefined index: locality in dosomething_user_my_somethings_preprocess_dosomething_profile_info() (line 618 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/features/dosomething_user_my_somethings/dosomething_user_my_somethings.module).
Oct 25 19:32:54 php2 dosomething: http://www.dosomething.org|1382729574|php|68.66.89.8|http://www.dosomething.org/user/1439647/complete-profile|http://www.dosomething.org/social-scholarship/gun-violence|1439647||Notice: Undefined index: administrative_area in dosomething_user_my_somethings_preprocess_dosomething_profile_info() (line 618 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/features/dosomething_user_my_somethings/dosomething_user_my_somethings.module).
Oct 25 19:32:55 php2 dosomething: http://www.dosomething.org|1382729575|php|68.66.89.8|http://www.dosomething.org/user/1439647/complete-profile|http://www.dosomething.org/social-scholarship/gun-violence|1439647||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:32:58 php2 dosomething: http://www.dosomething.org|1382729578|php|74.60.16.37|http://www.dosomething.org/user/929415/complete-profile|http://www.dosomething.org/grants|929415||Notice: Undefined index: locality in dosomething_user_my_somethings_preprocess_dosomething_profile_info() (line 618 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/features/dosomething_user_my_somethings/dosomething_user_my_somethings.module).
Oct 25 19:32:58 php2 dosomething: http://www.dosomething.org|1382729578|php|74.60.16.37|http://www.dosomething.org/user/929415/complete-profile|http://www.dosomething.org/grants|929415||Notice: Undefined index: administrative_area in dosomething_user_my_somethings_preprocess_dosomething_profile_info() (line 618 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/features/dosomething_user_my_somethings/dosomething_user_my_somethings.module).
Oct 25 19:32:58 php2 dosomething: http://www.dosomething.org|1382729578|php|74.60.16.37|http://www.dosomething.org/user/929415/complete-profile|http://www.dosomething.org/grants|929415||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:33:00 php2 dosomething: http://www.dosomething.org|1382729580|php|10.48.208.167|http://www.dosomething.org/||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:33:03 php2 dosomething: http://www.dosomething.org|1382729583|php|66.249.73.103|http://www.dosomething.org/user?destination=webform-submission/808136||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:33:05 php2 dosomething: http://www.dosomething.org|1382729585|php|66.249.73.103|http://www.dosomething.org/project/project-josh-and-friends||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:33:06 php2 dosomething: http://www.dosomething.org|1382729586|page not found|66.249.73.75|http://www.dosomething.org/club/conrad-weiser-high-school-dosomething-club-0||0||club/conrad-weiser-high-school-dosomething-club-0
Oct 25 19:33:06 php2 dosomething: http://www.dosomething.org|1382729586|opengraph_meta|66.249.73.75|http://www.dosomething.org/club/conrad-weiser-high-school-dosomething-club-0||0||Already output og:title
Oct 25 19:33:06 php2 dosomething: http://www.dosomething.org|1382729586|opengraph_meta|66.249.73.75|http://www.dosomething.org/club/conrad-weiser-high-school-dosomething-club-0||0||Already output og:description
Oct 25 19:33:06 php2 dosomething: http://www.dosomething.org|1382729586|opengraph_meta|66.249.73.75|http://www.dosomething.org/club/conrad-weiser-high-school-dosomething-club-0||0||Already output og:image
Oct 25 19:33:06 php2 dosomething: http://www.dosomething.org|1382729586|opengraph_meta|66.249.73.75|http://www.dosomething.org/club/conrad-weiser-high-school-dosomething-club-0||0||Already output og:url
Oct 25 19:33:06 php2 dosomething: http://www.dosomething.org|1382729586|opengraph_meta|66.249.73.75|http://www.dosomething.org/club/conrad-weiser-high-school-dosomething-club-0||0||Already output og:site_name
Oct 25 19:33:08 php2 dosomething: http://www.dosomething.org|1382729588|php|68.66.89.8|http://www.dosomething.org/user/1439647/edit|http://www.dosomething.org/user/1439647/complete-profile|1439647||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:33:14 php2 dosomething: http://www.dosomething.org|1382729594|opengraph_meta|66.249.73.103|http://www.dosomething.org/news/graphic-whats-biggest-problem-campus?xid=front-||0||Already output og:title
Oct 25 19:33:14 php2 dosomething: http://www.dosomething.org|1382729594|opengraph_meta|66.249.73.103|http://www.dosomething.org/news/graphic-whats-biggest-problem-campus?xid=front-||0||Already output og:description
Oct 25 19:33:14 php2 dosomething: http://www.dosomething.org|1382729594|opengraph_meta|66.249.73.103|http://www.dosomething.org/news/graphic-whats-biggest-problem-campus?xid=front-||0||Already output og:image
Oct 25 19:33:14 php2 dosomething: http://www.dosomething.org|1382729594|opengraph_meta|66.249.73.103|http://www.dosomething.org/news/graphic-whats-biggest-problem-campus?xid=front-||0||Already output og:type
Oct 25 19:33:14 php2 dosomething: http://www.dosomething.org|1382729594|opengraph_meta|66.249.73.103|http://www.dosomething.org/news/graphic-whats-biggest-problem-campus?xid=front-||0||Already output og:url
Oct 25 19:33:14 php2 dosomething: http://www.dosomething.org|1382729594|opengraph_meta|66.249.73.103|http://www.dosomething.org/news/graphic-whats-biggest-problem-campus?xid=front-||0||Already output og:site_name
Oct 25 19:33:18 php2 dosomething: http://www.dosomething.org|1382729598|php|71.93.240.14|http://www.dosomething.org/user/1454536/edit|http://www.dosomething.org/user/1454536/edit|1454536||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:33:22 php2 dosomething: http://www.dosomething.org|1382729602|php|66.249.73.103|http://www.dosomething.org/projects/cause?taxonomy_vocabulary_5_tid=All&page=6623||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:33:26 php2 dosomething: http://www.dosomething.org|1382729606|php|23.22.81.52|http://www.dosomething.org/user/registration?destination=projects%3Fpage%3D10||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:33:31 php2 dosomething: http://www.dosomething.org|1382729611|php|166.147.121.163|http://www.dosomething.org/awesome-things|http://www.dosomething.org/front|1454554||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:33:34 php2 dosomething: http://www.dosomething.org|1382729614|php|202.46.62.147|http://www.dosomething.org/project/break-silence-against-domestic-violence||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:33:36 php2 dosomething: http://www.dosomething.org|1382729616|php|23.22.81.52|http://www.dosomething.org/user?destination=webform-submission/2565079||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:33:38 php2 dosomething: http://www.dosomething.org|1382729618|php|71.93.240.14|http://www.dosomething.org/campaigns|http://www.dosomething.org/user/1454534/edit|1454534||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:33:40 php2 dosomething: http://www.dosomething.org|1382729620|php|71.93.240.14|http://www.dosomething.org/user/1454536/edit|http://www.dosomething.org/user/1454536/edit|1454536||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:33:46 php2 dosomething: http://www.dosomething.org|1382729626|php|66.249.73.103|http://www.dosomething.org/project/idaho-cathlic-youth-convention-icyc||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:33:47 php2 dosomething: http://www.dosomething.org|1382729627|php|66.249.73.103|http://www.dosomething.org/user?destination=webform-submission/784058||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:33:47 php2 dosomething: http://www.dosomething.org|1382729627|php|166.147.121.163|http://www.dosomething.org/scholarships|http://www.dosomething.org/awesome-things|1454554||Notice: Undefined index: mid-left in include() (line 56 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_panels/plugins/layouts/landings/dosomething-panels-landings.tpl.php).
Oct 25 19:33:47 php2 dosomething: http://www.dosomething.org|1382729627|php|166.147.121.163|http://www.dosomething.org/scholarships|http://www.dosomething.org/awesome-things|1454554||Notice: Undefined index: mid-center in include() (line 56 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_panels/plugins/layouts/landings/dosomething-panels-landings.tpl.php).
Oct 25 19:33:47 php2 dosomething: http://www.dosomething.org|1382729627|php|166.147.121.163|http://www.dosomething.org/scholarships|http://www.dosomething.org/awesome-things|1454554||Notice: Undefined index: mid-right in include() (line 56 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_panels/plugins/layouts/landings/dosomething-panels-landings.tpl.php).
Oct 25 19:33:48 php2 dosomething: http://www.dosomething.org|1382729628|php|166.147.121.163|http://www.dosomething.org/scholarships|http://www.dosomething.org/awesome-things|1454554||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:33:55 php2 dosomething: http://www.dosomething.org|1382729635|php|202.46.62.53|http://www.dosomething.org/project/camp-ready-child||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:33:57 php2 dosomething: http://www.dosomething.org|1382729637|php|71.93.240.14|http://www.dosomething.org/campaign/join/731098|http://www.dosomething.org/campaigns|1454534||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:33:57 php2 dosomething: http://www.dosomething.org|1382729637|php|66.249.73.103|http://www.dosomething.org/project/help-save-polar-bear||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:34:00 php2 dosomething: http://www.dosomething.org|1382729640|php|66.249.73.103|http://www.dosomething.org/project/invisible-children-fundraiser||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:34:10 php2 dosomething: http://www.dosomething.org|1382729650|php|66.249.73.103|http://www.dosomething.org/category/charity/biruh-tesfa-bright-future-project||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:34:12 php2 dosomething: http://www.dosomething.org|1382729652|dosomething_login|209.133.115.210|http://www.dosomething.org/user/registration?destination=front|http://www.dosomething.org/user/registration|0||cell = 6479829585 opt_in = 87681 response = stdClass Object#012(#012 [request] => POST /profiles/join HTTP/1.0#015#012Content-type: application/x-www-form-urlencoded#015#012Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8#015#012User-Agent: Drupal (+http://drupal.org/)#015#012Host: dosomething.mcommons.com#015#012Content-Length: 44#015#012#015#012person[phone]=6479829585&opt_in_path[]=87681#012 [data] => This program only accepts sign ups from United States#012 [protocol] => HTTP/1.1#012 [status_message] => Internal Server Error#012 [headers] => Array#012 (#012 [date] => Fri, 25 Oct 2013 19:34:12 GMT#012 [server] => Apache#012 [x-runtime] => 4#012 [cache-control] => max-age=0, private, no-store, no-cache#012 [x-powered-by] => Phusion Passenger 4.0.10#012 [content-length] => 53#012 [status] => 500 Internal Server Error#012 [vary] => Accept-Encoding#012 [content-type] => text/html; charset=utf-8#012 [via] => 1.0 https-proxy#012 [connection] => close#012 )#012#012 [code] => 500#012 [error] => Internal Server Error#012)
Oct 25 19:34:12 php2 dosomething: http://www.dosomething.org|1382729652|user|209.133.115.210|http://www.dosomething.org/user/registration?destination=front|http://www.dosomething.org/user/registration|1454556||Session opened for Brenda Demers.
Oct 25 19:34:12 php2 dosomething: http://www.dosomething.org|1382729652|php|209.133.115.210|http://www.dosomething.org/user/registration?destination=front|http://www.dosomething.org/user/registration|1454556||Notice: Undefined index: und in _dosomething_login_prepare_member() (line 1273 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_login/dosomething_login.module).
Oct 25 19:34:12 php2 dosomething: http://www.dosomething.org|1382729652|php|209.133.115.210|http://www.dosomething.org/user/registration?destination=front|http://www.dosomething.org/user/registration|1454556||Notice: Undefined index: und in _dosomething_login_prepare_member() (line 1285 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_login/dosomething_login.module).
Oct 25 19:34:12 php2 dosomething: http://www.dosomething.org|1382729652|php|209.133.115.210|http://www.dosomething.org/user/registration?destination=front|http://www.dosomething.org/user/registration|1454556||Warning: Invalid argument supplied for foreach() in _dosomething_login_prepare_member() (line 1285 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_login/dosomething_login.module).
Oct 25 19:34:12 php2 dosomething: http://www.dosomething.org|1382729652|dsapi|209.133.115.210|http://www.dosomething.org/user/registration?destination=front|http://www.dosomething.org/user/registration|1454556||User #1454556 was not posted API endpoint exception 'Exception' with message 'SSL certificate problem, verify that the CA cert is OK. Details:#012error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed' in /var/www/jenkins-Deploy-413/sites/all/libraries/dsapi/lib/DSAPI/Request.php:111#012Stack trace:#012#0 /var/www/jenkins-Deploy-413/sites/all/libraries/dsapi/lib/DSAPI/Request.php(155): Request->_call()#012#1 /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_login/dosomething_login.module(1192): Request->post('users', Array)#012#2 /var/www/jenkins-Deploy-413/includes/form.inc(1464): dosomething_login_register_block_submit(Array, Array)#012#3 /var/www/jenkins-Deploy-413/includes/form.inc(860): form_execute_handlers('submit', Array, Array)#012#4 /var/www/jenkins-Deploy-413/includes/form.inc(374): drupal_process_form('dosomething_log...', Array, Array)#012#5 /var/www/jenkins-Deploy-413/includes/form.inc(131): drupal_build_form('dosomething_log...', Array)#012#6 /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_login/dosomething_login.module(96): drupal_get_form('dosomething_log...', false)#012#7 [internal function]: dosomething_login_page_user_registration()#012#8 /var/www/jenkins-Deploy-413/includes/menu.inc(517): call_user_func_array('dosomething_log...', Array)#012#9 /var/www/jenkins-Deploy-413/index.php(21): menu_execute_active_handler()#012#10 {main}
Oct 25 19:34:14 php2 dosomething: http://www.dosomething.org|1382729654|php|66.249.73.75|http://www.dosomething.org/user/registration?destination=blog/chatterbox/blog/check-out-our-new-do%3Ffield_blog_type_tid%3DAll%26taxonomy_vocabulary_5_tid%3D29%26page%3D4||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:34:16 php2 dosomething: http://www.dosomething.org|1382729656|php|23.22.81.52|http://www.dosomething.org/user?destination=webform-submission/725432||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:34:23 php2 dosomething: http://www.dosomething.org|1382729663|php|71.93.240.14|http://www.dosomething.org/user/1454536/edit/main|http://www.dosomething.org/user/1454536/complete-profile|1454536||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:34:26 php2 dosomething: http://www.dosomething.org|1382729666|php|10.105.19.125|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1450633||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:34:26 php2 dosomething: http://www.dosomething.org|1382729666|php|10.105.19.125|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1450633||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:34:26 php2 dosomething: http://www.dosomething.org|1382729666|php|10.105.19.125|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1450633||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:34:26 php2 dosomething: http://www.dosomething.org|1382729666|php|10.105.19.125|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1450633||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:34:26 php2 dosomething: http://www.dosomething.org|1382729666|php|10.105.19.125|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1450633||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:34:26 php2 dosomething: http://www.dosomething.org|1382729666|php|10.105.19.125|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1450633||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:34:26 php2 dosomething: http://www.dosomething.org|1382729666|php|10.105.19.125|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1450633||Notice: Undefined index: in webform_submission_data() (line 26 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/includes/webform.submissions.inc).
Oct 25 19:34:26 php2 dosomething: http://www.dosomething.org|1382729666|php|10.105.19.125|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1450633||Notice: Undefined index: in webform_rules_rules_invoke_event() (line 122 of /var/www/jenkins-Deploy-413/sites/all/modules/webform_rules/webform_rules.module).
Oct 25 19:34:26 php2 dosomething: http://www.dosomething.org|1382729666|php|10.105.19.125|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1450633||Notice: Undefined index: in _webform_filter_values() (line 2953 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:34:26 php2 dosomething: http://www.dosomething.org|1382729666|php|10.105.19.125|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1450633||Notice: Undefined index: in webform_component_include() (line 3527 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:34:28 php2 dosomething: http://www.dosomething.org|1382729668|php|71.93.240.14|http://www.dosomething.org/user/1454548/edit/main|http://www.dosomething.org/user/1454548/complete-profile|1454548||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:34:32 php2 dosomething: http://www.dosomething.org|1382729672|php|98.236.75.216|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1453367||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:34:32 php2 dosomething: http://www.dosomething.org|1382729672|php|98.236.75.216|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1453367||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:34:32 php2 dosomething: http://www.dosomething.org|1382729672|php|98.236.75.216|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1453367||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:34:32 php2 dosomething: http://www.dosomething.org|1382729672|php|98.236.75.216|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1453367||Warning: Invalid argument supplied for foreach() in _webform_entity_fieldset_storage() (line 593 of /var/www/jenkins-Deploy-413/sites/all/modules/webform_entity/webform_entity.module).
Oct 25 19:34:32 php2 dosomething: http://www.dosomething.org|1382729672|php|98.236.75.216|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1453367||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:34:32 php2 dosomething: http://www.dosomething.org|1382729672|php|98.236.75.216|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1453367||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:34:32 php2 dosomething: http://www.dosomething.org|1382729672|php|98.236.75.216|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1453367||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:34:32 php2 dosomething: http://www.dosomething.org|1382729672|php|98.236.75.216|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1453367||Notice: Undefined index: in webform_submission_data() (line 26 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/includes/webform.submissions.inc).
Oct 25 19:34:32 php2 dosomething: http://www.dosomething.org|1382729672|php|98.236.75.216|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1453367||Notice: Undefined index: in webform_rules_rules_invoke_event() (line 122 of /var/www/jenkins-Deploy-413/sites/all/modules/webform_rules/webform_rules.module).
Oct 25 19:34:32 php2 dosomething: http://www.dosomething.org|1382729672|php|98.236.75.216|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1453367||Notice: Undefined index: in _webform_filter_values() (line 2953 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:34:32 php2 dosomething: http://www.dosomething.org|1382729672|php|98.236.75.216|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1453367||Notice: Undefined index: in webform_component_include() (line 3527 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:34:38 php2 dosomething: http://www.dosomething.org|1382729678|user|63.119.93.220|http://www.dosomething.org/user/login?destination=node/731029|http://www.dosomething.org/user/login?destination=node/731029|0||Login attempt failed for [email protected].
Oct 25 19:34:38 php2 dosomething: http://www.dosomething.org|1382729678|php|63.119.93.220|http://www.dosomething.org/user/login?destination=node/731029|http://www.dosomething.org/user/login?destination=node/731029|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:34:41 php2 dosomething: http://www.dosomething.org|1382729681|php|98.236.75.216|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1453367||Notice: Undefined index: in webform_submission_data() (line 26 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/includes/webform.submissions.inc).
Oct 25 19:34:41 php2 dosomething: http://www.dosomething.org|1382729681|php|98.236.75.216|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1453367||Notice: Undefined index: in webform_rules_rules_invoke_event() (line 122 of /var/www/jenkins-Deploy-413/sites/all/modules/webform_rules/webform_rules.module).
Oct 25 19:34:41 php2 dosomething: http://www.dosomething.org|1382729681|php|98.236.75.216|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1453367||Notice: Undefined index: in _webform_filter_values() (line 2953 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:34:41 php2 dosomething: http://www.dosomething.org|1382729681|php|98.236.75.216|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1453367||Notice: Undefined index: in webform_component_include() (line 3527 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:34:44 php2 dosomething: http://www.dosomething.org|1382729684|php|10.105.19.125|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1450633||Notice: Undefined index: in webform_submission_data() (line 26 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/includes/webform.submissions.inc).
Oct 25 19:34:44 php2 dosomething: http://www.dosomething.org|1382729684|php|10.105.19.125|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1450633||Notice: Undefined index: in webform_rules_rules_invoke_event() (line 122 of /var/www/jenkins-Deploy-413/sites/all/modules/webform_rules/webform_rules.module).
Oct 25 19:34:44 php2 dosomething: http://www.dosomething.org|1382729684|php|10.105.19.125|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1450633||Notice: Undefined index: in _webform_filter_values() (line 2953 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:34:44 php2 dosomething: http://www.dosomething.org|1382729684|php|10.105.19.125|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1450633||Notice: Undefined index: in webform_component_include() (line 3527 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:34:45 php2 dosomething: http://www.dosomething.org|1382729685|php|71.93.240.14|http://www.dosomething.org/grants/contact-me|http://www.dosomething.org/grants|1454538||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:34:45 php2 dosomething: http://www.dosomething.org|1382729685|php|71.93.240.14|http://www.dosomething.org/grants/contact-me|http://www.dosomething.org/grants|1454538||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:34:45 php2 dosomething: http://www.dosomething.org|1382729685|php|71.93.240.14|http://www.dosomething.org/grants/contact-me|http://www.dosomething.org/grants|1454538||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:34:45 php2 dosomething: http://www.dosomething.org|1382729685|php|71.93.240.14|http://www.dosomething.org/grants/contact-me|http://www.dosomething.org/grants|1454538||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:34:45 php2 dosomething: http://www.dosomething.org|1382729685|php|71.93.240.14|http://www.dosomething.org/grants/contact-me|http://www.dosomething.org/grants|1454538||Notice: Undefined index: in webform_submission_data() (line 26 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/includes/webform.submissions.inc).
Oct 25 19:34:45 php2 dosomething: http://www.dosomething.org|1382729685|php|71.93.240.14|http://www.dosomething.org/grants/contact-me|http://www.dosomething.org/grants|1454538||Notice: Undefined index: in webform_rules_rules_invoke_event() (line 122 of /var/www/jenkins-Deploy-413/sites/all/modules/webform_rules/webform_rules.module).
Oct 25 19:34:47 php2 dosomething: http://www.dosomething.org|1382729687|opengraph_meta|54.227.49.251|http://www.dosomething.org/grants/seed-grants?sid=2603753||0||Already output og:title
Oct 25 19:34:47 php2 dosomething: http://www.dosomething.org|1382729687|opengraph_meta|54.227.49.251|http://www.dosomething.org/grants/seed-grants?sid=2603753||0||Already output og:description
Oct 25 19:34:47 php2 dosomething: http://www.dosomething.org|1382729687|opengraph_meta|54.227.49.251|http://www.dosomething.org/grants/seed-grants?sid=2603753||0||Already output og:image
Oct 25 19:34:47 php2 dosomething: http://www.dosomething.org|1382729687|opengraph_meta|54.227.49.251|http://www.dosomething.org/grants/seed-grants?sid=2603753||0||Already output og:type
Oct 25 19:34:47 php2 dosomething: http://www.dosomething.org|1382729687|opengraph_meta|54.227.49.251|http://www.dosomething.org/grants/seed-grants?sid=2603753||0||Already output og:url
Oct 25 19:34:47 php2 dosomething: http://www.dosomething.org|1382729687|opengraph_meta|54.227.49.251|http://www.dosomething.org/grants/seed-grants?sid=2603753||0||Already output og:site_name
Oct 25 19:34:49 php2 dosomething: http://www.dosomething.org|1382729689|php|71.93.240.14|http://www.dosomething.org/|http://www.dosomething.org/spit|1454525||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:34:51 php2 dosomething: http://www.dosomething.org|1382729691|php|98.109.191.104|http://www.dosomething.org/||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:34:52 php2 dosomething: http://www.dosomething.org|1382729692|php|71.93.240.14|http://www.dosomething.org/user/1454536/edit/main|http://www.dosomething.org/user/1454536/edit/main|1454536||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:35:06 php2 dosomething: http://www.dosomething.org|1382729706|opengraph_meta|54.224.189.70|http://www.dosomething.org/news/graphic-whats-biggest-problem-campus||0||Already output og:title
Oct 25 19:35:06 php2 dosomething: http://www.dosomething.org|1382729706|opengraph_meta|54.224.189.70|http://www.dosomething.org/news/graphic-whats-biggest-problem-campus||0||Already output og:description
Oct 25 19:35:06 php2 dosomething: http://www.dosomething.org|1382729706|opengraph_meta|54.224.189.70|http://www.dosomething.org/news/graphic-whats-biggest-problem-campus||0||Already output og:image
Oct 25 19:35:06 php2 dosomething: http://www.dosomething.org|1382729706|opengraph_meta|54.224.189.70|http://www.dosomething.org/news/graphic-whats-biggest-problem-campus||0||Already output og:type
Oct 25 19:35:06 php2 dosomething: http://www.dosomething.org|1382729706|opengraph_meta|54.224.189.70|http://www.dosomething.org/news/graphic-whats-biggest-problem-campus||0||Already output og:url
Oct 25 19:35:06 php2 dosomething: http://www.dosomething.org|1382729706|opengraph_meta|54.224.189.70|http://www.dosomething.org/news/graphic-whats-biggest-problem-campus||0||Already output og:site_name
Oct 25 19:35:07 php2 dosomething: http://www.dosomething.org|1382729707|access denied|157.55.32.184|http://www.dosomething.org/print/print/project/save-planet-1||0||print/print/project/save-planet-1
Oct 25 19:35:22 php2 dosomething: http://www.dosomething.org|1382729722|php|66.249.73.103|http://www.dosomething.org/project/invisible-children-benefit-concert-2||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:35:28 php2 dosomething: http://www.dosomething.org|1382729728|php|71.93.240.14|http://www.dosomething.org/about|http://www.dosomething.org/user/1454546/edit|1454546||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:35:33 php2 dosomething: http://www.dosomething.org|1382729733|access denied|131.253.36.206|http://www.dosomething.org/files/styles/blog_landscape/public/pictures/actionguide/adrianchinadaily.comcn.jpg%3Fitok%3DhtXPY5jg|http://freedownloadmovies.tv/biography/Grenier,_Adrian|0||files/styles/blog_landscape/public/pictures/actionguide/adrianchinadaily.comcn.jpg?itok=htXPY5jg
Oct 25 19:35:39 php2 dosomething: http://www.dosomething.org|1382729739|php|65.55.218.41|http://www.dosomething.org/user/login?destination=files/styles/blog_landscape/public/pictures/actionguide/adrianchinadaily.comcn.jpg%3Fitok%3DhtXPY5jg|http://freedownloadmovies.tv/biography/Grenier,_Adrian|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:35:41 php2 dosomething: http://www.dosomething.org|1382729741|opengraph_meta|66.249.73.103|http://www.dosomething.org/node/463683||0||Already output og:title
Oct 25 19:35:41 php2 dosomething: http://www.dosomething.org|1382729741|opengraph_meta|66.249.73.103|http://www.dosomething.org/node/463683||0||Already output og:description
Oct 25 19:35:41 php2 dosomething: http://www.dosomething.org|1382729741|opengraph_meta|66.249.73.103|http://www.dosomething.org/node/463683||0||Already output og:image
Oct 25 19:35:41 php2 dosomething: http://www.dosomething.org|1382729741|opengraph_meta|66.249.73.103|http://www.dosomething.org/node/463683||0||Already output og:type
Oct 25 19:35:41 php2 dosomething: http://www.dosomething.org|1382729741|opengraph_meta|66.249.73.103|http://www.dosomething.org/node/463683||0||Already output og:url
Oct 25 19:35:41 php2 dosomething: http://www.dosomething.org|1382729741|opengraph_meta|66.249.73.103|http://www.dosomething.org/node/463683||0||Already output og:site_name
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: type in _webform_components_tree_build() (line 3420 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_client_form_rule_check() (line 2072 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: extra in _webform_client_form_rule_check() (line 2107 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: cid in _webform_client_form_add_component() (line 2145 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: type in _webform_client_form_add_component() (line 2151 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: in webform_component_include() (line 3527 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined index: form_key in _webform_client_form_add_component() (line 2207 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Warning: Missing argument 3 for flag_entity_view() in flag_entity_view() (line 915 of /var/www/jenkins-Deploy-413/sites/all/modules/flag/flag.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Warning: Missing argument 4 for flag_entity_view() in flag_entity_view() (line 915 of /var/www/jenkins-Deploy-413/sites/all/modules/flag/flag.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Undefined variable: view_mode in flag_entity_view() (line 916 of /var/www/jenkins-Deploy-413/sites/all/modules/flag/flag.module).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Warning: Missing argument 3 for rules_entity_view() in rules_entity_view() (line 38 of /var/www/jenkins-Deploy-413/sites/all/modules/rules/modules/events.inc).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Warning: Missing argument 4 for rules_entity_view() in rules_entity_view() (line 38 of /var/www/jenkins-Deploy-413/sites/all/modules/rules/modules/events.inc).
Oct 25 19:35:42 php2 dosomething: http://www.dosomething.org|1382729742|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Trying to get property of non-object in dosomething_grant_judging_grant_judging_form_content_type_render() (line 43 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_grant_judging/plugins/content_types/grant_judging_form.inc).
Oct 25 19:35:43 php2 dosomething: http://www.dosomething.org|1382729743|php|207.110.19.130|http://www.dosomething.org/application/2581678|http://www.dosomething.org/applications|544311||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:35:45 php2 dosomething: http://www.dosomething.org|1382729745|php|66.249.73.103|http://www.dosomething.org/project/cans-plans-race-weekend||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:35:46 php2 dosomething: http://www.dosomething.org|1382729746|php|72.135.21.133|http://www.dosomething.org/user/1420193/edit|http://www.dosomething.org/user/1420193/edit/main|1420193||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:35:48 php2 dosomething: http://www.dosomething.org|1382729748|php|23.22.81.52|http://www.dosomething.org/webform-submission/2588792||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:35:48 php2 dosomething: http://www.dosomething.org|1382729748|page not found|66.249.73.212|http://www.dosomething.org/webform-submission/1351320||0||webform-submission/1351320
Oct 25 19:35:49 php2 dosomething: http://www.dosomething.org|1382729749|opengraph_meta|66.249.73.212|http://www.dosomething.org/webform-submission/1351320||0||Already output og:title
Oct 25 19:35:49 php2 dosomething: http://www.dosomething.org|1382729749|opengraph_meta|66.249.73.212|http://www.dosomething.org/webform-submission/1351320||0||Already output og:description
Oct 25 19:35:49 php2 dosomething: http://www.dosomething.org|1382729749|opengraph_meta|66.249.73.212|http://www.dosomething.org/webform-submission/1351320||0||Already output og:image
Oct 25 19:35:49 php2 dosomething: http://www.dosomething.org|1382729749|opengraph_meta|66.249.73.212|http://www.dosomething.org/webform-submission/1351320||0||Already output og:url
Oct 25 19:35:49 php2 dosomething: http://www.dosomething.org|1382729749|opengraph_meta|66.249.73.212|http://www.dosomething.org/webform-submission/1351320||0||Already output og:site_name
Oct 25 19:35:51 php2 dosomething: http://www.dosomething.org|1382729751|php|127.0.0.1|http://www.dosomething.org/project/my-teen-pregnancy-blog||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:35:53 php2 dosomething: http://www.dosomething.org|1382729753|php|202.46.48.47|http://www.dosomething.org/project/bully||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:35:59 php2 dosomething: http://www.dosomething.org|1382729759|opengraph_meta|66.249.73.103|http://www.dosomething.org/blog/celebsgonegood/quote-day-nick-lachey?what=&who=&where=&how=13&submit=search||0||Already output og:title
Oct 25 19:35:59 php2 dosomething: http://www.dosomething.org|1382729759|opengraph_meta|66.249.73.103|http://www.dosomething.org/blog/celebsgonegood/quote-day-nick-lachey?what=&who=&where=&how=13&submit=search||0||Already output og:description
Oct 25 19:35:59 php2 dosomething: http://www.dosomething.org|1382729759|opengraph_meta|66.249.73.103|http://www.dosomething.org/blog/celebsgonegood/quote-day-nick-lachey?what=&who=&where=&how=13&submit=search||0||Already output og:image
Oct 25 19:35:59 php2 dosomething: http://www.dosomething.org|1382729759|opengraph_meta|66.249.73.103|http://www.dosomething.org/blog/celebsgonegood/quote-day-nick-lachey?what=&who=&where=&how=13&submit=search||0||Already output og:type
Oct 25 19:35:59 php2 dosomething: http://www.dosomething.org|1382729759|opengraph_meta|66.249.73.103|http://www.dosomething.org/blog/celebsgonegood/quote-day-nick-lachey?what=&who=&where=&how=13&submit=search||0||Already output og:url
Oct 25 19:35:59 php2 dosomething: http://www.dosomething.org|1382729759|opengraph_meta|66.249.73.103|http://www.dosomething.org/blog/celebsgonegood/quote-day-nick-lachey?what=&who=&where=&how=13&submit=search||0||Already output og:site_name
Oct 25 19:36:00 php2 dosomething: http://www.dosomething.org|1382729760|dosomething_campaign|75.83.96.236|http://www.dosomething.org/campaign/join/731105|http://www.dosomething.org/campaign/join/731105|1451212||cell = 9516097283 opt_in = 162159 response = stdClass Object#012(#012 [request] => POST /profiles/join HTTP/1.0#015#012Content-type: application/x-www-form-urlencoded#015#012Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8#015#012User-Agent: Drupal (+http://drupal.org/)#015#012Host: dosomething.mcommons.com#015#012Content-Length: 95#015#012#015#012person[phone]=9516097283&opt_in_path[]=162159&person[first_name]=LESLIE&person[last_name]=AVINA#012 [data] => OK! (To have your browser automatically redirect, add a well-formed redirect_to= parameter to your post)#012 [protocol] => HTTP/1.1#012 [status_message] => OK#012 [headers] => Array#012 (#012 [date] => Fri, 25 Oct 2013 19:36:00 GMT#012 [server] => Apache#012 [etag] => "230fd63b57db094625b6e49be22fba98"#012 [x-runtime] => 6#012 [cache-control] => max-age=0, private, no-store, no-cache#012 [x-powered-by] => Phusion Passenger 4.0.10#012 [content-length] => 104#012 [status] => 200 OK#012 [vary] => Accept-Encoding#012 [content-type] => text/html; charset=utf-8#012 [via] => 1.0 https-proxy#012 [connection] => close#012 )#012#012 [code] => 200#012)
Oct 25 19:36:00 php2 dosomething: http://www.dosomething.org|1382729760|php|75.83.96.236|http://www.dosomething.org/campaign/join/731105|http://www.dosomething.org/campaign/join/731105|1451212||Notice: Undefined index: tags in dosomething_mandrill_mandrill_mail_alter() (line 327 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:36:00 php2 dosomething: http://www.dosomething.org|1382729760|php|75.83.96.236|http://www.dosomething.org/campaign/join/731105|http://www.dosomething.org/campaign/join/731105|1451212||Warning: array_merge(): Argument #2 is not an array in dosomething_mandrill_mandrill_mail_alter() (line 327 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:36:00 php2 dosomething: http://www.dosomething.org|1382729760|php|75.83.96.236|http://www.dosomething.org/campaign/join/731105|http://www.dosomething.org/campaign/join/731105|1451212||Notice: Undefined index: message in dosomething_mandrill_mandrill_mail_alter() (line 346 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:36:00 php2 dosomething: http://www.dosomething.org|1382729760|php|75.83.96.236|http://www.dosomething.org/campaign/join/731105|http://www.dosomething.org/campaign/join/731105|1451212||Warning: Invalid argument supplied for foreach() in dosomething_mandrill_mandrill_mail_alter() (line 346 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:36:00 php2 dosomething: http://www.dosomething.org|1382729760|php|75.83.96.236|http://www.dosomething.org/campaign/join/731105|http://www.dosomething.org/campaign/join/731105|1451212||Notice: Undefined index: merge_vars in dosomething_mandrill_mandrill_mail_alter() (line 365 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:36:00 php2 dosomething: http://www.dosomething.org|1382729760|php|75.83.96.236|http://www.dosomething.org/campaign/join/731105|http://www.dosomething.org/campaign/join/731105|1451212||Notice: Undefined index: merge_var_name in dosomething_mandrill_mandrill_mail_alter() (line 376 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:36:00 php2 dosomething: http://www.dosomething.org|1382729760|php|75.83.96.236|http://www.dosomething.org/campaign/join/731105|http://www.dosomething.org/campaign/join/731105|1451212||Notice: Undefined index: merge_var_content in dosomething_mandrill_mandrill_mail_alter() (line 377 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:36:00 php2 dosomething: http://www.dosomething.org|1382729760|php|75.83.96.236|http://www.dosomething.org/campaign/join/731105|http://www.dosomething.org/campaign/join/731105|1451212||Warning: array_merge(): Argument #1 is not an array in dosomething_mandrill_mandrill_mail_alter() (line 395 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:36:02 php2 dosomething: http://www.dosomething.org|1382729762|dosomething_mandrill|75.83.96.236|http://www.dosomething.org/campaign/join/731105|http://www.dosomething.org/campaign/join/731105|1451212||To: [email protected] - Key: GGWired13.
Oct 25 19:36:03 php2 dosomething: http://www.dosomething.org|1382729763|php|68.66.89.8|http://www.dosomething.org/campaign/join/731029|http://www.dosomething.org/campaigns|1439647||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:36:03 php2 dosomething: http://www.dosomething.org|1382729763|php|208.115.113.83|http://www.dosomething.org/user/login?destination=blog/celebsgonegood/jessica-alba%C3%A2%E2%82%AC%E2%84%A2s-style-ethics%3Ffield_blog_type_tid%3DAll%26taxonomy_vocabulary_5_tid%3DAll%26page%3D20||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: type in _webform_components_tree_build() (line 3420 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_client_form_rule_check() (line 2072 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: extra in _webform_client_form_rule_check() (line 2107 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: cid in _webform_client_form_add_component() (line 2145 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: type in _webform_client_form_add_component() (line 2151 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: in webform_component_include() (line 3527 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: form_key in _webform_client_form_add_component() (line 2207 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Warning: Missing argument 3 for flag_entity_view() in flag_entity_view() (line 915 of /var/www/jenkins-Deploy-413/sites/all/modules/flag/flag.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Warning: Missing argument 4 for flag_entity_view() in flag_entity_view() (line 915 of /var/www/jenkins-Deploy-413/sites/all/modules/flag/flag.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined variable: view_mode in flag_entity_view() (line 916 of /var/www/jenkins-Deploy-413/sites/all/modules/flag/flag.module).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Warning: Missing argument 3 for rules_entity_view() in rules_entity_view() (line 38 of /var/www/jenkins-Deploy-413/sites/all/modules/rules/modules/events.inc).
Oct 25 19:36:07 php2 dosomething: http://www.dosomething.org|1382729767|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Warning: Missing argument 4 for rules_entity_view() in rules_entity_view() (line 38 of /var/www/jenkins-Deploy-413/sites/all/modules/rules/modules/events.inc).
Oct 25 19:36:08 php2 dosomething: http://www.dosomething.org|1382729768|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Trying to get property of non-object in dosomething_grant_judging_grant_judging_form_content_type_render() (line 43 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_grant_judging/plugins/content_types/grant_judging_form.inc).
Oct 25 19:36:08 php2 dosomething: http://www.dosomething.org|1382729768|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:36:12 php2 dosomething: http://www.dosomething.org|1382729772|page not found|66.249.73.103|http://www.dosomething.org/www.wildmanpictures.com||0||www.wildmanpictures.com
Oct 25 19:36:12 php2 dosomething: http://www.dosomething.org|1382729772|opengraph_meta|66.249.73.103|http://www.dosomething.org/www.wildmanpictures.com||0||Already output og:title
Oct 25 19:36:12 php2 dosomething: http://www.dosomething.org|1382729772|opengraph_meta|66.249.73.103|http://www.dosomething.org/www.wildmanpictures.com||0||Already output og:description
Oct 25 19:36:12 php2 dosomething: http://www.dosomething.org|1382729772|opengraph_meta|66.249.73.103|http://www.dosomething.org/www.wildmanpictures.com||0||Already output og:image
Oct 25 19:36:12 php2 dosomething: http://www.dosomething.org|1382729772|opengraph_meta|66.249.73.103|http://www.dosomething.org/www.wildmanpictures.com||0||Already output og:url
Oct 25 19:36:12 php2 dosomething: http://www.dosomething.org|1382729772|opengraph_meta|66.249.73.103|http://www.dosomething.org/www.wildmanpictures.com||0||Already output og:site_name
Oct 25 19:36:14 php2 dosomething: http://www.dosomething.org|1382729774|php|208.115.113.83|http://www.dosomething.org/user/login?destination=blog/celebsgonegood/nominee-profile-matt-damon%3Cbr%20/%E2%80%9D%3Ffield_blog_type_tid%3DAll%26taxonomy_vocabulary_5_tid%3DAll%26page%3D35||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:36:16 php2 dosomething: http://www.dosomething.org|1382729776|php|23.22.81.52|http://www.dosomething.org/user?destination=webform-submission/2592230||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:36:19 php2 dosomething: http://www.dosomething.org|1382729779|user|198.236.64.22|http://www.dosomething.org/user/login?destination=node/731029|http://www.dosomething.org/user/login?destination=node/731029|0||Login attempt failed for [email protected].
Oct 25 19:36:20 php2 dosomething: http://www.dosomething.org|1382729780|php|198.236.64.22|http://www.dosomething.org/user/login?destination=node/731029|http://www.dosomething.org/user/login?destination=node/731029|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: type in _webform_components_tree_build() (line 3420 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_client_form_rule_check() (line 2072 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: extra in _webform_client_form_rule_check() (line 2107 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: cid in _webform_client_form_add_component() (line 2145 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: type in _webform_client_form_add_component() (line 2151 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: in webform_component_include() (line 3527 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined index: form_key in _webform_client_form_add_component() (line 2207 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Warning: Missing argument 3 for flag_entity_view() in flag_entity_view() (line 915 of /var/www/jenkins-Deploy-413/sites/all/modules/flag/flag.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Warning: Missing argument 4 for flag_entity_view() in flag_entity_view() (line 915 of /var/www/jenkins-Deploy-413/sites/all/modules/flag/flag.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Undefined variable: view_mode in flag_entity_view() (line 916 of /var/www/jenkins-Deploy-413/sites/all/modules/flag/flag.module).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Warning: Missing argument 3 for rules_entity_view() in rules_entity_view() (line 38 of /var/www/jenkins-Deploy-413/sites/all/modules/rules/modules/events.inc).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Warning: Missing argument 4 for rules_entity_view() in rules_entity_view() (line 38 of /var/www/jenkins-Deploy-413/sites/all/modules/rules/modules/events.inc).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Trying to get property of non-object in dosomething_grant_judging_grant_judging_form_content_type_render() (line 43 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_grant_judging/plugins/content_types/grant_judging_form.inc).
Oct 25 19:36:22 php2 dosomething: http://www.dosomething.org|1382729782|php|207.110.19.130|http://www.dosomething.org/application/2597016|http://www.dosomething.org/applications|544311||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:36:25 php2 dosomething: http://www.dosomething.org|1382729785|php|66.249.73.103|http://www.dosomething.org/project/i-support-my-girls||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:36:29 php2 dosomething: http://www.dosomething.org|1382729789|filter|165.24.201.178|http://www.dosomething.org/cause/physical-and-mental-health|http://www.dosomething.org/actnow/tipsandtools/terms-you-should-know-about-eating-disorders|0||Missing text format: 2.
Oct 25 19:36:29 php2 dosomething: http://www.dosomething.org|1382729789|php|165.24.201.178|http://www.dosomething.org/cause/physical-and-mental-health|http://www.dosomething.org/actnow/tipsandtools/terms-you-should-know-about-eating-disorders|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:36:35 php2 dosomething: http://www.dosomething.org|1382729795|php|66.249.73.103|http://www.dosomething.org/taxonomy/term/2364||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:36:37 php2 dosomething: http://www.dosomething.org|1382729797|php|208.115.113.83|http://www.dosomething.org/user/login?destination=blog/celebsgonegood/www.twitter.com/%E2%80%9D%3Ffield_blog_type_tid%3DAll%26taxonomy_vocabulary_5_tid%3DAll%26page%3D221||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:36:48 php2 dosomething: http://www.dosomething.org|1382729808|user|127.0.0.1|http://www.dosomething.org/rest/user/login.json?1382729808||0||Invalid login attempt for [email protected].
Oct 25 19:36:48 php2 dosomething: http://www.dosomething.org|1382729808|user|127.0.0.1|http://www.dosomething.org/rest/user/login.json?1382729808||1454525||Session opened for Braulio Gamboa.
Oct 25 19:36:48 php2 dosomething: http://www.dosomething.org|1382729808|user|205.201.197.148|http://www.dosomething.org/user/login?destination=node/718484|http://www.dosomething.org/user/login?destination=node/718484|0||Login attempt failed for Ethan Bryce Hansen.
Oct 25 19:36:48 php2 dosomething: http://www.dosomething.org|1382729808|php|205.201.197.148|http://www.dosomething.org/user/login?destination=node/718484|http://www.dosomething.org/user/login?destination=node/718484|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:36:53 php2 dosomething: http://www.dosomething.org|1382729813|opengraph_meta|71.93.240.14|http://www.dosomething.org/scholarships/opportunities?sid=2603759|http://www.dosomething.org/scholarships|1454546||Already output og:title
Oct 25 19:36:53 php2 dosomething: http://www.dosomething.org|1382729813|opengraph_meta|71.93.240.14|http://www.dosomething.org/scholarships/opportunities?sid=2603759|http://www.dosomething.org/scholarships|1454546||Already output og:description
Oct 25 19:36:53 php2 dosomething: http://www.dosomething.org|1382729813|opengraph_meta|71.93.240.14|http://www.dosomething.org/scholarships/opportunities?sid=2603759|http://www.dosomething.org/scholarships|1454546||Already output og:image
Oct 25 19:36:53 php2 dosomething: http://www.dosomething.org|1382729813|opengraph_meta|71.93.240.14|http://www.dosomething.org/scholarships/opportunities?sid=2603759|http://www.dosomething.org/scholarships|1454546||Already output og:url
Oct 25 19:36:53 php2 dosomething: http://www.dosomething.org|1382729813|opengraph_meta|71.93.240.14|http://www.dosomething.org/scholarships/opportunities?sid=2603759|http://www.dosomething.org/scholarships|1454546||Already output og:site_name
Oct 25 19:36:56 php2 dosomething: http://www.dosomething.org|1382729816|page not found|66.249.73.103|http://www.dosomething.org/actnow/club/find-pet-home||0||actnow/club/find-pet-home
Oct 25 19:36:56 php2 dosomething: http://www.dosomething.org|1382729816|opengraph_meta|66.249.73.103|http://www.dosomething.org/actnow/club/find-pet-home||0||Already output og:title
Oct 25 19:36:56 php2 dosomething: http://www.dosomething.org|1382729816|opengraph_meta|66.249.73.103|http://www.dosomething.org/actnow/club/find-pet-home||0||Already output og:description
Oct 25 19:36:56 php2 dosomething: http://www.dosomething.org|1382729816|opengraph_meta|66.249.73.103|http://www.dosomething.org/actnow/club/find-pet-home||0||Already output og:image
Oct 25 19:36:56 php2 dosomething: http://www.dosomething.org|1382729816|opengraph_meta|66.249.73.103|http://www.dosomething.org/actnow/club/find-pet-home||0||Already output og:url
Oct 25 19:36:56 php2 dosomething: http://www.dosomething.org|1382729816|opengraph_meta|66.249.73.103|http://www.dosomething.org/actnow/club/find-pet-home||0||Already output og:site_name
Oct 25 19:36:59 php2 dosomething: http://www.dosomething.org|1382729819|php|66.249.73.103|http://www.dosomething.org/category/celebrity-name-tags/ellie-kemper||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:37:03 php2 dosomething: http://www.dosomething.org|1382729823|opengraph_meta|66.249.73.103|http://www.dosomething.org/blog/celebsgonegood/tony-soprano-fashion-maven||0||Already output og:title
Oct 25 19:37:03 php2 dosomething: http://www.dosomething.org|1382729823|opengraph_meta|66.249.73.103|http://www.dosomething.org/blog/celebsgonegood/tony-soprano-fashion-maven||0||Already output og:description
Oct 25 19:37:03 php2 dosomething: http://www.dosomething.org|1382729823|opengraph_meta|66.249.73.103|http://www.dosomething.org/blog/celebsgonegood/tony-soprano-fashion-maven||0||Already output og:image
Oct 25 19:37:03 php2 dosomething: http://www.dosomething.org|1382729823|opengraph_meta|66.249.73.103|http://www.dosomething.org/blog/celebsgonegood/tony-soprano-fashion-maven||0||Already output og:type
Oct 25 19:37:03 php2 dosomething: http://www.dosomething.org|1382729823|opengraph_meta|66.249.73.103|http://www.dosomething.org/blog/celebsgonegood/tony-soprano-fashion-maven||0||Already output og:url
Oct 25 19:37:03 php2 dosomething: http://www.dosomething.org|1382729823|opengraph_meta|66.249.73.103|http://www.dosomething.org/blog/celebsgonegood/tony-soprano-fashion-maven||0||Already output og:site_name
Oct 25 19:37:06 php2 dosomething: http://www.dosomething.org|1382729826|php|99.99.41.236|http://www.dosomething.org/user/1414164/complete-profile|http://www.dosomething.org/scholarships|1414164||Notice: Undefined index: locality in dosomething_user_my_somethings_preprocess_dosomething_profile_info() (line 618 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/features/dosomething_user_my_somethings/dosomething_user_my_somethings.module).
Oct 25 19:37:06 php2 dosomething: http://www.dosomething.org|1382729826|php|99.99.41.236|http://www.dosomething.org/user/1414164/complete-profile|http://www.dosomething.org/scholarships|1414164||Notice: Undefined index: administrative_area in dosomething_user_my_somethings_preprocess_dosomething_profile_info() (line 618 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/features/dosomething_user_my_somethings/dosomething_user_my_somethings.module).
Oct 25 19:37:06 php2 dosomething: http://www.dosomething.org|1382729826|php|99.99.41.236|http://www.dosomething.org/user/1414164/complete-profile|http://www.dosomething.org/scholarships|1414164||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:37:09 php2 dosomething: http://www.dosomething.org|1382729829|php|157.55.35.117|http://www.dosomething.org/project/operation-christmas-child-6||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:37:20 php2 dosomething: http://www.dosomething.org|1382729840|user|205.201.197.148|http://www.dosomething.org/user/login?destination=node/718484|http://www.dosomething.org/user/login?destination=node/718484|0||Login attempt failed for ehansen847.
Oct 25 19:37:20 php2 dosomething: http://www.dosomething.org|1382729840|php|205.201.197.148|http://www.dosomething.org/user/login?destination=node/718484|http://www.dosomething.org/user/login?destination=node/718484|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:37:26 php2 dosomething: http://www.dosomething.org|1382729846|php|23.22.81.52|http://www.dosomething.org/user/login?destination=node/648159||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:37:30 php2 dosomething: http://www.dosomething.org|1382729850|php|71.93.240.14|http://www.dosomething.org/cause/physical-and-mental-health|http://www.dosomething.org/user/1454536/complete-profile|1454536||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:37:32 php2 dosomething: http://www.dosomething.org|1382729852|php|207.110.19.130|http://www.dosomething.org/cause/109/act-now?page=1|http://www.dosomething.org/cause/109/act-now|482083||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:37:34 php2 dosomething: http://www.dosomething.org|1382729854|php|208.115.113.83|http://www.dosomething.org/user/password?destination=clubs/directory%3Fdistance%5Bpostal_code%5D%3D%26distance%5Bsearch_distance%5D%3D10%26distance%5Bsearch_units%5D%3Dmile%26title%3D%26state%3DAll%26page%3D884%26field_club_state_value%3DAll%26field_club_zip_value%3D%26start_time%3D1345767967%26order%3Dfield_club_state%26sort%3Dasc||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:37:34 php2 dosomething: http://www.dosomething.org|1382729854|php|71.93.240.14|http://www.dosomething.org/quiz-result/729548/57?sid=2603761|http://www.dosomething.org/quiz/what-your-dream-job|1454538||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:37:34 php2 dosomething: http://www.dosomething.org|1382729854|php|71.93.240.14|http://www.dosomething.org/quiz-result/729548/57?sid=2603761|http://www.dosomething.org/quiz/what-your-dream-job|1454538||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:37:35 php2 dosomething: http://www.dosomething.org|1382729855|php|71.93.240.14|http://www.dosomething.org/quiz-result/729548/57?sid=2603761|http://www.dosomething.org/quiz/what-your-dream-job|1454538||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:37:36 php2 dosomething: http://www.dosomething.org|1382729856|php|71.93.240.14|http://www.dosomething.org/quiz-result/729548/57?sid=2603761|http://www.dosomething.org/quiz/what-your-dream-job|1454538||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:37:36 php2 dosomething: http://www.dosomething.org|1382729856|php|71.93.240.14|http://www.dosomething.org/quiz-result/729548/57?sid=2603761|http://www.dosomething.org/quiz/what-your-dream-job|1454538||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:37:36 php2 dosomething: http://www.dosomething.org|1382729856|php|23.22.81.52|http://www.dosomething.org/user/login?destination=node/161386||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:37:38 php2 dosomething: http://www.dosomething.org|1382729858|php|157.55.35.101|http://www.dosomething.org/blog/celebsgonegood/top-twenty-2011?field_blog_type_tid=All&taxonomy_vocabulary_5_tid=All&page=6||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:37:39 php2 dosomething: http://www.dosomething.org|1382729859|opengraph_meta|180.76.5.181|http://www.dosomething.org/blog/celebsgonegood/custo-barcelonas-passion-bold-cancer-fashion||0||Already output og:title
Oct 25 19:37:39 php2 dosomething: http://www.dosomething.org|1382729859|opengraph_meta|180.76.5.181|http://www.dosomething.org/blog/celebsgonegood/custo-barcelonas-passion-bold-cancer-fashion||0||Already output og:description
Oct 25 19:37:39 php2 dosomething: http://www.dosomething.org|1382729859|opengraph_meta|180.76.5.181|http://www.dosomething.org/blog/celebsgonegood/custo-barcelonas-passion-bold-cancer-fashion||0||Already output og:image
Oct 25 19:37:39 php2 dosomething: http://www.dosomething.org|1382729859|opengraph_meta|180.76.5.181|http://www.dosomething.org/blog/celebsgonegood/custo-barcelonas-passion-bold-cancer-fashion||0||Already output og:type
Oct 25 19:37:39 php2 dosomething: http://www.dosomething.org|1382729859|opengraph_meta|180.76.5.181|http://www.dosomething.org/blog/celebsgonegood/custo-barcelonas-passion-bold-cancer-fashion||0||Already output og:url
Oct 25 19:37:39 php2 dosomething: http://www.dosomething.org|1382729859|opengraph_meta|180.76.5.181|http://www.dosomething.org/blog/celebsgonegood/custo-barcelonas-passion-bold-cancer-fashion||0||Already output og:site_name
Oct 25 19:37:44 php2 dosomething: http://www.dosomething.org|1382729864|php|208.115.113.83|http://www.dosomething.org/user/password?destination=clubs/directory%3Fdistance%5Bpostal_code%5D%3D%26distance%5Bsearch_distance%5D%3D10%26distance%5Bsearch_units%5D%3Dmile%26title%3D%26state%3DAll%26page%3D885%26field_club_state_value%3DAll%26field_club_zip_value%3D%26start_time%3D1345677779%26order%3Dfield_club_state%26sort%3Dasc||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:37:47 php2 dosomething: http://www.dosomething.org|1382729867|opengraph_meta|178.255.215.78|http://www.dosomething.org/blog/celebsgonegood/rock-and-rollin-charity||0||Already output og:title
Oct 25 19:37:47 php2 dosomething: http://www.dosomething.org|1382729867|opengraph_meta|178.255.215.78|http://www.dosomething.org/blog/celebsgonegood/rock-and-rollin-charity||0||Already output og:description
Oct 25 19:37:47 php2 dosomething: http://www.dosomething.org|1382729867|opengraph_meta|178.255.215.78|http://www.dosomething.org/blog/celebsgonegood/rock-and-rollin-charity||0||Already output og:image
Oct 25 19:37:47 php2 dosomething: http://www.dosomething.org|1382729867|opengraph_meta|178.255.215.78|http://www.dosomething.org/blog/celebsgonegood/rock-and-rollin-charity||0||Already output og:type
Oct 25 19:37:47 php2 dosomething: http://www.dosomething.org|1382729867|opengraph_meta|178.255.215.78|http://www.dosomething.org/blog/celebsgonegood/rock-and-rollin-charity||0||Already output og:url
Oct 25 19:37:47 php2 dosomething: http://www.dosomething.org|1382729867|opengraph_meta|178.255.215.78|http://www.dosomething.org/blog/celebsgonegood/rock-and-rollin-charity||0||Already output og:site_name
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in webform_submission_data() (line 26 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/includes/webform.submissions.inc).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: projectname in dosomething_projects_general_mail() (line 61 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/features/dosomething_projects_general/dosomething_projects_general.module).
Oct 25 19:37:51 php2 dosomething: http://www.dosomething.org|1382729871|php|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||Notice: Undefined index: in webform_rules_rules_invoke_event() (line 122 of /var/www/jenkins-Deploy-413/sites/all/modules/webform_rules/webform_rules.module).
Oct 25 19:37:52 php2 dosomething: http://www.dosomething.org|1382729872|dosomething_subscribe|107.1.166.22|http://www.dosomething.org/projects/submit|http://www.dosomething.org/projects/submit|1454555||cell = 8477360928 opt_in = 150223 response = stdClass Object#012(#012 [request] => POST /profiles/join HTTP/1.0#015#012Content-type: application/x-www-form-urlencoded#015#012Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8#015#012User-Agent: Drupal (+http://drupal.org/)#015#012Host: dosomething.mcommons.com#015#012Content-Length: 97#015#012#015#012person[phone]=8477360928&opt_in_path[]=150223&person[first_name]=Christie&person[last_name]=Sayre#012 [data] => OK! (To have your browser automatically redirect, add a well-formed redirect_to= parameter to your post)#012 [protocol] => HTTP/1.1#012 [status_message] => OK#012 [headers] => Array#012 (#012 [date] => Fri, 25 Oct 2013 19:37:52 GMT#012 [server] => Apache#012 [etag] => "230fd63b57db094625b6e49be22fba98"#012 [x-runtime] => 6#012 [cache-control] => max-age=0, private, no-store, no-cache#012 [x-powered-by] => Phusion Passenger 4.0.10#012 [content-length] => 104#012 [status] => 200 OK#012 [vary] => Accept-Encoding#012 [content-type] => text/html; charset=utf-8#012 [via] => 1.0 https-proxy#012 [connection] => close#012 )#012#012 [code] => 200#012)
Oct 25 19:37:52 php2 dosomething: http://www.dosomething.org|1382729872|php|66.249.73.103|http://www.dosomething.org/category/celebrity-name-tags/jane-lynch||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:37:52 php2 dosomething: http://www.dosomething.org|1382729872|access denied|207.225.131.141|http://www.dosomething.org/social-scholarship/25000-women|http://www.fastweb.com/college-scholarships/scholarships/161744-2-000-send-a-text-help-a-woman-scholarship|0||node/729880
Oct 25 19:37:54 php2 dosomething: http://www.dosomething.org|1382729874|user|204.29.66.40|http://www.dosomething.org/user/login?destination=node/731029|http://www.dosomething.org/user/login?destination=node/731029|0||Login attempt failed for normagonzalez1998@yahoo*.
Oct 25 19:37:54 php2 dosomething: http://www.dosomething.org|1382729874|php|204.29.66.40|http://www.dosomething.org/user/login?destination=node/731029|http://www.dosomething.org/user/login?destination=node/731029|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:37:57 php2 dosomething: http://www.dosomething.org|1382729877|php|199.127.132.54|http://www.dosomething.org/scholarships/contact-me|http://www.dosomething.org/scholarships|0||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:57 php2 dosomething: http://www.dosomething.org|1382729877|php|199.127.132.54|http://www.dosomething.org/scholarships/contact-me|http://www.dosomething.org/scholarships|0||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:57 php2 dosomething: http://www.dosomething.org|1382729877|php|199.127.132.54|http://www.dosomething.org/scholarships/contact-me|http://www.dosomething.org/scholarships|0||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:57 php2 dosomething: http://www.dosomething.org|1382729877|php|199.127.132.54|http://www.dosomething.org/scholarships/contact-me|http://www.dosomething.org/scholarships|0||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:37:57 php2 dosomething: http://www.dosomething.org|1382729877|php|199.127.132.54|http://www.dosomething.org/scholarships/contact-me|http://www.dosomething.org/scholarships|0||Notice: Undefined index: in webform_submission_data() (line 26 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/includes/webform.submissions.inc).
Oct 25 19:37:57 php2 dosomething: http://www.dosomething.org|1382729877|php|199.127.132.54|http://www.dosomething.org/scholarships/contact-me|http://www.dosomething.org/scholarships|0||Notice: Undefined index: in webform_rules_rules_invoke_event() (line 122 of /var/www/jenkins-Deploy-413/sites/all/modules/webform_rules/webform_rules.module).
Oct 25 19:37:58 php2 dosomething: http://www.dosomething.org|1382729878|dosomething_subscribe|199.127.132.54|http://www.dosomething.org/scholarships/contact-me|http://www.dosomething.org/scholarships|0||cell = 7193132348 opt_in = 150493 response = stdClass Object#012(#012 [request] => POST /profiles/join HTTP/1.0#015#012Content-type: application/x-www-form-urlencoded#015#012Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8#015#012User-Agent: Drupal (+http://drupal.org/)#015#012Host: dosomething.mcommons.com#015#012Content-Length: 45#015#012#015#012person[phone]=7193132348&opt_in_path[]=150493#012 [data] => OK! (To have your browser automatically redirect, add a well-formed redirect_to= parameter to your post)#012 [protocol] => HTTP/1.1#012 [status_message] => OK#012 [headers] => Array#012 (#012 [date] => Fri, 25 Oct 2013 19:37:58 GMT#012 [server] => Apache#012 [etag] => "230fd63b57db094625b6e49be22fba98"#012 [x-runtime] => 6#012 [cache-control] => max-age=0, private, no-store, no-cache#012 [x-powered-by] => Phusion Passenger 4.0.10#012 [content-length] => 104#012 [status] => 200 OK#012 [vary] => Accept-Encoding#012 [content-type] => text/html; charset=utf-8#012 [via] => 1.0 https-proxy#012 [connection] => close#012 )#012#012 [code] => 200#012)
Oct 25 19:37:59 php2 dosomething: http://www.dosomething.org|1382729879|opengraph_meta|199.127.132.54|http://www.dosomething.org/scholarships/opportunities?sid=2603763|http://www.dosomething.org/scholarships|0||Already output og:title
Oct 25 19:37:59 php2 dosomething: http://www.dosomething.org|1382729879|opengraph_meta|199.127.132.54|http://www.dosomething.org/scholarships/opportunities?sid=2603763|http://www.dosomething.org/scholarships|0||Already output og:description
Oct 25 19:37:59 php2 dosomething: http://www.dosomething.org|1382729879|opengraph_meta|199.127.132.54|http://www.dosomething.org/scholarships/opportunities?sid=2603763|http://www.dosomething.org/scholarships|0||Already output og:image
Oct 25 19:37:59 php2 dosomething: http://www.dosomething.org|1382729879|opengraph_meta|199.127.132.54|http://www.dosomething.org/scholarships/opportunities?sid=2603763|http://www.dosomething.org/scholarships|0||Already output og:url
Oct 25 19:37:59 php2 dosomething: http://www.dosomething.org|1382729879|opengraph_meta|199.127.132.54|http://www.dosomething.org/scholarships/opportunities?sid=2603763|http://www.dosomething.org/scholarships|0||Already output og:site_name
Oct 25 19:38:06 php2 dosomething: http://www.dosomething.org|1382729886|php|23.22.81.52|http://www.dosomething.org/user?destination=node/311241/votes%3Fpage%3D2%26sort%3Dasc%26order%3DVisitor||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:38:11 php2 dosomething: http://www.dosomething.org|1382729891|php|68.66.89.8|http://www.dosomething.org/cause/bullying-and-violence|http://www.dosomething.org/50cans|1439647||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:38:17 php2 dosomething: http://www.dosomething.org|1382729897|dosomething_login|71.93.240.14|http://www.dosomething.org/user/registration?destination=front|http://www.dosomething.org/user/registration|0||cell = 5593618105 opt_in = 87681 response = stdClass Object#012(#012 [request] => POST /profiles/join HTTP/1.0#015#012Content-type: application/x-www-form-urlencoded#015#012Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8#015#012User-Agent: Drupal (+http://drupal.org/)#015#012Host: dosomething.mcommons.com#015#012Content-Length: 44#015#012#015#012person[phone]=5593618105&opt_in_path[]=87681#012 [data] => OK! (To have your browser automatically redirect, add a well-formed redirect_to= parameter to your post)#012 [protocol] => HTTP/1.1#012 [status_message] => OK#012 [headers] => Array#012 (#012 [date] => Fri, 25 Oct 2013 19:38:17 GMT#012 [server] => Apache#012 [etag] => "230fd63b57db094625b6e49be22fba98"#012 [x-runtime] => 7#012 [cache-control] => max-age=0, private, no-store, no-cache#012 [x-powered-by] => Phusion Passenger 4.0.10#012 [content-length] => 104#012 [status] => 200 OK#012 [vary] => Accept-Encoding#012 [content-type] => text/html; charset=utf-8#012 [via] => 1.0 https-proxy#012 [connection] => close#012 )#012#012 [code] => 200#012)
Oct 25 19:38:17 php2 dosomething: http://www.dosomething.org|1382729897|user|71.93.240.14|http://www.dosomething.org/user/registration?destination=front|http://www.dosomething.org/user/registration|1454566||Session opened for Ivan Ceballos.
Oct 25 19:38:17 php2 dosomething: http://www.dosomething.org|1382729897|php|71.93.240.14|http://www.dosomething.org/user/registration?destination=front|http://www.dosomething.org/user/registration|1454566||Notice: Undefined index: und in _dosomething_login_prepare_member() (line 1273 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_login/dosomething_login.module).
Oct 25 19:38:17 php2 dosomething: http://www.dosomething.org|1382729897|php|71.93.240.14|http://www.dosomething.org/user/registration?destination=front|http://www.dosomething.org/user/registration|1454566||Notice: Undefined index: und in _dosomething_login_prepare_member() (line 1285 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_login/dosomething_login.module).
Oct 25 19:38:17 php2 dosomething: http://www.dosomething.org|1382729897|php|71.93.240.14|http://www.dosomething.org/user/registration?destination=front|http://www.dosomething.org/user/registration|1454566||Warning: Invalid argument supplied for foreach() in _dosomething_login_prepare_member() (line 1285 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_login/dosomething_login.module).
Oct 25 19:38:17 php2 dosomething: http://www.dosomething.org|1382729897|dsapi|71.93.240.14|http://www.dosomething.org/user/registration?destination=front|http://www.dosomething.org/user/registration|1454566||User #1454566 was not posted API endpoint exception 'Exception' with message 'SSL certificate problem, verify that the CA cert is OK. Details:#012error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed' in /var/www/jenkins-Deploy-413/sites/all/libraries/dsapi/lib/DSAPI/Request.php:111#012Stack trace:#012#0 /var/www/jenkins-Deploy-413/sites/all/libraries/dsapi/lib/DSAPI/Request.php(155): Request->_call()#012#1 /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_login/dosomething_login.module(1192): Request->post('users', Array)#012#2 /var/www/jenkins-Deploy-413/includes/form.inc(1464): dosomething_login_register_block_submit(Array, Array)#012#3 /var/www/jenkins-Deploy-413/includes/form.inc(860): form_execute_handlers('submit', Array, Array)#012#4 /var/www/jenkins-Deploy-413/includes/form.inc(374): drupal_process_form('dosomething_log...', Array, Array)#012#5 /var/www/jenkins-Deploy-413/includes/form.inc(131): drupal_build_form('dosomething_log...', Array)#012#6 /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_login/dosomething_login.module(96): drupal_get_form('dosomething_log...', false)#012#7 [internal function]: dosomething_login_page_user_registration()#012#8 /var/www/jenkins-Deploy-413/includes/menu.inc(517): call_user_func_array('dosomething_log...', Array)#012#9 /var/www/jenkins-Deploy-413/index.php(21): menu_execute_active_handler()#012#10 {main}
Oct 25 19:38:18 php2 dosomething: http://www.dosomething.org|1382729898|php|71.93.240.14|http://www.dosomething.org/front|http://www.dosomething.org/user/registration|1454566||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:38:19 php2 dosomething: http://www.dosomething.org|1382729899|php|208.115.113.83|http://www.dosomething.org/user/password?destination=clubs/directory%3Fdistance%5Bpostal_code%5D%3D%26distance%5Bsearch_distance%5D%3D10%26distance%5Bsearch_units%5D%3Dmile%26title%3D%26state%3DAll%26page%3D890%26field_club_state_value%3DAll%26field_club_zip_value%3D%26start_time%3D1345969489%26order%3Dtitle%26sort%3Dasc||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:38:28 php2 dosomething: http://www.dosomething.org|1382729908|access denied|173.252.101.116|http://www.dosomething.org/files/styles/thumbnail/public/campaigns/logos/logo_0.png||0||files/styles/thumbnail/public/campaigns/logos/logo_0.png
Oct 25 19:38:35 php2 dosomething: http://www.dosomething.org|1382729915|php|199.59.62.88|http://www.dosomething.org/user/login?destination=node/add|http://www.dosomething.org/|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:38:39 php2 dosomething: http://www.dosomething.org|1382729919|php|185.10.104.132|http://www.dosomething.org/project/cuts-critters||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:38:42 php2 dosomething: http://www.dosomething.org|1382729922|access denied|65.55.217.250|http://www.dosomething.org/files/styles/blog_landscape/public/pictures/cyber%2520bully%25203%2520final.jpg|http://victoria-nails.fr/ckeditor/cyber-bullying-facts-adults|0||files/styles/blog_landscape/public/pictures/cyber%20bully%203%20final.jpg
Oct 25 19:38:44 php2 dosomething: http://www.dosomething.org|1382729924|php|71.93.240.14|http://www.dosomething.org/quiz-result/729243/46?sid=2603765|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|1454538||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:38:44 php2 dosomething: http://www.dosomething.org|1382729924|php|71.93.240.14|http://www.dosomething.org/quiz-result/729243/46?sid=2603765|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|1454538||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:38:45 php2 dosomething: http://www.dosomething.org|1382729925|php|71.93.240.14|http://www.dosomething.org/quiz-result/729243/46?sid=2603765|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|1454538||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:38:45 php2 dosomething: http://www.dosomething.org|1382729925|php|71.93.240.14|http://www.dosomething.org/quiz-result/729243/46?sid=2603765|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|1454538||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:38:45 php2 dosomething: http://www.dosomething.org|1382729925|php|71.93.240.14|http://www.dosomething.org/quiz-result/729243/46?sid=2603765|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|1454538||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:38:48 php2 dosomething: http://www.dosomething.org|1382729928|opengraph_meta|54.227.49.251|http://www.dosomething.org/scholarships/opportunities?sid=2603766||0||Already output og:title
Oct 25 19:38:48 php2 dosomething: http://www.dosomething.org|1382729928|opengraph_meta|54.227.49.251|http://www.dosomething.org/scholarships/opportunities?sid=2603766||0||Already output og:description
Oct 25 19:38:48 php2 dosomething: http://www.dosomething.org|1382729928|opengraph_meta|54.227.49.251|http://www.dosomething.org/scholarships/opportunities?sid=2603766||0||Already output og:image
Oct 25 19:38:48 php2 dosomething: http://www.dosomething.org|1382729928|opengraph_meta|54.227.49.251|http://www.dosomething.org/scholarships/opportunities?sid=2603766||0||Already output og:url
Oct 25 19:38:48 php2 dosomething: http://www.dosomething.org|1382729928|opengraph_meta|54.227.49.251|http://www.dosomething.org/scholarships/opportunities?sid=2603766||0||Already output og:site_name
Oct 25 19:38:50 php2 dosomething: http://www.dosomething.org|1382729930|php|71.93.240.14|http://www.dosomething.org/footlocker|http://www.dosomething.org/scholarships/opportunities?sid=2603758|1454550||Notice: Undefined variable: campaign_sign_up in dosomething_campaign_styles_campaign_sign_up_content_type_render() (line 45 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_campaign_styles/plugins/content_types/campaign_sign_up.inc).
Oct 25 19:39:02 php2 dosomething: http://www.dosomething.org|1382729942|php|192.200.235.117|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1454467||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:39:02 php2 dosomething: http://www.dosomething.org|1382729942|php|192.200.235.117|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1454467||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:39:02 php2 dosomething: http://www.dosomething.org|1382729942|php|192.200.235.117|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1454467||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:39:02 php2 dosomething: http://www.dosomething.org|1382729942|php|192.200.235.117|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1454467||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:39:02 php2 dosomething: http://www.dosomething.org|1382729942|php|192.200.235.117|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1454467||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:39:02 php2 dosomething: http://www.dosomething.org|1382729942|php|192.200.235.117|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1454467||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:39:02 php2 dosomething: http://www.dosomething.org|1382729942|php|192.200.235.117|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1454467||Notice: Undefined index: in webform_submission_data() (line 26 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/includes/webform.submissions.inc).
Oct 25 19:39:02 php2 dosomething: http://www.dosomething.org|1382729942|php|192.200.235.117|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1454467||Notice: Undefined index: in webform_rules_rules_invoke_event() (line 122 of /var/www/jenkins-Deploy-413/sites/all/modules/webform_rules/webform_rules.module).
Oct 25 19:39:02 php2 dosomething: http://www.dosomething.org|1382729942|rules|192.200.235.117|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1454467||Successfully sent email to [email protected]
Oct 25 19:39:02 php2 dosomething: http://www.dosomething.org|1382729942|php|192.200.235.117|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1454467||Notice: Undefined property: stdClass::$sid in _webform_filter_values() (line 2946 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:39:02 php2 dosomething: http://www.dosomething.org|1382729942|php|192.200.235.117|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1454467||Notice: Undefined index: in _webform_filter_values() (line 2953 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:39:02 php2 dosomething: http://www.dosomething.org|1382729942|php|192.200.235.117|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1454467||Notice: Undefined index: in webform_component_include() (line 3527 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:39:02 php2 dosomething: http://www.dosomething.org|1382729942|php|192.200.235.117|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1454467||Notice: Undefined property: stdClass::$sid in _webform_filter_values() (line 2984 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:39:14 php2 dosomething: http://www.dosomething.org|1382729954|php|66.249.73.103|http://www.dosomething.org/blog/%3C/p%3E%20%20%20%20%3Cp%3E%3Ca%20href%3D?field_blog_type_tid=9369&taxonomy_vocabulary_5_tid=All&page=4||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:39:16 php2 dosomething: http://www.dosomething.org|1382729956|php|66.249.73.103|http://www.dosomething.org/category/tags/dr-benjamin-chavis||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:39:19 php2 dosomething: http://www.dosomething.org|1382729959|php|72.135.21.133|http://www.dosomething.org/node/724592/submission/2562288/edit|http://www.dosomething.org/node/724592/submission/2562288/edit|1420193||Notice: Undefined property: stdClass::$field_project_title in doit_preprocess_page() (line 140 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:39:19 php2 dosomething: http://www.dosomething.org|1382729959|php|72.135.21.133|http://www.dosomething.org/node/724592/submission/2562288/edit|http://www.dosomething.org/node/724592/submission/2562288/edit|1420193||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:39:23 php2 dosomething: http://www.dosomething.org|1382729963|opengraph_meta|192.195.230.53|http://www.dosomething.org/scholarships/opportunities?gclid=CLe4ksLesroCFaFDMgoddy4A5A|http://www.google.com/aclk?sa=l&ai=CtzbMochqUsScGM73yAGroIHgC9erg-YC7-LNlH6UxdEHCAAQAigDUK7Buc4CYMn-q4j0o6gUoAHN3ZX9A8gBAaoEIU_Q3b943UE0_K9q0o1PziINKp5dIg0i1UxY6oucRe2rHYAHm6LqApAHAg&sig=AOD64_0w_lZv45gTiSTqx-G57den_oWASQ&rct=j&q=minority+music+scholarships&ved=0CDYQ0Qw&adurl=http://www.dosomething.org/scholarships/opportunities|0||Already output og:title
Oct 25 19:39:23 php2 dosomething: http://www.dosomething.org|1382729963|opengraph_meta|192.195.230.53|http://www.dosomething.org/scholarships/opportunities?gclid=CLe4ksLesroCFaFDMgoddy4A5A|http://www.google.com/aclk?sa=l&ai=CtzbMochqUsScGM73yAGroIHgC9erg-YC7-LNlH6UxdEHCAAQAigDUK7Buc4CYMn-q4j0o6gUoAHN3ZX9A8gBAaoEIU_Q3b943UE0_K9q0o1PziINKp5dIg0i1UxY6oucRe2rHYAHm6LqApAHAg&sig=AOD64_0w_lZv45gTiSTqx-G57den_oWASQ&rct=j&q=minority+music+scholarships&ved=0CDYQ0Qw&adurl=http://www.dosomething.org/scholarships/opportunities|0||Already output og:description
Oct 25 19:39:23 php2 dosomething: http://www.dosomething.org|1382729963|opengraph_meta|192.195.230.53|http://www.dosomething.org/scholarships/opportunities?gclid=CLe4ksLesroCFaFDMgoddy4A5A|http://www.google.com/aclk?sa=l&ai=CtzbMochqUsScGM73yAGroIHgC9erg-YC7-LNlH6UxdEHCAAQAigDUK7Buc4CYMn-q4j0o6gUoAHN3ZX9A8gBAaoEIU_Q3b943UE0_K9q0o1PziINKp5dIg0i1UxY6oucRe2rHYAHm6LqApAHAg&sig=AOD64_0w_lZv45gTiSTqx-G57den_oWASQ&rct=j&q=minority+music+scholarships&ved=0CDYQ0Qw&adurl=http://www.dosomething.org/scholarships/opportunities|0||Already output og:image
Oct 25 19:39:23 php2 dosomething: http://www.dosomething.org|1382729963|opengraph_meta|192.195.230.53|http://www.dosomething.org/scholarships/opportunities?gclid=CLe4ksLesroCFaFDMgoddy4A5A|http://www.google.com/aclk?sa=l&ai=CtzbMochqUsScGM73yAGroIHgC9erg-YC7-LNlH6UxdEHCAAQAigDUK7Buc4CYMn-q4j0o6gUoAHN3ZX9A8gBAaoEIU_Q3b943UE0_K9q0o1PziINKp5dIg0i1UxY6oucRe2rHYAHm6LqApAHAg&sig=AOD64_0w_lZv45gTiSTqx-G57den_oWASQ&rct=j&q=minority+music+scholarships&ved=0CDYQ0Qw&adurl=http://www.dosomething.org/scholarships/opportunities|0||Already output og:url
Oct 25 19:39:23 php2 dosomething: http://www.dosomething.org|1382729963|opengraph_meta|192.195.230.53|http://www.dosomething.org/scholarships/opportunities?gclid=CLe4ksLesroCFaFDMgoddy4A5A|http://www.google.com/aclk?sa=l&ai=CtzbMochqUsScGM73yAGroIHgC9erg-YC7-LNlH6UxdEHCAAQAigDUK7Buc4CYMn-q4j0o6gUoAHN3ZX9A8gBAaoEIU_Q3b943UE0_K9q0o1PziINKp5dIg0i1UxY6oucRe2rHYAHm6LqApAHAg&sig=AOD64_0w_lZv45gTiSTqx-G57den_oWASQ&rct=j&q=minority+music+scholarships&ved=0CDYQ0Qw&adurl=http://www.dosomething.org/scholarships/opportunities|0||Already output og:site_name
Oct 25 19:39:28 php2 dosomething: http://www.dosomething.org|1382729968|php|98.23.83.117|http://www.dosomething.org/scholarships|http://www.dosomething.org/awesome-things|1454564||Notice: Undefined index: mid-left in include() (line 56 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_panels/plugins/layouts/landings/dosomething-panels-landings.tpl.php).
Oct 25 19:39:28 php2 dosomething: http://www.dosomething.org|1382729968|php|98.23.83.117|http://www.dosomething.org/scholarships|http://www.dosomething.org/awesome-things|1454564||Notice: Undefined index: mid-center in include() (line 56 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_panels/plugins/layouts/landings/dosomething-panels-landings.tpl.php).
Oct 25 19:39:28 php2 dosomething: http://www.dosomething.org|1382729968|php|98.23.83.117|http://www.dosomething.org/scholarships|http://www.dosomething.org/awesome-things|1454564||Notice: Undefined index: mid-right in include() (line 56 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_panels/plugins/layouts/landings/dosomething-panels-landings.tpl.php).
Oct 25 19:39:28 php2 dosomething: http://www.dosomething.org|1382729968|php|98.23.83.117|http://www.dosomething.org/scholarships|http://www.dosomething.org/awesome-things|1454564||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:39:29 php2 dosomething: http://www.dosomething.org|1382729969|php|127.0.0.1|http://www.dosomething.org/project/afternoon-drinks-atria-center||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:39:31 php2 dosomething: http://www.dosomething.org|1382729971|php|65.55.213.73|http://www.dosomething.org/project/field-trip-cape-may-zoo||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:39:33 php2 dosomething: http://www.dosomething.org|1382729973|php|208.54.86.203|http://www.dosomething.org/user/login?destination=node/731105|http://www.dosomething.org/social-scholarship/grandparents|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:39:36 php2 dosomething: http://www.dosomething.org|1382729976|page not found|66.204.55.6|http://www.dosomething.org/tipsandtools/11-facts-about-teen-driving&adt=0|http://www.ask.com/web?q=how+many+teens+die+from+texting+and+driving&search=&qsrc=0&o=0&l=dir|0||tipsandtools/11-facts-about-teen-driving&adt=0
Oct 25 19:39:36 php2 dosomething: http://www.dosomething.org|1382729976|opengraph_meta|66.204.55.6|http://www.dosomething.org/tipsandtools/11-facts-about-teen-driving&adt=0|http://www.ask.com/web?q=how+many+teens+die+from+texting+and+driving&search=&qsrc=0&o=0&l=dir|0||Already output og:title
Oct 25 19:39:36 php2 dosomething: http://www.dosomething.org|1382729976|opengraph_meta|66.204.55.6|http://www.dosomething.org/tipsandtools/11-facts-about-teen-driving&adt=0|http://www.ask.com/web?q=how+many+teens+die+from+texting+and+driving&search=&qsrc=0&o=0&l=dir|0||Already output og:description
Oct 25 19:39:36 php2 dosomething: http://www.dosomething.org|1382729976|opengraph_meta|66.204.55.6|http://www.dosomething.org/tipsandtools/11-facts-about-teen-driving&adt=0|http://www.ask.com/web?q=how+many+teens+die+from+texting+and+driving&search=&qsrc=0&o=0&l=dir|0||Already output og:image
Oct 25 19:39:36 php2 dosomething: http://www.dosomething.org|1382729976|opengraph_meta|66.204.55.6|http://www.dosomething.org/tipsandtools/11-facts-about-teen-driving&adt=0|http://www.ask.com/web?q=how+many+teens+die+from+texting+and+driving&search=&qsrc=0&o=0&l=dir|0||Already output og:url
Oct 25 19:39:36 php2 dosomething: http://www.dosomething.org|1382729976|opengraph_meta|66.204.55.6|http://www.dosomething.org/tipsandtools/11-facts-about-teen-driving&adt=0|http://www.ask.com/web?q=how+many+teens+die+from+texting+and+driving&search=&qsrc=0&o=0&l=dir|0||Already output og:site_name
Oct 25 19:39:38 php2 dosomething: http://www.dosomething.org|1382729978|php|99.105.112.28|http://www.dosomething.org/user/registration?destination=footlocker/apply/status|http://www.dosomething.org/footlocker/apply|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:39:43 php2 dosomething: http://www.dosomething.org|1382729983|php|50.150.243.251|http://www.dosomething.org/user/login?destination=node/718313|http://www.dosomething.org/actnow/actionguide/demand-guarantees-your-favorite-brands-productsservices-are-slavery-free|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:39:45 php2 dosomething: http://www.dosomething.org|1382729985|page not found|68.114.34.12|http://www.dosomething.org/files/css/null|http://www.dosomething.org/user/1446242/edit/main|1446242||files/css/null
Oct 25 19:39:45 php2 dosomething: http://www.dosomething.org|1382729985|opengraph_meta|68.114.34.12|http://www.dosomething.org/files/css/null|http://www.dosomething.org/user/1446242/edit/main|1446242||Already output og:title
Oct 25 19:39:45 php2 dosomething: http://www.dosomething.org|1382729985|opengraph_meta|68.114.34.12|http://www.dosomething.org/files/css/null|http://www.dosomething.org/user/1446242/edit/main|1446242||Already output og:description
Oct 25 19:39:45 php2 dosomething: http://www.dosomething.org|1382729985|opengraph_meta|68.114.34.12|http://www.dosomething.org/files/css/null|http://www.dosomething.org/user/1446242/edit/main|1446242||Already output og:image
Oct 25 19:39:45 php2 dosomething: http://www.dosomething.org|1382729985|opengraph_meta|68.114.34.12|http://www.dosomething.org/files/css/null|http://www.dosomething.org/user/1446242/edit/main|1446242||Already output og:url
Oct 25 19:39:45 php2 dosomething: http://www.dosomething.org|1382729985|opengraph_meta|68.114.34.12|http://www.dosomething.org/files/css/null|http://www.dosomething.org/user/1446242/edit/main|1446242||Already output og:site_name
Oct 25 19:39:49 php2 dosomething: http://www.dosomething.org|1382729989|user|127.0.0.1|http://www.dosomething.org/rest/user/login.json?1382729988||0||Invalid login attempt for [email protected].
Oct 25 19:39:49 php2 dosomething: http://www.dosomething.org|1382729989|user|127.0.0.1|http://www.dosomething.org/rest/user/login.json?1382729988||1398531||Session opened for JaQuayia Johnson.
Oct 25 19:39:58 php2 dosomething: http://www.dosomething.org|1382729998|php|72.135.21.133|http://www.dosomething.org/node/724592/submission/2562288/edit|http://www.dosomething.org/node/724592/submission/2562288/edit|1420193||Notice: Undefined index: in webform_submission_data() (line 26 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/includes/webform.submissions.inc).
Oct 25 19:39:58 php2 dosomething: http://www.dosomething.org|1382729998|php|72.135.21.133|http://www.dosomething.org/node/724592/submission/2562288/edit|http://www.dosomething.org/node/724592/submission/2562288/edit|1420193||Notice: Undefined index: in webform_rules_rules_invoke_event() (line 122 of /var/www/jenkins-Deploy-413/sites/all/modules/webform_rules/webform_rules.module).
Oct 25 19:39:58 php2 dosomething: http://www.dosomething.org|1382729998|php|72.135.21.133|http://www.dosomething.org/node/724592/submission/2562288/edit|http://www.dosomething.org/node/724592/submission/2562288/edit|1420193||Notice: Undefined index: in _webform_filter_values() (line 2953 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:39:58 php2 dosomething: http://www.dosomething.org|1382729998|php|72.135.21.133|http://www.dosomething.org/node/724592/submission/2562288/edit|http://www.dosomething.org/node/724592/submission/2562288/edit|1420193||Notice: Undefined index: in webform_component_include() (line 3527 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:39:59 php2 dosomething: http://www.dosomething.org|1382729999|php|72.135.21.133|http://www.dosomething.org/node/724592/submission/2562288/edit|http://www.dosomething.org/node/724592/submission/2562288/edit|1420193||Notice: Undefined property: stdClass::$field_project_title in doit_preprocess_page() (line 140 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:39:59 php2 dosomething: http://www.dosomething.org|1382729999|php|72.135.21.133|http://www.dosomething.org/node/724592/submission/2562288/edit|http://www.dosomething.org/node/724592/submission/2562288/edit|1420193||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:40:05 php2 dosomething: http://www.dosomething.org|1382730005|php|71.93.240.14|http://www.dosomething.org/grants/contact-me|http://www.dosomething.org/grants|1454550||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:40:05 php2 dosomething: http://www.dosomething.org|1382730005|php|71.93.240.14|http://www.dosomething.org/grants/contact-me|http://www.dosomething.org/grants|1454550||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:40:05 php2 dosomething: http://www.dosomething.org|1382730005|php|71.93.240.14|http://www.dosomething.org/grants/contact-me|http://www.dosomething.org/grants|1454550||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:40:05 php2 dosomething: http://www.dosomething.org|1382730005|php|71.93.240.14|http://www.dosomething.org/grants/contact-me|http://www.dosomething.org/grants|1454550||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:40:05 php2 dosomething: http://www.dosomething.org|1382730005|php|71.93.240.14|http://www.dosomething.org/grants/contact-me|http://www.dosomething.org/grants|1454550||Notice: Undefined index: in webform_submission_data() (line 26 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/includes/webform.submissions.inc).
Oct 25 19:40:05 php2 dosomething: http://www.dosomething.org|1382730005|php|71.93.240.14|http://www.dosomething.org/grants/contact-me|http://www.dosomething.org/grants|1454550||Notice: Undefined index: in webform_rules_rules_invoke_event() (line 122 of /var/www/jenkins-Deploy-413/sites/all/modules/webform_rules/webform_rules.module).
Oct 25 19:40:05 php2 dosomething: http://www.dosomething.org|1382730005|dosomething_subscribe|71.93.240.14|http://www.dosomething.org/grants/contact-me|http://www.dosomething.org/grants|1454550||cell = 5593069211 opt_in = 150463 response = stdClass Object#012(#012 [request] => POST /profiles/join HTTP/1.0#015#012Content-type: application/x-www-form-urlencoded#015#012Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8#015#012User-Agent: Drupal (+http://drupal.org/)#015#012Host: dosomething.mcommons.com#015#012Content-Length: 95#015#012#015#012person[phone]=5593069211&opt_in_path[]=150463&person[first_name]=Eddie&person[last_name]=Chavez#012 [data] => OK! (To have your browser automatically redirect, add a well-formed redirect_to= parameter to your post)#012 [protocol] => HTTP/1.1#012 [status_message] => OK#012 [headers] => Array#012 (#012 [date] => Fri, 25 Oct 2013 19:40:05 GMT#012 [server] => Apache#012 [etag] => "230fd63b57db094625b6e49be22fba98"#012 [x-runtime] => 6#012 [cache-control] => max-age=0, private, no-store, no-cache#012 [x-powered-by] => Phusion Passenger 4.0.10#012 [content-length] => 104#012 [status] => 200 OK#012 [vary] => Accept-Encoding#012 [content-type] => text/html; charset=utf-8#012 [via] => 1.0 https-proxy#012 [connection] => close#012 )#012#012 [code] => 200#012)
Oct 25 19:40:06 php2 dosomething: http://www.dosomething.org|1382730006|opengraph_meta|71.93.240.14|http://www.dosomething.org/grants/seed-grants?sid=2603769|http://www.dosomething.org/grants|1454550||Already output og:title
Oct 25 19:40:06 php2 dosomething: http://www.dosomething.org|1382730006|opengraph_meta|71.93.240.14|http://www.dosomething.org/grants/seed-grants?sid=2603769|http://www.dosomething.org/grants|1454550||Already output og:description
Oct 25 19:40:06 php2 dosomething: http://www.dosomething.org|1382730006|opengraph_meta|71.93.240.14|http://www.dosomething.org/grants/seed-grants?sid=2603769|http://www.dosomething.org/grants|1454550||Already output og:image
Oct 25 19:40:06 php2 dosomething: http://www.dosomething.org|1382730006|opengraph_meta|71.93.240.14|http://www.dosomething.org/grants/seed-grants?sid=2603769|http://www.dosomething.org/grants|1454550||Already output og:type
Oct 25 19:40:06 php2 dosomething: http://www.dosomething.org|1382730006|opengraph_meta|71.93.240.14|http://www.dosomething.org/grants/seed-grants?sid=2603769|http://www.dosomething.org/grants|1454550||Already output og:url
Oct 25 19:40:06 php2 dosomething: http://www.dosomething.org|1382730006|opengraph_meta|71.93.240.14|http://www.dosomething.org/grants/seed-grants?sid=2603769|http://www.dosomething.org/grants|1454550||Already output og:site_name
Oct 25 19:40:11 php2 dosomething: http://www.dosomething.org|1382730011|php|65.55.213.73|http://www.dosomething.org/project/alumni-reunion-concert||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:40:17 php2 dosomething: http://www.dosomething.org|1382730017|page not found|157.55.32.184|http://www.dosomething.org/actnow/volunteer/computer-trainer-ghana-west-africa-0||0||actnow/volunteer/computer-trainer-ghana-west-africa-0
Oct 25 19:40:17 php2 dosomething: http://www.dosomething.org|1382730017|opengraph_meta|157.55.32.184|http://www.dosomething.org/actnow/volunteer/computer-trainer-ghana-west-africa-0||0||Already output og:title
Oct 25 19:40:17 php2 dosomething: http://www.dosomething.org|1382730017|opengraph_meta|157.55.32.184|http://www.dosomething.org/actnow/volunteer/computer-trainer-ghana-west-africa-0||0||Already output og:description
Oct 25 19:40:17 php2 dosomething: http://www.dosomething.org|1382730017|opengraph_meta|157.55.32.184|http://www.dosomething.org/actnow/volunteer/computer-trainer-ghana-west-africa-0||0||Already output og:image
Oct 25 19:40:17 php2 dosomething: http://www.dosomething.org|1382730017|opengraph_meta|157.55.32.184|http://www.dosomething.org/actnow/volunteer/computer-trainer-ghana-west-africa-0||0||Already output og:url
Oct 25 19:40:17 php2 dosomething: http://www.dosomething.org|1382730017|opengraph_meta|157.55.32.184|http://www.dosomething.org/actnow/volunteer/computer-trainer-ghana-west-africa-0||0||Already output og:site_name
Oct 25 19:40:21 php2 dosomething: http://www.dosomething.org|1382730021|php|208.115.113.83|http://www.dosomething.org/user/password?destination=clubs/directory%3Fdistance%5Bpostal_code%5D%3D%26distance%5Bsearch_distance%5D%3D10%26distance%5Bsearch_units%5D%3Dmile%26title%3D%26state%3DAll%26page%3D952%26field_club_state_value%3DAll%26start_time%3D1346071202%26field_club_zip_value%3D%26order%3Dfield_club_state%26sort%3Dasc||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:40:22 php2 dosomething: http://www.dosomething.org|1382730022|php|74.60.16.37|http://www.dosomething.org/file/ajax/submitted/field_webform_pictures/und/form-aGirnvKJDknXP0MpMWW0eh-SWH0X_Lpi-d8leHP5Xig|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: group_audience in og_field_audience_autocomplete_validate() (line 691 of /var/www/jenkins-Deploy-413/sites/all/modules/og/og.field.inc).
Oct 25 19:40:22 php2 dosomething: http://www.dosomething.org|1382730022|php|74.60.16.37|http://www.dosomething.org/file/ajax/submitted/field_webform_pictures/und/form-aGirnvKJDknXP0MpMWW0eh-SWH0X_Lpi-d8leHP5Xig|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: group_audience in og_field_audience_autocomplete_validate() (line 692 of /var/www/jenkins-Deploy-413/sites/all/modules/og/og.field.inc).
Oct 25 19:40:22 php2 dosomething: http://www.dosomething.org|1382730022|php|74.60.16.37|http://www.dosomething.org/file/ajax/submitted/field_webform_pictures/und/form-aGirnvKJDknXP0MpMWW0eh-SWH0X_Lpi-d8leHP5Xig|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: field_webform_mobile in dosomething_campaign_report_back_form_alter() (line 66 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/features/dosomething_campaign_report_back/dosomething_campaign_report_back.module).
Oct 25 19:40:22 php2 dosomething: http://www.dosomething.org|1382730022|php|74.60.16.37|http://www.dosomething.org/file/ajax/submitted/field_webform_pictures/und/form-aGirnvKJDknXP0MpMWW0eh-SWH0X_Lpi-d8leHP5Xig|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: field_webform_email in dosomething_campaign_report_back_form_alter() (line 73 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/features/dosomething_campaign_report_back/dosomething_campaign_report_back.module).
Oct 25 19:40:25 php2 dosomething: http://www.dosomething.org|1382730025|php|71.93.240.14|http://www.dosomething.org/campaign/join/731029|http://www.dosomething.org/campaign/join/731029|1454561||Notice: Undefined index: tags in dosomething_mandrill_mandrill_mail_alter() (line 327 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:40:25 php2 dosomething: http://www.dosomething.org|1382730025|php|71.93.240.14|http://www.dosomething.org/campaign/join/731029|http://www.dosomething.org/campaign/join/731029|1454561||Warning: array_merge(): Argument #2 is not an array in dosomething_mandrill_mandrill_mail_alter() (line 327 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:40:25 php2 dosomething: http://www.dosomething.org|1382730025|php|71.93.240.14|http://www.dosomething.org/campaign/join/731029|http://www.dosomething.org/campaign/join/731029|1454561||Notice: Undefined index: message in dosomething_mandrill_mandrill_mail_alter() (line 346 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:40:25 php2 dosomething: http://www.dosomething.org|1382730025|php|71.93.240.14|http://www.dosomething.org/campaign/join/731029|http://www.dosomething.org/campaign/join/731029|1454561||Warning: Invalid argument supplied for foreach() in dosomething_mandrill_mandrill_mail_alter() (line 346 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:40:25 php2 dosomething: http://www.dosomething.org|1382730025|php|71.93.240.14|http://www.dosomething.org/campaign/join/731029|http://www.dosomething.org/campaign/join/731029|1454561||Notice: Undefined index: merge_vars in dosomething_mandrill_mandrill_mail_alter() (line 365 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:40:25 php2 dosomething: http://www.dosomething.org|1382730025|php|71.93.240.14|http://www.dosomething.org/campaign/join/731029|http://www.dosomething.org/campaign/join/731029|1454561||Notice: Undefined index: merge_var_name in dosomething_mandrill_mandrill_mail_alter() (line 376 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:40:25 php2 dosomething: http://www.dosomething.org|1382730025|php|71.93.240.14|http://www.dosomething.org/campaign/join/731029|http://www.dosomething.org/campaign/join/731029|1454561||Notice: Undefined index: merge_var_content in dosomething_mandrill_mandrill_mail_alter() (line 377 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:40:25 php2 dosomething: http://www.dosomething.org|1382730025|php|71.93.240.14|http://www.dosomething.org/campaign/join/731029|http://www.dosomething.org/campaign/join/731029|1454561||Warning: array_merge(): Argument #1 is not an array in dosomething_mandrill_mandrill_mail_alter() (line 395 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:40:26 php2 dosomething: http://www.dosomething.org|1382730026|dosomething_mandrill|71.93.240.14|http://www.dosomething.org/campaign/join/731029|http://www.dosomething.org/campaign/join/731029|1454561||To: [email protected] - Key: fiftycans13.
Oct 25 19:40:26 php2 dosomething: http://www.dosomething.org|1382730026|php|23.22.81.52|http://www.dosomething.org/user/login?destination=node/29176||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:40:37 php2 dosomething: http://www.dosomething.org|1382730037|php|71.93.240.14|http://www.dosomething.org/scholarships|http://www.dosomething.org/front|1454570||Notice: Undefined index: mid-left in include() (line 56 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_panels/plugins/layouts/landings/dosomething-panels-landings.tpl.php).
Oct 25 19:40:37 php2 dosomething: http://www.dosomething.org|1382730037|php|71.93.240.14|http://www.dosomething.org/scholarships|http://www.dosomething.org/front|1454570||Notice: Undefined index: mid-center in include() (line 56 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_panels/plugins/layouts/landings/dosomething-panels-landings.tpl.php).
Oct 25 19:40:37 php2 dosomething: http://www.dosomething.org|1382730037|php|71.93.240.14|http://www.dosomething.org/scholarships|http://www.dosomething.org/front|1454570||Notice: Undefined index: mid-right in include() (line 56 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_panels/plugins/layouts/landings/dosomething-panels-landings.tpl.php).
Oct 25 19:40:37 php2 dosomething: http://www.dosomething.org|1382730037|php|71.93.240.14|http://www.dosomething.org/scholarships|http://www.dosomething.org/front|1454570||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:40:42 php2 dosomething: http://www.dosomething.org|1382730042|user|127.0.0.1|http://www.dosomething.org/rest/user/register.json?1382730041||1454571||Session opened for [email protected].
Oct 25 19:40:43 php2 dosomething: http://www.dosomething.org|1382730043|user|127.0.0.1|http://www.dosomething.org/rest/user/login.json?1382730043||1454571||Session opened for [email protected].
Oct 25 19:40:43 php2 dosomething: http://www.dosomething.org|1382730043|php|127.0.0.1|http://www.dosomething.org/rest/user/login.json?1382730043||1454571||Notice: Undefined variable: bLoginAsEmail in _dosomething_services_user_resource_login() (line 540 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_services/dosomething_services.module).
Oct 25 19:40:44 php2 dosomething: http://www.dosomething.org|1382730044|php|66.249.73.103|http://www.dosomething.org/webform-submission/94421||0||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:40:45 php2 dosomething: http://www.dosomething.org|1382730045|php|66.249.73.103|http://www.dosomething.org/webform-submission/94421||0||Warning: Missing argument 3 for flag_entity_view() in flag_entity_view() (line 915 of /var/www/jenkins-Deploy-413/sites/all/modules/flag/flag.module).
Oct 25 19:40:45 php2 dosomething: http://www.dosomething.org|1382730045|php|66.249.73.103|http://www.dosomething.org/webform-submission/94421||0||Warning: Missing argument 4 for flag_entity_view() in flag_entity_view() (line 915 of /var/www/jenkins-Deploy-413/sites/all/modules/flag/flag.module).
Oct 25 19:40:45 php2 dosomething: http://www.dosomething.org|1382730045|php|66.249.73.103|http://www.dosomething.org/webform-submission/94421||0||Notice: Undefined variable: view_mode in flag_entity_view() (line 916 of /var/www/jenkins-Deploy-413/sites/all/modules/flag/flag.module).
Oct 25 19:40:45 php2 dosomething: http://www.dosomething.org|1382730045|php|66.249.73.103|http://www.dosomething.org/webform-submission/94421||0||Warning: Missing argument 3 for rules_entity_view() in rules_entity_view() (line 38 of /var/www/jenkins-Deploy-413/sites/all/modules/rules/modules/events.inc).
Oct 25 19:40:45 php2 dosomething: http://www.dosomething.org|1382730045|php|66.249.73.103|http://www.dosomething.org/webform-submission/94421||0||Warning: Missing argument 4 for rules_entity_view() in rules_entity_view() (line 38 of /var/www/jenkins-Deploy-413/sites/all/modules/rules/modules/events.inc).
Oct 25 19:40:45 php2 dosomething: http://www.dosomething.org|1382730045|php|66.249.73.103|http://www.dosomething.org/webform-submission/94421||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:40:48 php2 dosomething: http://www.dosomething.org|1382730048|php|157.55.35.85|http://www.dosomething.org/blog/celebsgonegood?field_blog_type_tid=All&page=199||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:40:56 php2 dosomething: http://www.dosomething.org|1382730056|php|71.93.240.14|http://www.dosomething.org/front|http://www.dosomething.org/user/registration|1454570||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:40:58 php2 dosomething: http://www.dosomething.org|1382730058|access denied|207.110.19.130|http://www.dosomething.org/entityqueue/add/low_income/2552773?destination=application/2552773|http://www.dosomething.org/application/2552773|544311||entityqueue/add/low_income/2552773
Oct 25 19:40:58 php2 dosomething: http://www.dosomething.org|1382730058|php|207.110.19.130|http://www.dosomething.org/entityqueue/add/low_income/2552773?destination=application/2552773|http://www.dosomething.org/application/2552773|544311||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:41:06 php2 dosomething: http://www.dosomething.org|1382730066|php|208.115.113.83|http://www.dosomething.org/user/password?destination=clubs/directory%3Fdistance%5Bpostal_code%5D%3D%26distance%5Bsearch_distance%5D%3D10%26distance%5Bsearch_units%5D%3Dmile%26title%3D%26state%3DAll%26page%3D969%26field_club_state_value%3DAll%26start_time%3D1345767865%26field_club_zip_value%3D%26order%3Dfield_club_state%26sort%3Ddesc||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:41:10 php2 dosomething: http://www.dosomething.org|1382730070|php|66.249.73.103|http://www.dosomething.org/user?destination=webform-submission/802517||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:41:12 php2 dosomething: http://www.dosomething.org|1382730072|php|71.93.240.14|http://www.dosomething.org/scholarships|http://www.dosomething.org/user/1454550/edit/main|1454550||Notice: Undefined index: mid-left in include() (line 56 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_panels/plugins/layouts/landings/dosomething-panels-landings.tpl.php).
Oct 25 19:41:12 php2 dosomething: http://www.dosomething.org|1382730072|php|71.93.240.14|http://www.dosomething.org/scholarships|http://www.dosomething.org/user/1454550/edit/main|1454550||Notice: Undefined index: mid-center in include() (line 56 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_panels/plugins/layouts/landings/dosomething-panels-landings.tpl.php).
Oct 25 19:41:12 php2 dosomething: http://www.dosomething.org|1382730072|php|71.93.240.14|http://www.dosomething.org/scholarships|http://www.dosomething.org/user/1454550/edit/main|1454550||Notice: Undefined index: mid-right in include() (line 56 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_panels/plugins/layouts/landings/dosomething-panels-landings.tpl.php).
Oct 25 19:41:12 php2 dosomething: http://www.dosomething.org|1382730072|php|71.93.240.14|http://www.dosomething.org/scholarships|http://www.dosomething.org/user/1454550/edit/main|1454550||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: type in _webform_components_tree_build() (line 3420 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_components_tree_build() (line 3418 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: pid in _webform_client_form_rule_check() (line 2072 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: extra in _webform_client_form_rule_check() (line 2107 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: cid in _webform_client_form_add_component() (line 2145 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: type in _webform_client_form_add_component() (line 2151 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: in webform_component_include() (line 3527 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined index: form_key in _webform_client_form_add_component() (line 2207 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Warning: Missing argument 3 for flag_entity_view() in flag_entity_view() (line 915 of /var/www/jenkins-Deploy-413/sites/all/modules/flag/flag.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Warning: Missing argument 4 for flag_entity_view() in flag_entity_view() (line 915 of /var/www/jenkins-Deploy-413/sites/all/modules/flag/flag.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Undefined variable: view_mode in flag_entity_view() (line 916 of /var/www/jenkins-Deploy-413/sites/all/modules/flag/flag.module).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Warning: Missing argument 3 for rules_entity_view() in rules_entity_view() (line 38 of /var/www/jenkins-Deploy-413/sites/all/modules/rules/modules/events.inc).
Oct 25 19:41:13 php2 dosomething: http://www.dosomething.org|1382730073|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Warning: Missing argument 4 for rules_entity_view() in rules_entity_view() (line 38 of /var/www/jenkins-Deploy-413/sites/all/modules/rules/modules/events.inc).
Oct 25 19:41:14 php2 dosomething: http://www.dosomething.org|1382730074|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Trying to get property of non-object in dosomething_grant_judging_grant_judging_form_content_type_render() (line 43 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_grant_judging/plugins/content_types/grant_judging_form.inc).
Oct 25 19:41:14 php2 dosomething: http://www.dosomething.org|1382730074|php|207.110.19.130|http://www.dosomething.org/application/2552773|http://www.dosomething.org/applications|544311||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:41:16 php2 dosomething: http://www.dosomething.org|1382730076|php|66.249.73.103|http://www.dosomething.org/user?destination=webform-submission/858494||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:41:17 php2 dosomething: http://www.dosomething.org|1382730077|php|208.115.113.83|http://www.dosomething.org/user/password?destination=clubs/directory%3Fdistance%5Bpostal_code%5D%3D%26distance%5Bsearch_distance%5D%3D10%26distance%5Bsearch_units%5D%3Dmile%26title%3D%26state%3DAll%26page%3D973%26field_club_state_value%3DAll%26start_time%3D1345677740%26field_club_zip_value%3D%26order%3Dfield_club_city%26sort%3Dasc||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:41:20 php2 dosomething: http://www.dosomething.org|1382730080|php|142.4.223.200|http://www.dosomething.org/project/air-max-shoes||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:41:22 php2 dosomething: http://www.dosomething.org|1382730082|access denied|206.211.33.254|http://www.dosomething.org/files/styles/blog_landscape/public/pictures/135885589_0.jpg%3Fitok%3D2p2h3Sdf|https://www.google.com/|0||files/styles/blog_landscape/public/pictures/135885589_0.jpg?itok=2p2h3Sdf
Oct 25 19:41:25 php2 dosomething: http://www.dosomething.org|1382730085|opengraph_meta|166.147.120.152|http://www.dosomething.org/scholarships/opportunities?gclid=CMeukPzesroCFaFDMgoddy4A5A|http://www.google.com/aclk?sa=l&ai=CSsIyschqUt-THKmByQHwwoGgDderg-YC7-LNlH7Qz8xGEAcoCFCuwbnOAmDJ1qyH3KPEEKABzd2V_QPIAQGqBCFP0MoeVTuvJgW4yUz1SNQVbAw4w3BoPxYbUOW0C1iKe_yAB5ui6gKQBwI&num=10&sig=AOD64_1mts6qYpEXuxP6-_MCjN5hv8fVKw&rct=j&frm=1&q=scholarships&ved=0CPMBENEM&adurl=http://www.dosomething.org/scholarships/opportunities|0||Already output og:title
Oct 25 19:41:25 php2 dosomething: http://www.dosomething.org|1382730085|opengraph_meta|166.147.120.152|http://www.dosomething.org/scholarships/opportunities?gclid=CMeukPzesroCFaFDMgoddy4A5A|http://www.google.com/aclk?sa=l&ai=CSsIyschqUt-THKmByQHwwoGgDderg-YC7-LNlH7Qz8xGEAcoCFCuwbnOAmDJ1qyH3KPEEKABzd2V_QPIAQGqBCFP0MoeVTuvJgW4yUz1SNQVbAw4w3BoPxYbUOW0C1iKe_yAB5ui6gKQBwI&num=10&sig=AOD64_1mts6qYpEXuxP6-_MCjN5hv8fVKw&rct=j&frm=1&q=scholarships&ved=0CPMBENEM&adurl=http://www.dosomething.org/scholarships/opportunities|0||Already output og:description
Oct 25 19:41:25 php2 dosomething: http://www.dosomething.org|1382730085|opengraph_meta|166.147.120.152|http://www.dosomething.org/scholarships/opportunities?gclid=CMeukPzesroCFaFDMgoddy4A5A|http://www.google.com/aclk?sa=l&ai=CSsIyschqUt-THKmByQHwwoGgDderg-YC7-LNlH7Qz8xGEAcoCFCuwbnOAmDJ1qyH3KPEEKABzd2V_QPIAQGqBCFP0MoeVTuvJgW4yUz1SNQVbAw4w3BoPxYbUOW0C1iKe_yAB5ui6gKQBwI&num=10&sig=AOD64_1mts6qYpEXuxP6-_MCjN5hv8fVKw&rct=j&frm=1&q=scholarships&ved=0CPMBENEM&adurl=http://www.dosomething.org/scholarships/opportunities|0||Already output og:image
Oct 25 19:41:25 php2 dosomething: http://www.dosomething.org|1382730085|opengraph_meta|166.147.120.152|http://www.dosomething.org/scholarships/opportunities?gclid=CMeukPzesroCFaFDMgoddy4A5A|http://www.google.com/aclk?sa=l&ai=CSsIyschqUt-THKmByQHwwoGgDderg-YC7-LNlH7Qz8xGEAcoCFCuwbnOAmDJ1qyH3KPEEKABzd2V_QPIAQGqBCFP0MoeVTuvJgW4yUz1SNQVbAw4w3BoPxYbUOW0C1iKe_yAB5ui6gKQBwI&num=10&sig=AOD64_1mts6qYpEXuxP6-_MCjN5hv8fVKw&rct=j&frm=1&q=scholarships&ved=0CPMBENEM&adurl=http://www.dosomething.org/scholarships/opportunities|0||Already output og:url
Oct 25 19:41:25 php2 dosomething: http://www.dosomething.org|1382730085|opengraph_meta|166.147.120.152|http://www.dosomething.org/scholarships/opportunities?gclid=CMeukPzesroCFaFDMgoddy4A5A|http://www.google.com/aclk?sa=l&ai=CSsIyschqUt-THKmByQHwwoGgDderg-YC7-LNlH7Qz8xGEAcoCFCuwbnOAmDJ1qyH3KPEEKABzd2V_QPIAQGqBCFP0MoeVTuvJgW4yUz1SNQVbAw4w3BoPxYbUOW0C1iKe_yAB5ui6gKQBwI&num=10&sig=AOD64_1mts6qYpEXuxP6-_MCjN5hv8fVKw&rct=j&frm=1&q=scholarships&ved=0CPMBENEM&adurl=http://www.dosomething.org/scholarships/opportunities|0||Already output og:site_name
Oct 25 19:41:30 php2 dosomething: http://www.dosomething.org|1382730090|page not found|66.249.73.103|http://www.dosomething.org/club/stewart-creek-elementary||0||club/stewart-creek-elementary
Oct 25 19:41:30 php2 dosomething: http://www.dosomething.org|1382730090|opengraph_meta|66.249.73.103|http://www.dosomething.org/club/stewart-creek-elementary||0||Already output og:title
Oct 25 19:41:30 php2 dosomething: http://www.dosomething.org|1382730090|opengraph_meta|66.249.73.103|http://www.dosomething.org/club/stewart-creek-elementary||0||Already output og:description
Oct 25 19:41:30 php2 dosomething: http://www.dosomething.org|1382730090|opengraph_meta|66.249.73.103|http://www.dosomething.org/club/stewart-creek-elementary||0||Already output og:image
Oct 25 19:41:30 php2 dosomething: http://www.dosomething.org|1382730090|opengraph_meta|66.249.73.103|http://www.dosomething.org/club/stewart-creek-elementary||0||Already output og:url
Oct 25 19:41:30 php2 dosomething: http://www.dosomething.org|1382730090|opengraph_meta|66.249.73.103|http://www.dosomething.org/club/stewart-creek-elementary||0||Already output og:site_name
Oct 25 19:41:30 php2 dosomething: http://www.dosomething.org|1382730090|page not found|10.178.49.76|http://www.dosomething.org/files/css/null|http://www.dosomething.org/50cans|1454463||files/css/null
Oct 25 19:41:30 php2 dosomething: http://www.dosomething.org|1382730090|opengraph_meta|10.178.49.76|http://www.dosomething.org/files/css/null|http://www.dosomething.org/50cans|1454463||Already output og:title
Oct 25 19:41:30 php2 dosomething: http://www.dosomething.org|1382730090|opengraph_meta|10.178.49.76|http://www.dosomething.org/files/css/null|http://www.dosomething.org/50cans|1454463||Already output og:description
Oct 25 19:41:30 php2 dosomething: http://www.dosomething.org|1382730090|opengraph_meta|10.178.49.76|http://www.dosomething.org/files/css/null|http://www.dosomething.org/50cans|1454463||Already output og:image
Oct 25 19:41:30 php2 dosomething: http://www.dosomething.org|1382730090|opengraph_meta|10.178.49.76|http://www.dosomething.org/files/css/null|http://www.dosomething.org/50cans|1454463||Already output og:url
Oct 25 19:41:30 php2 dosomething: http://www.dosomething.org|1382730090|opengraph_meta|10.178.49.76|http://www.dosomething.org/files/css/null|http://www.dosomething.org/50cans|1454463||Already output og:site_name
Oct 25 19:41:42 php2 dosomething: http://www.dosomething.org|1382730102|php|156.3.149.11|http://www.dosomething.org/cause/29/resources|http://www.dosomething.org/cause/animals|1452298||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:41:46 php2 dosomething: http://www.dosomething.org|1382730106|php|23.22.81.52|http://www.dosomething.org/user/registration?destination=node/650501/votes%3Fpage%3D21||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:41:49 php2 dosomething: http://www.dosomething.org|1382730109|php|66.249.73.103|http://www.dosomething.org/user?destination=webform-submission/767958||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:41:59 php2 dosomething: http://www.dosomething.org|1382730119|php|204.113.171.252|http://www.dosomething.org/cause/physical-and-mental-health|http://www.dosomething.org/social-scholarship/smoking|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:42:01 php2 dosomething: http://www.dosomething.org|1382730121|php|66.249.73.103|http://www.dosomething.org/user?destination=webform-submission/727765||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:42:02 php2 dosomething: http://www.dosomething.org|1382730122|php|94.3.63.171|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|0||Notice: Undefined index: in webform_submission_data() (line 26 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/includes/webform.submissions.inc).
Oct 25 19:42:02 php2 dosomething: http://www.dosomething.org|1382730122|php|94.3.63.171|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|0||Notice: Undefined index: in webform_rules_rules_invoke_event() (line 122 of /var/www/jenkins-Deploy-413/sites/all/modules/webform_rules/webform_rules.module).
Oct 25 19:42:02 php2 dosomething: http://www.dosomething.org|1382730122|php|94.3.63.171|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|0||Notice: Undefined index: mobile in dosomething_api_user_create() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:42:02 php2 dosomething: http://www.dosomething.org|1382730122|php|94.3.63.171|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|0||Notice: Undefined index: mobile in dosomething_api_user_create() (line 253 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:42:02 php2 dosomething: http://www.dosomething.org|1382730122|php|94.3.63.171|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|0||Notice: Undefined index: email in dosomething_api_user_create() (line 260 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:42:02 php2 dosomething: http://www.dosomething.org|1382730122|php|94.3.63.171|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|0||Notice: Undefined index: mobile in dosomething_api_user_create() (line 260 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:42:02 php2 dosomething: http://www.dosomething.org|1382730122|Api|94.3.63.171|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|0||A user was successfully created with the email / cell
Oct 25 19:42:03 php2 dosomething: http://www.dosomething.org|1382730123|php|71.93.240.14|http://www.dosomething.org/grants|http://www.dosomething.org/scholarships/opportunities?sid=2603773|1454527||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:42:05 php2 dosomething: http://www.dosomething.org|1382730125|php|71.93.240.14|http://www.dosomething.org/campaign/join/731029|http://www.dosomething.org/scholarships|1454550||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:42:06 php2 dosomething: http://www.dosomething.org|1382730126|page not found|66.249.73.151|http://www.dosomething.org/club/central-high-school||0||club/central-high-school
Oct 25 19:42:06 php2 dosomething: http://www.dosomething.org|1382730126|opengraph_meta|66.249.73.151|http://www.dosomething.org/club/central-high-school||0||Already output og:title
Oct 25 19:42:06 php2 dosomething: http://www.dosomething.org|1382730126|opengraph_meta|66.249.73.151|http://www.dosomething.org/club/central-high-school||0||Already output og:description
Oct 25 19:42:06 php2 dosomething: http://www.dosomething.org|1382730126|opengraph_meta|66.249.73.151|http://www.dosomething.org/club/central-high-school||0||Already output og:image
Oct 25 19:42:06 php2 dosomething: http://www.dosomething.org|1382730126|opengraph_meta|66.249.73.151|http://www.dosomething.org/club/central-high-school||0||Already output og:url
Oct 25 19:42:06 php2 dosomething: http://www.dosomething.org|1382730126|opengraph_meta|66.249.73.151|http://www.dosomething.org/club/central-high-school||0||Already output og:site_name
Oct 25 19:42:07 php2 dosomething: http://www.dosomething.org|1382730127|php|94.3.63.171|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|0||Notice: Undefined index: in webform_submission_data() (line 26 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/includes/webform.submissions.inc).
Oct 25 19:42:07 php2 dosomething: http://www.dosomething.org|1382730127|php|94.3.63.171|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|0||Notice: Undefined index: in webform_rules_rules_invoke_event() (line 122 of /var/www/jenkins-Deploy-413/sites/all/modules/webform_rules/webform_rules.module).
Oct 25 19:42:07 php2 dosomething: http://www.dosomething.org|1382730127|php|94.3.63.171|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|0||Notice: Undefined index: mobile in dosomething_api_user_create() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:42:07 php2 dosomething: http://www.dosomething.org|1382730127|user|94.3.63.171|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|0||PDOException: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'Charlie-17' for key 'name': INSERT INTO {users} (uid, name, pass, mail, created, status) VALUES (:db_insert_placeholder_0, :db_insert_placeholder_1, :db_insert_placeholder_2, :db_insert_placeholder_3, :db_insert_placeholder_4, :db_insert_placeholder_5); Array#012(#012 [:db_insert_placeholder_0] => 1454579#012 [:db_insert_placeholder_1] => Charlie-17#012 [:db_insert_placeholder_2] => $S$Dtro2trS5IDuBHFWA3wl2oGQYRn1mrOGXenj58sOVFEEu4ktlkPN#012 [:db_insert_placeholder_3] => @mobile#012 [:db_insert_placeholder_4] => 1382730125#012 [:db_insert_placeholder_5] => 1#012)#012 in drupal_write_record() (line 7136 of /var/www/jenkins-Deploy-413/includes/common.inc).
Oct 25 19:42:07 php2 dosomething: http://www.dosomething.org|1382730127|php|94.3.63.171|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|http://www.dosomething.org/quiz/which-celebrity-kid-are-you|0||PDOException: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'Charlie-17' for key 'name': INSERT INTO {users} (uid, name, pass, mail, created, status) VALUES (:db_insert_placeholder_0, :db_insert_placeholder_1, :db_insert_placeholder_2, :db_insert_placeholder_3, :db_insert_placeholder_4, :db_insert_placeholder_5); Array#012(#012 [:db_insert_placeholder_0] => 1454579#012 [:db_insert_placeholder_1] => Charlie-17#012 [:db_insert_placeholder_2] => $S$Dtro2trS5IDuBHFWA3wl2oGQYRn1mrOGXenj58sOVFEEu4ktlkPN#012 [:db_insert_placeholder_3] => @mobile#012 [:db_insert_placeholder_4] => 1382730125#012 [:db_insert_placeholder_5] => 1#012)#012 in drupal_write_record() (line 7136 of /var/www/jenkins-Deploy-413/includes/common.inc).
Oct 25 19:42:11 php2 dosomething: http://www.dosomething.org|1382730131|php|72.20.153.250|http://www.dosomething.org/search/animal%20testing%20facts|http://www.dosomething.org/|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:42:12 php2 dosomething: http://www.dosomething.org|1382730132|php|66.249.73.103|http://www.dosomething.org/user?destination=webform-submission/738249||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:42:12 php2 dosomething: http://www.dosomething.org|1382730132|php|97.68.209.114|http://www.dosomething.org/||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:42:14 php2 dosomething: http://www.dosomething.org|1382730134|php|74.60.16.37|http://www.dosomething.org/file/ajax/submitted/field_webform_pictures/und/form-aGirnvKJDknXP0MpMWW0eh-SWH0X_Lpi-d8leHP5Xig|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: group_audience in og_field_audience_autocomplete_validate() (line 691 of /var/www/jenkins-Deploy-413/sites/all/modules/og/og.field.inc).
Oct 25 19:42:14 php2 dosomething: http://www.dosomething.org|1382730134|php|74.60.16.37|http://www.dosomething.org/file/ajax/submitted/field_webform_pictures/und/form-aGirnvKJDknXP0MpMWW0eh-SWH0X_Lpi-d8leHP5Xig|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: group_audience in og_field_audience_autocomplete_validate() (line 692 of /var/www/jenkins-Deploy-413/sites/all/modules/og/og.field.inc).
Oct 25 19:42:14 php2 dosomething: http://www.dosomething.org|1382730134|php|74.60.16.37|http://www.dosomething.org/file/ajax/submitted/field_webform_pictures/und/form-aGirnvKJDknXP0MpMWW0eh-SWH0X_Lpi-d8leHP5Xig|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: field_webform_mobile in dosomething_campaign_report_back_form_alter() (line 66 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/features/dosomething_campaign_report_back/dosomething_campaign_report_back.module).
Oct 25 19:42:14 php2 dosomething: http://www.dosomething.org|1382730134|php|74.60.16.37|http://www.dosomething.org/file/ajax/submitted/field_webform_pictures/und/form-aGirnvKJDknXP0MpMWW0eh-SWH0X_Lpi-d8leHP5Xig|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: field_webform_email in dosomething_campaign_report_back_form_alter() (line 73 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/features/dosomething_campaign_report_back/dosomething_campaign_report_back.module).
Oct 25 19:42:16 php2 dosomething: http://www.dosomething.org|1382730136|php|71.93.240.14|http://www.dosomething.org/grants/contact-me|http://www.dosomething.org/grants|1454527||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:42:16 php2 dosomething: http://www.dosomething.org|1382730136|php|71.93.240.14|http://www.dosomething.org/grants/contact-me|http://www.dosomething.org/grants|1454527||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:42:16 php2 dosomething: http://www.dosomething.org|1382730136|php|71.93.240.14|http://www.dosomething.org/grants/contact-me|http://www.dosomething.org/grants|1454527||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:42:16 php2 dosomething: http://www.dosomething.org|1382730136|php|71.93.240.14|http://www.dosomething.org/grants/contact-me|http://www.dosomething.org/grants|1454527||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:42:16 php2 dosomething: http://www.dosomething.org|1382730136|php|71.93.240.14|http://www.dosomething.org/grants/contact-me|http://www.dosomething.org/grants|1454527||Notice: Undefined index: in webform_submission_data() (line 26 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/includes/webform.submissions.inc).
Oct 25 19:42:16 php2 dosomething: http://www.dosomething.org|1382730136|php|71.93.240.14|http://www.dosomething.org/grants/contact-me|http://www.dosomething.org/grants|1454527||Notice: Undefined index: in webform_rules_rules_invoke_event() (line 122 of /var/www/jenkins-Deploy-413/sites/all/modules/webform_rules/webform_rules.module).
Oct 25 19:42:17 php2 dosomething: http://www.dosomething.org|1382730137|access denied|195.74.38.67|http://www.dosomething.org/files/styles/blog_landscape/public/pictures/97691030.jpg%3Fitok%3Dfzses3s4||0||files/styles/blog_landscape/public/pictures/97691030.jpg?itok=fzses3s4
Oct 25 19:42:18 php2 dosomething: http://www.dosomething.org|1382730138|php|76.109.182.69|http://www.dosomething.org/issues/bullying|http://www.dosomething.org/cause/bullying-and-violence|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:42:18 php2 dosomething: http://www.dosomething.org|1382730138|php|66.249.73.103|http://www.dosomething.org/user?destination=webform-submission/831006||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:42:20 php2 dosomething: http://www.dosomething.org|1382730140|opengraph_meta|24.131.232.17|http://www.dosomething.org/scholarships/opportunities?gclid=CNXHlJbfsroCFYee4AodYBEApA|http://www.google.com/aclk?sa=l&ai=C5H1njslqUuaZNfLKswexpoDAA9erg-YCh-_NlH7Xs6UdCAAQAygDUK7Buc4CYMneoIzQpPQPoAHN3ZX9A8gBAaoEIU_QOwNojlk0iIbb41AbB09Ma8jk5fdcvM1vL2YnBNBThIAHm6LqApAHAQ&sig=AOD64_0zL3d-bk8-OEn-jrnDd1IFGhnjDA&rct=j&q=random+drawing+scholarships&ved=0CEEQ0Qw&adurl=http://www.dosomething.org/scholarships/opportunities|0||Already output og:title
Oct 25 19:42:20 php2 dosomething: http://www.dosomething.org|1382730140|opengraph_meta|24.131.232.17|http://www.dosomething.org/scholarships/opportunities?gclid=CNXHlJbfsroCFYee4AodYBEApA|http://www.google.com/aclk?sa=l&ai=C5H1njslqUuaZNfLKswexpoDAA9erg-YCh-_NlH7Xs6UdCAAQAygDUK7Buc4CYMneoIzQpPQPoAHN3ZX9A8gBAaoEIU_QOwNojlk0iIbb41AbB09Ma8jk5fdcvM1vL2YnBNBThIAHm6LqApAHAQ&sig=AOD64_0zL3d-bk8-OEn-jrnDd1IFGhnjDA&rct=j&q=random+drawing+scholarships&ved=0CEEQ0Qw&adurl=http://www.dosomething.org/scholarships/opportunities|0||Already output og:description
Oct 25 19:42:20 php2 dosomething: http://www.dosomething.org|1382730140|opengraph_meta|24.131.232.17|http://www.dosomething.org/scholarships/opportunities?gclid=CNXHlJbfsroCFYee4AodYBEApA|http://www.google.com/aclk?sa=l&ai=C5H1njslqUuaZNfLKswexpoDAA9erg-YCh-_NlH7Xs6UdCAAQAygDUK7Buc4CYMneoIzQpPQPoAHN3ZX9A8gBAaoEIU_QOwNojlk0iIbb41AbB09Ma8jk5fdcvM1vL2YnBNBThIAHm6LqApAHAQ&sig=AOD64_0zL3d-bk8-OEn-jrnDd1IFGhnjDA&rct=j&q=random+drawing+scholarships&ved=0CEEQ0Qw&adurl=http://www.dosomething.org/scholarships/opportunities|0||Already output og:image
Oct 25 19:42:20 php2 dosomething: http://www.dosomething.org|1382730140|opengraph_meta|24.131.232.17|http://www.dosomething.org/scholarships/opportunities?gclid=CNXHlJbfsroCFYee4AodYBEApA|http://www.google.com/aclk?sa=l&ai=C5H1njslqUuaZNfLKswexpoDAA9erg-YCh-_NlH7Xs6UdCAAQAygDUK7Buc4CYMneoIzQpPQPoAHN3ZX9A8gBAaoEIU_QOwNojlk0iIbb41AbB09Ma8jk5fdcvM1vL2YnBNBThIAHm6LqApAHAQ&sig=AOD64_0zL3d-bk8-OEn-jrnDd1IFGhnjDA&rct=j&q=random+drawing+scholarships&ved=0CEEQ0Qw&adurl=http://www.dosomething.org/scholarships/opportunities|0||Already output og:url
Oct 25 19:42:20 php2 dosomething: http://www.dosomething.org|1382730140|opengraph_meta|24.131.232.17|http://www.dosomething.org/scholarships/opportunities?gclid=CNXHlJbfsroCFYee4AodYBEApA|http://www.google.com/aclk?sa=l&ai=C5H1njslqUuaZNfLKswexpoDAA9erg-YCh-_NlH7Xs6UdCAAQAygDUK7Buc4CYMneoIzQpPQPoAHN3ZX9A8gBAaoEIU_QOwNojlk0iIbb41AbB09Ma8jk5fdcvM1vL2YnBNBThIAHm6LqApAHAQ&sig=AOD64_0zL3d-bk8-OEn-jrnDd1IFGhnjDA&rct=j&q=random+drawing+scholarships&ved=0CEEQ0Qw&adurl=http://www.dosomething.org/scholarships/opportunities|0||Already output og:site_name
Oct 25 19:42:22 php2 dosomething: http://www.dosomething.org|1382730142|php|208.115.113.83|http://www.dosomething.org/user/password?destination=clubs/directory%3Fdistance%5Bpostal_code%5D%3D%26distance%5Bsearch_distance%5D%3D10%26distance%5Bsearch_units%5D%3Dmile%26title%3D%26state%3DAll%26page%3D995%26field_club_state_value%3DAll%26start_time%3D1345883141%26field_club_zip_value%3D%26order%3Dfield_club_state%26sort%3Dasc||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:42:38 php2 dosomething: http://www.dosomething.org|1382730158|php|157.55.35.117|http://www.dosomething.org/print/project/ps-124-music-instrument-drive||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:42:42 php2 dosomething: http://www.dosomething.org|1382730162|access denied|207.110.19.130|http://www.dosomething.org/entityqueue/add/low_income/2552773?destination=application/2552773|http://www.dosomething.org/application/2552773|544311||entityqueue/add/low_income/2552773
Oct 25 19:42:42 php2 dosomething: http://www.dosomething.org|1382730162|php|207.110.19.130|http://www.dosomething.org/entityqueue/add/low_income/2552773?destination=application/2552773|http://www.dosomething.org/application/2552773|544311||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:42:44 php2 dosomething: http://www.dosomething.org|1382730164|user|127.0.0.1|http://www.dosomething.org/rest/user/login.json?1382730164||0||Invalid login attempt for [email protected].
Oct 25 19:42:44 php2 dosomething: http://www.dosomething.org|1382730164|user|127.0.0.1|http://www.dosomething.org/rest/user/login.json?1382730164||1454536||Session opened for Isabel Ayala0.
Oct 25 19:42:52 php2 dosomething: http://www.dosomething.org|1382730172|php|76.109.182.69|http://www.dosomething.org/causes|http://www.dosomething.org/cause/9085/act-now?page=1|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:42:57 php2 dosomething: http://www.dosomething.org|1382730177|php|23.22.81.52|http://www.dosomething.org/user?destination=node/589065/votes%3Fpage%3D15%26sort%3Dasc%26order%3DVote||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:42:58 php2 dosomething: http://www.dosomething.org|1382730178|php|163.153.27.214|http://www.dosomething.org/campaigns|http://www.dosomething.org/50cans|1445105||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:43:03 php2 dosomething: http://www.dosomething.org|1382730183|php|76.109.182.69|http://www.dosomething.org/cause/homelessness-and-poverty|http://www.dosomething.org/causes|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:43:04 php2 dosomething: http://www.dosomething.org|1382730184|php|71.93.240.14|http://www.dosomething.org/user/1454550/edit/main|http://www.dosomething.org/user/1454550/complete-profile|1454550||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:43:05 php2 dosomething: http://www.dosomething.org|1382730185|php|208.115.113.83|http://www.dosomething.org/user/password?destination=clubs/directory%3Fdistance%5Bpostal_code%5D%3D%26distance%5Bsearch_distance%5D%3D10%26distance%5Bsearch_units%5D%3Dmile%26title%3D%26state%3DAll%26page%3D782%26field_club_state_value%3DAll%26field_club_zip_value%3D%26start_time%3D1346071215%26order%3Dtitle%26sort%3Dasc||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:43:11 php2 dosomething: http://www.dosomething.org|1382730191|php|76.109.182.69|http://www.dosomething.org/issues/homelessness|http://www.dosomething.org/cause/homelessness-and-poverty|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:43:21 php2 dosomething: http://www.dosomething.org|1382730201|php|169.227.253.124|http://www.dosomething.org/webform/mobile-referral-form|http://www.dosomething.org/social-scholarship/grandparents|0||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:43:21 php2 dosomething: http://www.dosomething.org|1382730201|php|169.227.253.124|http://www.dosomething.org/webform/mobile-referral-form|http://www.dosomething.org/social-scholarship/grandparents|0||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:43:21 php2 dosomething: http://www.dosomething.org|1382730201|php|169.227.253.124|http://www.dosomething.org/webform/mobile-referral-form|http://www.dosomething.org/social-scholarship/grandparents|0||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:43:25 php2 dosomething: http://www.dosomething.org|1382730205|php|75.145.145.113|http://www.dosomething.org/women|http://www.dosomething.org/women|0||Notice: Undefined index: tags in dosomething_mandrill_mandrill_mail_alter() (line 327 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:43:25 php2 dosomething: http://www.dosomething.org|1382730205|php|75.145.145.113|http://www.dosomething.org/women|http://www.dosomething.org/women|0||Warning: array_merge(): Argument #2 is not an array in dosomething_mandrill_mandrill_mail_alter() (line 327 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:43:25 php2 dosomething: http://www.dosomething.org|1382730205|php|75.145.145.113|http://www.dosomething.org/women|http://www.dosomething.org/women|0||Notice: Undefined index: message in dosomething_mandrill_mandrill_mail_alter() (line 346 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:43:25 php2 dosomething: http://www.dosomething.org|1382730205|php|75.145.145.113|http://www.dosomething.org/women|http://www.dosomething.org/women|0||Warning: Invalid argument supplied for foreach() in dosomething_mandrill_mandrill_mail_alter() (line 346 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:43:25 php2 dosomething: http://www.dosomething.org|1382730205|php|75.145.145.113|http://www.dosomething.org/women|http://www.dosomething.org/women|0||Notice: Undefined index: merge_vars in dosomething_mandrill_mandrill_mail_alter() (line 365 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:43:25 php2 dosomething: http://www.dosomething.org|1382730205|php|75.145.145.113|http://www.dosomething.org/women|http://www.dosomething.org/women|0||Notice: Undefined index: merge_var_name in dosomething_mandrill_mandrill_mail_alter() (line 376 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:43:25 php2 dosomething: http://www.dosomething.org|1382730205|php|75.145.145.113|http://www.dosomething.org/women|http://www.dosomething.org/women|0||Notice: Undefined index: merge_var_content in dosomething_mandrill_mandrill_mail_alter() (line 377 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:43:25 php2 dosomething: http://www.dosomething.org|1382730205|php|75.145.145.113|http://www.dosomething.org/women|http://www.dosomething.org/women|0||Warning: array_merge(): Argument #1 is not an array in dosomething_mandrill_mandrill_mail_alter() (line 395 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:43:27 php2 dosomething: http://www.dosomething.org|1382730207|dosomething_mandrill|75.145.145.113|http://www.dosomething.org/women|http://www.dosomething.org/women|0||To: [email protected] - Key: 25women.
Oct 25 19:43:27 php2 dosomething: http://www.dosomething.org|1382730207|dosomething_subscribe_mobilecommons|75.145.145.113|http://www.dosomething.org/women|http://www.dosomething.org/women|0||Referral signup response = stdClass Object#012(#012 [request] => POST /profiles/join HTTP/1.0#015#012Content-type: application/x-www-form-urlencoded#015#012Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8#015#012User-Agent: Drupal (+http://drupal.org/)#015#012Host: dosomething.mcommons.com#015#012Content-Length: 233#015#012#015#012person[phone]=17738276658&opt_in_path[]=159279&friends[]=18045499138&friends[]=17739700851&friends[]=17082563163&friends[]=17734035564&friends[]=17087177219&friends[]=13129297277&friends_opt_in_path=159283&person[first_name]=Raashida#012 [data] => OK! (To have your browser automatically redirect, add a well-formed redirect_to= parameter to your post)#012 [protocol] => HTTP/1.1#012 [status_message] => OK#012 [headers] => Array#012 (#012 [date] => Fri, 25 Oct 2013 19:43:27 GMT#012 [server] => Apache#012 [etag] => "230fd63b57db094625b6e49be22fba98"#012 [x-runtime] => 6#012 [cache-control] => max-age=0, private, no-store, no-cache#012 [x-powered-by] => Phusion Passenger 4.0.10#012 [content-length] => 104#012 [status] => 200 OK#012 [vary] => Accept-Encoding#012 [content-type] => text/html; charset=utf-8#012 [via] => 1.0 https-proxy#012 [connection] => close#012 )#012#012 [code] => 200#012)
Oct 25 19:43:29 php2 dosomething: http://www.dosomething.org|1382730209|php|68.114.34.12|http://www.dosomething.org/survivors/report-back|http://www.dosomething.org/survivors|1446242||Notice: Undefined index: field_webform_mobile in dosomething_campaign_report_back_form_alter() (line 66 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/features/dosomething_campaign_report_back/dosomething_campaign_report_back.module).
Oct 25 19:43:29 php2 dosomething: http://www.dosomething.org|1382730209|php|68.114.34.12|http://www.dosomething.org/survivors/report-back|http://www.dosomething.org/survivors|1446242||Notice: Undefined index: field_webform_email in dosomething_campaign_report_back_form_alter() (line 73 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/features/dosomething_campaign_report_back/dosomething_campaign_report_back.module).
Oct 25 19:43:36 php2 dosomething: http://www.dosomething.org|1382730216|php|99.105.112.28|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1454569||Notice: Undefined index: in webform_submission_data() (line 26 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/includes/webform.submissions.inc).
Oct 25 19:43:36 php2 dosomething: http://www.dosomething.org|1382730216|php|99.105.112.28|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1454569||Notice: Undefined index: in webform_rules_rules_invoke_event() (line 122 of /var/www/jenkins-Deploy-413/sites/all/modules/webform_rules/webform_rules.module).
Oct 25 19:43:36 php2 dosomething: http://www.dosomething.org|1382730216|php|99.105.112.28|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1454569||Notice: Undefined index: in _webform_filter_values() (line 2953 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:43:36 php2 dosomething: http://www.dosomething.org|1382730216|php|99.105.112.28|http://www.dosomething.org/footlocker/apply/status/application|http://www.dosomething.org/footlocker/apply/status/application|1454569||Notice: Undefined index: in webform_component_include() (line 3527 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:43:37 php2 dosomething: http://www.dosomething.org|1382730217|php|71.93.240.14|http://www.dosomething.org/user/1454550/edit/main|http://www.dosomething.org/user/1454550/edit/main|1454550||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:43:38 php2 dosomething: http://www.dosomething.org|1382730218|opengraph_meta|157.55.32.184|http://www.dosomething.org/blog/celebsgonegood/qa-exclusive-surfer-bethany-hamilton-talks-shark-attack-world-wide-traveling-and||0||Already output og:title
Oct 25 19:43:38 php2 dosomething: http://www.dosomething.org|1382730218|opengraph_meta|157.55.32.184|http://www.dosomething.org/blog/celebsgonegood/qa-exclusive-surfer-bethany-hamilton-talks-shark-attack-world-wide-traveling-and||0||Already output og:description
Oct 25 19:43:38 php2 dosomething: http://www.dosomething.org|1382730218|opengraph_meta|157.55.32.184|http://www.dosomething.org/blog/celebsgonegood/qa-exclusive-surfer-bethany-hamilton-talks-shark-attack-world-wide-traveling-and||0||Already output og:image
Oct 25 19:43:38 php2 dosomething: http://www.dosomething.org|1382730218|opengraph_meta|157.55.32.184|http://www.dosomething.org/blog/celebsgonegood/qa-exclusive-surfer-bethany-hamilton-talks-shark-attack-world-wide-traveling-and||0||Already output og:type
Oct 25 19:43:38 php2 dosomething: http://www.dosomething.org|1382730218|opengraph_meta|157.55.32.184|http://www.dosomething.org/blog/celebsgonegood/qa-exclusive-surfer-bethany-hamilton-talks-shark-attack-world-wide-traveling-and||0||Already output og:url
Oct 25 19:43:38 php2 dosomething: http://www.dosomething.org|1382730218|opengraph_meta|157.55.32.184|http://www.dosomething.org/blog/celebsgonegood/qa-exclusive-surfer-bethany-hamilton-talks-shark-attack-world-wide-traveling-and||0||Already output og:site_name
Oct 25 19:43:39 php2 dosomething: http://www.dosomething.org|1382730219|php|180.76.5.18|http://www.dosomething.org/blog/celebsgonegood/brad%20%20%C2%BF%C2%BD%C3%AF%C2%BF%C2%BDs-pad-just-got-more-rad?field_blog_type_tid=All&taxonomy_vocabulary_5_tid=All&page=478||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:43:41 php2 dosomething: http://www.dosomething.org|1382730221|php|93.115.94.85|http://www.dosomething.org/user/registration?destination=node/721530%3Ffrom%3Dfineartamerica|http://fineartamerica.com/referraltransfer.php|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:43:50 php2 dosomething: http://www.dosomething.org|1382730230|page not found|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||projects/webform-submission/726460
Oct 25 19:43:50 php2 dosomething: http://www.dosomething.org|1382730230|opengraph_meta|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Already output og:title
Oct 25 19:43:50 php2 dosomething: http://www.dosomething.org|1382730230|opengraph_meta|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Already output og:description
Oct 25 19:43:50 php2 dosomething: http://www.dosomething.org|1382730230|opengraph_meta|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Already output og:image
Oct 25 19:43:50 php2 dosomething: http://www.dosomething.org|1382730230|opengraph_meta|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Already output og:url
Oct 25 19:43:50 php2 dosomething: http://www.dosomething.org|1382730230|opengraph_meta|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Already output og:site_name
Oct 25 19:43:51 php2 dosomething: http://www.dosomething.org|1382730231|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:43:51 php2 dosomething: http://www.dosomething.org|1382730231|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_serve_page_from_cache() (line 1308 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:43:51 php2 dosomething: http://www.dosomething.org|1382730231|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:43:51 php2 dosomething: http://www.dosomething.org|1382730231|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:43:51 php2 dosomething: http://www.dosomething.org|1382730231|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1212 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:43:51 php2 dosomething: http://www.dosomething.org|1382730231|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:43:51 php2 dosomething: http://www.dosomething.org|1382730231|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:43:51 php2 dosomething: http://www.dosomething.org|1382730231|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:43:51 php2 dosomething: http://www.dosomething.org|1382730231|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:43:51 php2 dosomething: http://www.dosomething.org|1382730231|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:43:51 php2 dosomething: http://www.dosomething.org|1382730231|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1212 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:43:51 php2 dosomething: http://www.dosomething.org|1382730231|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:43:51 php2 dosomething: http://www.dosomething.org|1382730231|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:43:51 php2 dosomething: http://www.dosomething.org|1382730231|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:43:51 php2 dosomething: http://www.dosomething.org|1382730231|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:43:51 php2 dosomething: http://www.dosomething.org|1382730231|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:43:51 php2 dosomething: http://www.dosomething.org|1382730231|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:43:51 php2 dosomething: http://www.dosomething.org|1382730231|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_serve_page_from_cache() (line 1344 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:43:51 php2 dosomething: http://www.dosomething.org|1382730231|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_serve_page_from_cache() (line 1348 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:43:51 php2 dosomething: http://www.dosomething.org|1382730231|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Warning: ini_set(): Cannot change zlib.output_compression - headers already sent in drupal_serve_page_from_cache() (line 1353 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:43:51 php2 dosomething: http://www.dosomething.org|1382730231|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726460||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_serve_page_from_cache() (line 1354 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:43:54 php2 dosomething: http://www.dosomething.org|1382730234|php|71.93.240.14|http://www.dosomething.org/user|http://www.dosomething.org/user/registration|1454540||Notice: Undefined index: locality in dosomething_user_my_somethings_preprocess_dosomething_profile_info() (line 618 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/features/dosomething_user_my_somethings/dosomething_user_my_somethings.module).
Oct 25 19:43:54 php2 dosomething: http://www.dosomething.org|1382730234|php|71.93.240.14|http://www.dosomething.org/user|http://www.dosomething.org/user/registration|1454540||Notice: Undefined index: administrative_area in dosomething_user_my_somethings_preprocess_dosomething_profile_info() (line 618 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/features/dosomething_user_my_somethings/dosomething_user_my_somethings.module).
Oct 25 19:43:54 php2 dosomething: http://www.dosomething.org|1382730234|php|71.93.240.14|http://www.dosomething.org/user|http://www.dosomething.org/user/registration|1454540||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:43:56 php2 dosomething: http://www.dosomething.org|1382730236|php|23.22.81.52|http://www.dosomething.org/user/login?destination=node/633271/votes%3Fpage%3D10%26sort%3Dasc%26order%3DTimestamp||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:43:59 php2 dosomething: http://www.dosomething.org|1382730239|dosomething_login|173.161.97.237|http://www.dosomething.org/user/registration?destination=node/731098|http://www.dosomething.org/user/registration?destination=node/731098|0||cell = 2483463013 opt_in = 87681 response = stdClass Object#012(#012 [request] => POST /profiles/join HTTP/1.0#015#012Content-type: application/x-www-form-urlencoded#015#012Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8#015#012User-Agent: Drupal (+http://drupal.org/)#015#012Host: dosomething.mcommons.com#015#012Content-Length: 44#015#012#015#012person[phone]=2483463013&opt_in_path[]=87681#012 [data] => OK! (To have your browser automatically redirect, add a well-formed redirect_to= parameter to your post)#012 [protocol] => HTTP/1.1#012 [status_message] => OK#012 [headers] => Array#012 (#012 [date] => Fri, 25 Oct 2013 19:43:59 GMT#012 [server] => Apache#012 [etag] => "230fd63b57db094625b6e49be22fba98"#012 [x-runtime] => 8#012 [cache-control] => max-age=0, private, no-store, no-cache#012 [x-powered-by] => Phusion Passenger 4.0.10#012 [content-length] => 104#012 [status] => 200 OK#012 [vary] => Accept-Encoding#012 [content-type] => text/html; charset=utf-8#012 [via] => 1.0 https-proxy#012 [connection] => close#012 )#012#012 [code] => 200#012)
Oct 25 19:43:59 php2 dosomething: http://www.dosomething.org|1382730239|user|173.161.97.237|http://www.dosomething.org/user/registration?destination=node/731098|http://www.dosomething.org/user/registration?destination=node/731098|1454584||Session opened for rashaud walker.
Oct 25 19:43:59 php2 dosomething: http://www.dosomething.org|1382730239|php|173.161.97.237|http://www.dosomething.org/user/registration?destination=node/731098|http://www.dosomething.org/user/registration?destination=node/731098|1454584||Notice: Undefined index: und in dosomething_campaign_signup() (line 97 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/features/dosomething_campaign/dosomething_campaign.module).
Oct 25 19:43:59 php2 dosomething: http://www.dosomething.org|1382730239|php|173.161.97.237|http://www.dosomething.org/user/registration?destination=node/731098|http://www.dosomething.org/user/registration?destination=node/731098|1454584||Notice: Undefined index: tags in dosomething_mandrill_mandrill_mail_alter() (line 327 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:43:59 php2 dosomething: http://www.dosomething.org|1382730239|php|173.161.97.237|http://www.dosomething.org/user/registration?destination=node/731098|http://www.dosomething.org/user/registration?destination=node/731098|1454584||Warning: array_merge(): Argument #2 is not an array in dosomething_mandrill_mandrill_mail_alter() (line 327 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:43:59 php2 dosomething: http://www.dosomething.org|1382730239|php|173.161.97.237|http://www.dosomething.org/user/registration?destination=node/731098|http://www.dosomething.org/user/registration?destination=node/731098|1454584||Notice: Undefined index: message in dosomething_mandrill_mandrill_mail_alter() (line 346 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:43:59 php2 dosomething: http://www.dosomething.org|1382730239|php|173.161.97.237|http://www.dosomething.org/user/registration?destination=node/731098|http://www.dosomething.org/user/registration?destination=node/731098|1454584||Warning: Invalid argument supplied for foreach() in dosomething_mandrill_mandrill_mail_alter() (line 346 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:43:59 php2 dosomething: http://www.dosomething.org|1382730239|php|173.161.97.237|http://www.dosomething.org/user/registration?destination=node/731098|http://www.dosomething.org/user/registration?destination=node/731098|1454584||Notice: Undefined index: merge_vars in dosomething_mandrill_mandrill_mail_alter() (line 365 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:43:59 php2 dosomething: http://www.dosomething.org|1382730239|php|173.161.97.237|http://www.dosomething.org/user/registration?destination=node/731098|http://www.dosomething.org/user/registration?destination=node/731098|1454584||Notice: Undefined index: merge_var_name in dosomething_mandrill_mandrill_mail_alter() (line 376 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:43:59 php2 dosomething: http://www.dosomething.org|1382730239|php|173.161.97.237|http://www.dosomething.org/user/registration?destination=node/731098|http://www.dosomething.org/user/registration?destination=node/731098|1454584||Notice: Undefined index: merge_var_content in dosomething_mandrill_mandrill_mail_alter() (line 377 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:43:59 php2 dosomething: http://www.dosomething.org|1382730239|php|173.161.97.237|http://www.dosomething.org/user/registration?destination=node/731098|http://www.dosomething.org/user/registration?destination=node/731098|1454584||Warning: array_merge(): Argument #1 is not an array in dosomething_mandrill_mandrill_mail_alter() (line 395 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:44:00 php2 dosomething: http://www.dosomething.org|1382730240|dosomething_mandrill|173.161.97.237|http://www.dosomething.org/user/registration?destination=node/731098|http://www.dosomething.org/user/registration?destination=node/731098|1454584||To: [email protected] - Key: momm13.
Oct 25 19:44:00 php2 dosomething: http://www.dosomething.org|1382730240|php|173.161.97.237|http://www.dosomething.org/user/registration?destination=node/731098|http://www.dosomething.org/user/registration?destination=node/731098|1454584||Notice: Undefined index: und in _dosomething_login_prepare_member() (line 1273 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_login/dosomething_login.module).
Oct 25 19:44:00 php2 dosomething: http://www.dosomething.org|1382730240|php|173.161.97.237|http://www.dosomething.org/user/registration?destination=node/731098|http://www.dosomething.org/user/registration?destination=node/731098|1454584||Notice: Undefined index: und in _dosomething_login_prepare_member() (line 1285 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_login/dosomething_login.module).
Oct 25 19:44:00 php2 dosomething: http://www.dosomething.org|1382730240|php|173.161.97.237|http://www.dosomething.org/user/registration?destination=node/731098|http://www.dosomething.org/user/registration?destination=node/731098|1454584||Warning: Invalid argument supplied for foreach() in _dosomething_login_prepare_member() (line 1285 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_login/dosomething_login.module).
Oct 25 19:44:00 php2 dosomething: http://www.dosomething.org|1382730240|dsapi|173.161.97.237|http://www.dosomething.org/user/registration?destination=node/731098|http://www.dosomething.org/user/registration?destination=node/731098|1454584||User #1454584 was not posted API endpoint exception 'Exception' with message 'SSL certificate problem, verify that the CA cert is OK. Details:#012error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed' in /var/www/jenkins-Deploy-413/sites/all/libraries/dsapi/lib/DSAPI/Request.php:111#012Stack trace:#012#0 /var/www/jenkins-Deploy-413/sites/all/libraries/dsapi/lib/DSAPI/Request.php(155): Request->_call()#012#1 /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_login/dosomething_login.module(1192): Request->post('users', Array)#012#2 /var/www/jenkins-Deploy-413/includes/form.inc(1464): dosomething_login_register_block_submit(Array, Array)#012#3 /var/www/jenkins-Deploy-413/includes/form.inc(860): form_execute_handlers('submit', Array, Array)#012#4 /var/www/jenkins-Deploy-413/includes/form.inc(374): drupal_process_form('dosomething_log...', Array, Array)#012#5 /var/www/jenkins-Deploy-413/includes/form.inc(131): drupal_build_form('dosomething_log...', Array)#012#6 /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_login/dosomething_login.module(96): drupal_get_form('dosomething_log...', false)#012#7 [internal function]: dosomething_login_page_user_registration()#012#8 /var/www/jenkins-Deploy-413/includes/menu.inc(517): call_user_func_array('dosomething_log...', Array)#012#9 /var/www/jenkins-Deploy-413/index.php(21): menu_execute_active_handler()#012#10 {main}
Oct 25 19:44:05 php2 dosomething: http://www.dosomething.org|1382730245|php|68.114.34.12|http://www.dosomething.org/campaign/join/731007|http://www.dosomething.org/survivors/report-back|1446242||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:44:07 php2 dosomething: http://www.dosomething.org|1382730247|user|186.76.248.190|http://www.dosomething.org/user/login?destination=node/731029|http://www.dosomething.org/user/login?destination=node/731029|985142||Session opened for Emily Wagoner.
Oct 25 19:44:08 php2 dosomething: http://www.dosomething.org|1382730248|page not found|66.249.73.103|http://www.dosomething.org/google.com/desserts%20full%20of%20trash||0||google.com/desserts full of trash
Oct 25 19:44:08 php2 dosomething: http://www.dosomething.org|1382730248|opengraph_meta|66.249.73.103|http://www.dosomething.org/google.com/desserts%20full%20of%20trash||0||Already output og:title
Oct 25 19:44:08 php2 dosomething: http://www.dosomething.org|1382730248|opengraph_meta|66.249.73.103|http://www.dosomething.org/google.com/desserts%20full%20of%20trash||0||Already output og:description
Oct 25 19:44:08 php2 dosomething: http://www.dosomething.org|1382730248|opengraph_meta|66.249.73.103|http://www.dosomething.org/google.com/desserts%20full%20of%20trash||0||Already output og:image
Oct 25 19:44:08 php2 dosomething: http://www.dosomething.org|1382730248|opengraph_meta|66.249.73.103|http://www.dosomething.org/google.com/desserts%20full%20of%20trash||0||Already output og:url
Oct 25 19:44:08 php2 dosomething: http://www.dosomething.org|1382730248|opengraph_meta|66.249.73.103|http://www.dosomething.org/google.com/desserts%20full%20of%20trash||0||Already output og:site_name
Oct 25 19:44:14 php2 dosomething: http://www.dosomething.org|1382730254|php|71.93.240.14|http://www.dosomething.org/cause/animals|http://www.dosomething.org/bullytext|1454534||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:44:16 php2 dosomething: http://www.dosomething.org|1382730256|php|23.22.81.52|http://www.dosomething.org/user/registration?destination=node/633271/votes%3Fpage%3D4%26sort%3Dasc%26order%3DTimestamp||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:44:20 php2 dosomething: http://www.dosomething.org|1382730260|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: in webform_submission_data() (line 26 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/includes/webform.submissions.inc).
Oct 25 19:44:20 php2 dosomething: http://www.dosomething.org|1382730260|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: in webform_rules_rules_invoke_event() (line 122 of /var/www/jenkins-Deploy-413/sites/all/modules/webform_rules/webform_rules.module).
Oct 25 19:44:20 php2 dosomething: http://www.dosomething.org|1382730260|php|71.93.240.14|http://www.dosomething.org/scholarships|http://www.dosomething.org/projects|1454538||Notice: Undefined index: mid-left in include() (line 56 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_panels/plugins/layouts/landings/dosomething-panels-landings.tpl.php).
Oct 25 19:44:20 php2 dosomething: http://www.dosomething.org|1382730260|php|71.93.240.14|http://www.dosomething.org/scholarships|http://www.dosomething.org/projects|1454538||Notice: Undefined index: mid-center in include() (line 56 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_panels/plugins/layouts/landings/dosomething-panels-landings.tpl.php).
Oct 25 19:44:20 php2 dosomething: http://www.dosomething.org|1382730260|php|71.93.240.14|http://www.dosomething.org/scholarships|http://www.dosomething.org/projects|1454538||Notice: Undefined index: mid-right in include() (line 56 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_panels/plugins/layouts/landings/dosomething-panels-landings.tpl.php).
Oct 25 19:44:21 php2 dosomething: http://www.dosomething.org|1382730261|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: mobile in dosomething_api_user_create() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:44:21 php2 dosomething: http://www.dosomething.org|1382730261|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: in webform_submission_data() (line 26 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/includes/webform.submissions.inc).
Oct 25 19:44:21 php2 dosomething: http://www.dosomething.org|1382730261|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: mobile in dosomething_api_user_create() (line 253 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:44:21 php2 dosomething: http://www.dosomething.org|1382730261|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: in webform_rules_rules_invoke_event() (line 122 of /var/www/jenkins-Deploy-413/sites/all/modules/webform_rules/webform_rules.module).
Oct 25 19:44:21 php2 dosomething: http://www.dosomething.org|1382730261|php|71.93.240.14|http://www.dosomething.org/scholarships|http://www.dosomething.org/projects|1454538||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:44:21 php2 dosomething: http://www.dosomething.org|1382730261|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: email in dosomething_api_user_create() (line 260 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:44:21 php2 dosomething: http://www.dosomething.org|1382730261|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: mobile in dosomething_api_user_create() (line 260 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:44:21 php2 dosomething: http://www.dosomething.org|1382730261|Api|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||A user was successfully created with the email / cell
Oct 25 19:44:21 php2 dosomething: http://www.dosomething.org|1382730261|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: mobile in dosomething_api_user_create() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:44:21 php2 dosomething: http://www.dosomething.org|1382730261|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: mobile in dosomething_api_user_create() (line 253 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:44:21 php2 dosomething: http://www.dosomething.org|1382730261|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: email in dosomething_api_user_create() (line 260 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:44:21 php2 dosomething: http://www.dosomething.org|1382730261|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: mobile in dosomething_api_user_create() (line 260 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:44:21 php2 dosomething: http://www.dosomething.org|1382730261|Api|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||A user was successfully created with the email / cell
Oct 25 19:44:23 php2 dosomething: http://www.dosomething.org|1382730263|php|50.241.240.41|http://www.dosomething.org/cause/homelessness-and-poverty|http://www.dosomething.org/actnow/actionguide/11-ideas-a-food-drive|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:44:24 php2 dosomething: http://www.dosomething.org|1382730264|page not found|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||projects/webform-submission/726456
Oct 25 19:44:24 php2 dosomething: http://www.dosomething.org|1382730264|opengraph_meta|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Already output og:title
Oct 25 19:44:24 php2 dosomething: http://www.dosomething.org|1382730264|opengraph_meta|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Already output og:description
Oct 25 19:44:24 php2 dosomething: http://www.dosomething.org|1382730264|opengraph_meta|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Already output og:image
Oct 25 19:44:24 php2 dosomething: http://www.dosomething.org|1382730264|opengraph_meta|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Already output og:url
Oct 25 19:44:24 php2 dosomething: http://www.dosomething.org|1382730264|opengraph_meta|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Already output og:site_name
Oct 25 19:44:25 php2 dosomething: http://www.dosomething.org|1382730265|php|94.3.63.171|http://www.dosomething.org/quiz-result/728191/18?sid=2603792|http://www.dosomething.org/quiz/which-singer-are-you|0||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:44:25 php2 dosomething: http://www.dosomething.org|1382730265|php|94.3.63.171|http://www.dosomething.org/quiz-result/728191/18?sid=2603792|http://www.dosomething.org/quiz/which-singer-are-you|0||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:44:25 php2 dosomething: http://www.dosomething.org|1382730265|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:44:25 php2 dosomething: http://www.dosomething.org|1382730265|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_serve_page_from_cache() (line 1308 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:44:25 php2 dosomething: http://www.dosomething.org|1382730265|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:44:25 php2 dosomething: http://www.dosomething.org|1382730265|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:44:25 php2 dosomething: http://www.dosomething.org|1382730265|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1212 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:44:25 php2 dosomething: http://www.dosomething.org|1382730265|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:44:25 php2 dosomething: http://www.dosomething.org|1382730265|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:44:25 php2 dosomething: http://www.dosomething.org|1382730265|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:44:25 php2 dosomething: http://www.dosomething.org|1382730265|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:44:25 php2 dosomething: http://www.dosomething.org|1382730265|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:44:25 php2 dosomething: http://www.dosomething.org|1382730265|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1212 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:44:25 php2 dosomething: http://www.dosomething.org|1382730265|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:44:25 php2 dosomething: http://www.dosomething.org|1382730265|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:44:25 php2 dosomething: http://www.dosomething.org|1382730265|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:44:25 php2 dosomething: http://www.dosomething.org|1382730265|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:44:25 php2 dosomething: http://www.dosomething.org|1382730265|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:44:25 php2 dosomething: http://www.dosomething.org|1382730265|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_send_headers() (line 1216 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:44:25 php2 dosomething: http://www.dosomething.org|1382730265|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_serve_page_from_cache() (line 1344 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:44:25 php2 dosomething: http://www.dosomething.org|1382730265|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_serve_page_from_cache() (line 1348 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:44:25 php2 dosomething: http://www.dosomething.org|1382730265|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Warning: ini_set(): Cannot change zlib.output_compression - headers already sent in drupal_serve_page_from_cache() (line 1353 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:44:25 php2 dosomething: http://www.dosomething.org|1382730265|php|66.249.73.103|http://www.dosomething.org/projects/webform-submission/726456||0||Warning: Cannot modify header information - headers already sent by (output started at /var/www/jenkins-Deploy-413/includes/bootstrap.inc:1364) in drupal_serve_page_from_cache() (line 1354 of /var/www/jenkins-Deploy-413/includes/bootstrap.inc).
Oct 25 19:44:26 php2 dosomething: http://www.dosomething.org|1382730266|php|94.3.63.171|http://www.dosomething.org/quiz-result/728191/18?sid=2603792|http://www.dosomething.org/quiz/which-singer-are-you|0||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:44:26 php2 dosomething: http://www.dosomething.org|1382730266|php|94.3.63.171|http://www.dosomething.org/quiz-result/728191/18?sid=2603792|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:44:26 php2 dosomething: http://www.dosomething.org|1382730266|php|94.3.63.171|http://www.dosomething.org/quiz-result/728191/18?sid=2603792|http://www.dosomething.org/quiz/which-singer-are-you|0||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:44:27 php2 dosomething: http://www.dosomething.org|1382730267|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: in webform_submission_data() (line 26 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/includes/webform.submissions.inc).
Oct 25 19:44:27 php2 dosomething: http://www.dosomething.org|1382730267|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: in webform_rules_rules_invoke_event() (line 122 of /var/www/jenkins-Deploy-413/sites/all/modules/webform_rules/webform_rules.module).
Oct 25 19:44:28 php2 dosomething: http://www.dosomething.org|1382730268|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: mobile in dosomething_api_user_create() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:44:28 php2 dosomething: http://www.dosomething.org|1382730268|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: mobile in dosomething_api_user_create() (line 253 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:44:28 php2 dosomething: http://www.dosomething.org|1382730268|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: email in dosomething_api_user_create() (line 260 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:44:28 php2 dosomething: http://www.dosomething.org|1382730268|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: mobile in dosomething_api_user_create() (line 260 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:44:28 php2 dosomething: http://www.dosomething.org|1382730268|Api|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||A user was successfully created with the email / cell
Oct 25 19:44:28 php2 dosomething: http://www.dosomething.org|1382730268|php|94.3.63.171|http://www.dosomething.org/quiz-result/728191/18?sid=2603794|http://www.dosomething.org/quiz/which-singer-are-you|0||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:44:28 php2 dosomething: http://www.dosomething.org|1382730268|php|94.3.63.171|http://www.dosomething.org/quiz-result/728191/18?sid=2603794|http://www.dosomething.org/quiz/which-singer-are-you|0||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:44:29 php2 dosomething: http://www.dosomething.org|1382730269|php|94.3.63.171|http://www.dosomething.org/quiz-result/728191/18?sid=2603794|http://www.dosomething.org/quiz/which-singer-are-you|0||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:44:29 php2 dosomething: http://www.dosomething.org|1382730269|php|94.3.63.171|http://www.dosomething.org/quiz-result/728191/18?sid=2603794|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:44:29 php2 dosomething: http://www.dosomething.org|1382730269|php|94.3.63.171|http://www.dosomething.org/quiz-result/728191/18?sid=2603794|http://www.dosomething.org/quiz/which-singer-are-you|0||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:44:31 php2 dosomething: http://www.dosomething.org|1382730271|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: in webform_submission_data() (line 26 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/includes/webform.submissions.inc).
Oct 25 19:44:31 php2 dosomething: http://www.dosomething.org|1382730271|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: in webform_rules_rules_invoke_event() (line 122 of /var/www/jenkins-Deploy-413/sites/all/modules/webform_rules/webform_rules.module).
Oct 25 19:44:31 php2 dosomething: http://www.dosomething.org|1382730271|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: mobile in dosomething_api_user_create() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:44:31 php2 dosomething: http://www.dosomething.org|1382730271|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: in webform_submission_data() (line 26 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/includes/webform.submissions.inc).
Oct 25 19:44:31 php2 dosomething: http://www.dosomething.org|1382730271|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: in webform_rules_rules_invoke_event() (line 122 of /var/www/jenkins-Deploy-413/sites/all/modules/webform_rules/webform_rules.module).
Oct 25 19:44:32 php2 dosomething: http://www.dosomething.org|1382730272|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: mobile in dosomething_api_user_create() (line 253 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:44:32 php2 dosomething: http://www.dosomething.org|1382730272|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: email in dosomething_api_user_create() (line 260 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:44:32 php2 dosomething: http://www.dosomething.org|1382730272|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: mobile in dosomething_api_user_create() (line 260 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:44:32 php2 dosomething: http://www.dosomething.org|1382730272|Api|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||A user was successfully created with the email / cell
Oct 25 19:44:32 php2 dosomething: http://www.dosomething.org|1382730272|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: mobile in dosomething_api_user_create() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:44:32 php2 dosomething: http://www.dosomething.org|1382730272|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: mobile in dosomething_api_user_create() (line 253 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:44:32 php2 dosomething: http://www.dosomething.org|1382730272|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: email in dosomething_api_user_create() (line 260 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:44:32 php2 dosomething: http://www.dosomething.org|1382730272|php|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Undefined index: mobile in dosomething_api_user_create() (line 260 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:44:32 php2 dosomething: http://www.dosomething.org|1382730272|Api|94.3.63.171|http://www.dosomething.org/quiz/which-singer-are-you|http://www.dosomething.org/quiz/which-singer-are-you|0||A user was successfully created with the email / cell
Oct 25 19:44:33 php2 dosomething: http://www.dosomething.org|1382730273|php|94.3.63.171|http://www.dosomething.org/quiz-result/728191/18?sid=2603798|http://www.dosomething.org/quiz/which-singer-are-you|0||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:44:33 php2 dosomething: http://www.dosomething.org|1382730273|php|94.3.63.171|http://www.dosomething.org/quiz-result/728191/18?sid=2603798|http://www.dosomething.org/quiz/which-singer-are-you|0||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:44:34 php2 dosomething: http://www.dosomething.org|1382730274|php|94.3.63.171|http://www.dosomething.org/quiz-result/728191/18?sid=2603798|http://www.dosomething.org/quiz/which-singer-are-you|0||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:44:34 php2 dosomething: http://www.dosomething.org|1382730274|php|94.3.63.171|http://www.dosomething.org/quiz-result/728191/18?sid=2603798|http://www.dosomething.org/quiz/which-singer-are-you|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:44:34 php2 dosomething: http://www.dosomething.org|1382730274|php|94.3.63.171|http://www.dosomething.org/quiz-result/728191/18?sid=2603798|http://www.dosomething.org/quiz/which-singer-are-you|0||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:44:37 php2 dosomething: http://www.dosomething.org|1382730277|php|68.114.34.12|http://www.dosomething.org/survivors/report-back|http://www.dosomething.org/survivors|1446242||Notice: Undefined index: field_webform_mobile in dosomething_campaign_report_back_form_alter() (line 66 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/features/dosomething_campaign_report_back/dosomething_campaign_report_back.module).
Oct 25 19:44:37 php2 dosomething: http://www.dosomething.org|1382730277|php|68.114.34.12|http://www.dosomething.org/survivors/report-back|http://www.dosomething.org/survivors|1446242||Notice: Undefined index: field_webform_email in dosomething_campaign_report_back_form_alter() (line 73 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/features/dosomething_campaign_report_back/dosomething_campaign_report_back.module).
Oct 25 19:44:39 php2 dosomething: http://www.dosomething.org|1382730279|php|208.115.113.83|http://www.dosomething.org/user/password?destination=clubs/directory%3Fdistance%5Bpostal_code%5D%3D%26distance%5Bsearch_distance%5D%3D10%26distance%5Bsearch_units%5D%3Dmile%26title%3D%26state%3DAll%26page%3D799%26field_club_state_value%3DAll%26field_club_zip_value%3D%26start_time%3D1345767818%26order%3Dfield_club_state%26sort%3Dasc||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:44:42 php2 dosomething: http://www.dosomething.org|1382730282|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: group_audience in og_field_audience_autocomplete_validate() (line 691 of /var/www/jenkins-Deploy-413/sites/all/modules/og/og.field.inc).
Oct 25 19:44:42 php2 dosomething: http://www.dosomething.org|1382730282|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: group_audience in og_field_audience_autocomplete_validate() (line 692 of /var/www/jenkins-Deploy-413/sites/all/modules/og/og.field.inc).
Oct 25 19:44:42 php2 dosomething: http://www.dosomething.org|1382730282|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:44:42 php2 dosomething: http://www.dosomething.org|1382730282|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:44:42 php2 dosomething: http://www.dosomething.org|1382730282|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:44:42 php2 dosomething: http://www.dosomething.org|1382730282|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:44:42 php2 dosomething: http://www.dosomething.org|1382730282|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:44:42 php2 dosomething: http://www.dosomething.org|1382730282|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:44:42 php2 dosomething: http://www.dosomething.org|1382730282|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:44:42 php2 dosomething: http://www.dosomething.org|1382730282|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:44:42 php2 dosomething: http://www.dosomething.org|1382730282|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:44:42 php2 dosomething: http://www.dosomething.org|1382730282|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:44:42 php2 dosomething: http://www.dosomething.org|1382730282|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:44:42 php2 dosomething: http://www.dosomething.org|1382730282|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:44:42 php2 dosomething: http://www.dosomething.org|1382730282|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:44:42 php2 dosomething: http://www.dosomething.org|1382730282|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: in _webform_client_form_submit_flatten() (line 2619 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/webform.module).
Oct 25 19:44:42 php2 dosomething: http://www.dosomething.org|1382730282|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: in webform_submission_data() (line 26 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/includes/webform.submissions.inc).
Oct 25 19:44:43 php2 dosomething: http://www.dosomething.org|1382730283|php|207.237.248.99|http://www.dosomething.org/webform-counter-field/726458/1|http://www.dosomething.org/teensforjeans|0||Warning: array_unshift() expects parameter 1 to be array, string given in ajax_render() (line 295 of /var/www/jenkins-Deploy-413/includes/ajax.inc).
Oct 25 19:44:43 php2 dosomething: http://www.dosomething.org|1382730283|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: tags in dosomething_mandrill_mandrill_mail_alter() (line 327 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:44:43 php2 dosomething: http://www.dosomething.org|1382730283|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Warning: array_merge(): Argument #2 is not an array in dosomething_mandrill_mandrill_mail_alter() (line 327 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:44:43 php2 dosomething: http://www.dosomething.org|1382730283|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: message in dosomething_mandrill_mandrill_mail_alter() (line 346 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:44:43 php2 dosomething: http://www.dosomething.org|1382730283|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Warning: Invalid argument supplied for foreach() in dosomething_mandrill_mandrill_mail_alter() (line 346 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:44:43 php2 dosomething: http://www.dosomething.org|1382730283|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: merge_vars in dosomething_mandrill_mandrill_mail_alter() (line 365 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:44:43 php2 dosomething: http://www.dosomething.org|1382730283|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: merge_var_name in dosomething_mandrill_mandrill_mail_alter() (line 376 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:44:43 php2 dosomething: http://www.dosomething.org|1382730283|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: merge_var_content in dosomething_mandrill_mandrill_mail_alter() (line 377 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:44:43 php2 dosomething: http://www.dosomething.org|1382730283|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Warning: array_merge(): Argument #1 is not an array in dosomething_mandrill_mandrill_mail_alter() (line 395 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_mandrill/dosomething_mandrill.module).
Oct 25 19:44:44 php2 dosomething: http://www.dosomething.org|1382730284|php|74.60.16.37|http://www.dosomething.org/grandparents/report-back|http://www.dosomething.org/grandparents/report-back|929415||Notice: Undefined index: in webform_rules_rules_invoke_event() (line 122 of /var/www/jenkins-Deploy-413/sites/all/modules/webform_rules/webform_rules.module).
Oct 25 19:44:47 php2 dosomething: http://www.dosomething.org|1382730287|php|72.20.153.250|http://www.dosomething.org/search/animal%20testing|http://www.dosomething.org/|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:44:51 php2 dosomething: http://www.dosomething.org|1382730291|php|65.55.213.73|http://www.dosomething.org/project/911-rememberence||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:44:58 php2 dosomething: http://www.dosomething.org|1382730298|php|157.55.35.85|http://www.dosomething.org/blog/chatterbox/feed?field_blog_type_tid=All&page=485||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:45:05 php2 dosomething: http://www.dosomething.org|1382730305|php|74.60.16.37|http://www.dosomething.org/campaign/join/731098|http://www.dosomething.org/node/731107/done?sid=2603800|929415||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:45:16 php2 dosomething: http://www.dosomething.org|1382730316|page not found|68.114.34.12|http://www.dosomething.org/files/css/null|http://www.dosomething.org/grants|1446242||files/css/null
Oct 25 19:45:16 php2 dosomething: http://www.dosomething.org|1382730316|opengraph_meta|68.114.34.12|http://www.dosomething.org/files/css/null|http://www.dosomething.org/grants|1446242||Already output og:title
Oct 25 19:45:16 php2 dosomething: http://www.dosomething.org|1382730316|opengraph_meta|68.114.34.12|http://www.dosomething.org/files/css/null|http://www.dosomething.org/grants|1446242||Already output og:description
Oct 25 19:45:16 php2 dosomething: http://www.dosomething.org|1382730316|opengraph_meta|68.114.34.12|http://www.dosomething.org/files/css/null|http://www.dosomething.org/grants|1446242||Already output og:image
Oct 25 19:45:16 php2 dosomething: http://www.dosomething.org|1382730316|opengraph_meta|68.114.34.12|http://www.dosomething.org/files/css/null|http://www.dosomething.org/grants|1446242||Already output og:url
Oct 25 19:45:16 php2 dosomething: http://www.dosomething.org|1382730316|opengraph_meta|68.114.34.12|http://www.dosomething.org/files/css/null|http://www.dosomething.org/grants|1446242||Already output og:site_name
Oct 25 19:45:21 php2 dosomething: http://www.dosomething.org|1382730321|opengraph_meta|71.93.240.14|http://www.dosomething.org/about/who-we-are|http://www.dosomething.org/|1454536||Already output og:title
Oct 25 19:45:21 php2 dosomething: http://www.dosomething.org|1382730321|opengraph_meta|71.93.240.14|http://www.dosomething.org/about/who-we-are|http://www.dosomething.org/|1454536||Already output og:description
Oct 25 19:45:21 php2 dosomething: http://www.dosomething.org|1382730321|opengraph_meta|71.93.240.14|http://www.dosomething.org/about/who-we-are|http://www.dosomething.org/|1454536||Already output og:image
Oct 25 19:45:21 php2 dosomething: http://www.dosomething.org|1382730321|opengraph_meta|71.93.240.14|http://www.dosomething.org/about/who-we-are|http://www.dosomething.org/|1454536||Already output og:url
Oct 25 19:45:21 php2 dosomething: http://www.dosomething.org|1382730321|opengraph_meta|71.93.240.14|http://www.dosomething.org/about/who-we-are|http://www.dosomething.org/|1454536||Already output og:site_name
Oct 25 19:45:25 php2 dosomething: http://www.dosomething.org|1382730325|php|71.93.240.14|http://www.dosomething.org/user/1397888/edit/main|http://www.dosomething.org/user/1397888/edit/main|1397888||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:45:29 php2 dosomething: http://www.dosomething.org|1382730329|php|71.93.240.14|http://www.dosomething.org/quiz-result/728941/39?sid=2603802|http://www.dosomething.org/quiz/what%E2%80%99s-your-perfect-college-major|1454527||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:45:29 php2 dosomething: http://www.dosomething.org|1382730329|php|71.93.240.14|http://www.dosomething.org/quiz-result/728941/39?sid=2603802|http://www.dosomething.org/quiz/what%E2%80%99s-your-perfect-college-major|1454527||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:45:30 php2 dosomething: http://www.dosomething.org|1382730330|php|71.93.240.14|http://www.dosomething.org/quiz-result/728941/39?sid=2603802|http://www.dosomething.org/quiz/what%E2%80%99s-your-perfect-college-major|1454527||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:45:30 php2 dosomething: http://www.dosomething.org|1382730330|php|71.93.240.14|http://www.dosomething.org/quiz-result/728941/39?sid=2603802|http://www.dosomething.org/quiz/what%E2%80%99s-your-perfect-college-major|1454527||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:45:30 php2 dosomething: http://www.dosomething.org|1382730330|php|71.93.240.14|http://www.dosomething.org/quiz-result/728941/39?sid=2603802|http://www.dosomething.org/quiz/what%E2%80%99s-your-perfect-college-major|1454527||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:45:31 php2 dosomething: http://www.dosomething.org|1382730331|php|68.114.34.12|http://www.dosomething.org/scholarships|http://www.dosomething.org/grants|1446242||Notice: Undefined index: mid-left in include() (line 56 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_panels/plugins/layouts/landings/dosomething-panels-landings.tpl.php).
Oct 25 19:45:31 php2 dosomething: http://www.dosomething.org|1382730331|php|68.114.34.12|http://www.dosomething.org/scholarships|http://www.dosomething.org/grants|1446242||Notice: Undefined index: mid-center in include() (line 56 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_panels/plugins/layouts/landings/dosomething-panels-landings.tpl.php).
Oct 25 19:45:31 php2 dosomething: http://www.dosomething.org|1382730331|php|68.114.34.12|http://www.dosomething.org/scholarships|http://www.dosomething.org/grants|1446242||Notice: Undefined index: mid-right in include() (line 56 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_panels/plugins/layouts/landings/dosomething-panels-landings.tpl.php).
Oct 25 19:45:32 php2 dosomething: http://www.dosomething.org|1382730332|php|68.114.34.12|http://www.dosomething.org/scholarships|http://www.dosomething.org/grants|1446242||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:45:35 php2 dosomething: http://www.dosomething.org|1382730335|php|75.145.145.113|http://www.dosomething.org/scholarships|http://www.dosomething.org/petition/colleges-ban-cigarette-smoking-on-campus|0||Notice: Undefined index: mid-left in include() (line 56 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_panels/plugins/layouts/landings/dosomething-panels-landings.tpl.php).
Oct 25 19:45:35 php2 dosomething: http://www.dosomething.org|1382730335|php|75.145.145.113|http://www.dosomething.org/scholarships|http://www.dosomething.org/petition/colleges-ban-cigarette-smoking-on-campus|0||Notice: Undefined index: mid-center in include() (line 56 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_panels/plugins/layouts/landings/dosomething-panels-landings.tpl.php).
Oct 25 19:45:35 php2 dosomething: http://www.dosomething.org|1382730335|php|75.145.145.113|http://www.dosomething.org/scholarships|http://www.dosomething.org/petition/colleges-ban-cigarette-smoking-on-campus|0||Notice: Undefined index: mid-right in include() (line 56 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_panels/plugins/layouts/landings/dosomething-panels-landings.tpl.php).
Oct 25 19:45:36 php2 dosomething: http://www.dosomething.org|1382730336|php|75.145.145.113|http://www.dosomething.org/scholarships|http://www.dosomething.org/petition/colleges-ban-cigarette-smoking-on-campus|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:45:36 php2 dosomething: http://www.dosomething.org|1382730336|php|98.116.190.157|http://www.dosomething.org/about/team/dosomething/ajax/registration-data|http://www.dosomething.org/about/team/internships|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:45:38 php2 dosomething: http://www.dosomething.org|1382730338|php|108.236.121.208|http://www.dosomething.org/user/password|http://www.dosomething.org/user/password|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:45:40 php2 dosomething: http://www.dosomething.org|1382730340|opengraph_meta|107.19.83.150|http://www.dosomething.org/scholarships/opportunities?gclid=COSF4PXfsroCFcZFMgoduwQA1w|http://www.google.com/aclk?sa=l&ai=CUZkWXspqUsahLK25yQHF4YHgDterg-YCh-_NlH7Xs6UdCAAQAigCUK7Buc4CYMner4j0o8AQoAHN3ZX9A8gBAaoEIU_QZUAtzZ2ovJtpUDBGG-NYA6iKdzeQ-Yns1rPXXo7p84AHm6LqApAHAg&sig=AOD64_0fO05_osHJ5AVJmu6498t3SWbcCg&rct=j&q=herron+school+of+art+and+design+scholarships&ved=0CD4Q0Qw&adurl=http://www.dosomething.org/scholarships/opportunities|0||Already output og:title
Oct 25 19:45:40 php2 dosomething: http://www.dosomething.org|1382730340|opengraph_meta|107.19.83.150|http://www.dosomething.org/scholarships/opportunities?gclid=COSF4PXfsroCFcZFMgoduwQA1w|http://www.google.com/aclk?sa=l&ai=CUZkWXspqUsahLK25yQHF4YHgDterg-YCh-_NlH7Xs6UdCAAQAigCUK7Buc4CYMner4j0o8AQoAHN3ZX9A8gBAaoEIU_QZUAtzZ2ovJtpUDBGG-NYA6iKdzeQ-Yns1rPXXo7p84AHm6LqApAHAg&sig=AOD64_0fO05_osHJ5AVJmu6498t3SWbcCg&rct=j&q=herron+school+of+art+and+design+scholarships&ved=0CD4Q0Qw&adurl=http://www.dosomething.org/scholarships/opportunities|0||Already output og:description
Oct 25 19:45:40 php2 dosomething: http://www.dosomething.org|1382730340|opengraph_meta|107.19.83.150|http://www.dosomething.org/scholarships/opportunities?gclid=COSF4PXfsroCFcZFMgoduwQA1w|http://www.google.com/aclk?sa=l&ai=CUZkWXspqUsahLK25yQHF4YHgDterg-YCh-_NlH7Xs6UdCAAQAigCUK7Buc4CYMner4j0o8AQoAHN3ZX9A8gBAaoEIU_QZUAtzZ2ovJtpUDBGG-NYA6iKdzeQ-Yns1rPXXo7p84AHm6LqApAHAg&sig=AOD64_0fO05_osHJ5AVJmu6498t3SWbcCg&rct=j&q=herron+school+of+art+and+design+scholarships&ved=0CD4Q0Qw&adurl=http://www.dosomething.org/scholarships/opportunities|0||Already output og:image
Oct 25 19:45:40 php2 dosomething: http://www.dosomething.org|1382730340|opengraph_meta|107.19.83.150|http://www.dosomething.org/scholarships/opportunities?gclid=COSF4PXfsroCFcZFMgoduwQA1w|http://www.google.com/aclk?sa=l&ai=CUZkWXspqUsahLK25yQHF4YHgDterg-YCh-_NlH7Xs6UdCAAQAigCUK7Buc4CYMner4j0o8AQoAHN3ZX9A8gBAaoEIU_QZUAtzZ2ovJtpUDBGG-NYA6iKdzeQ-Yns1rPXXo7p84AHm6LqApAHAg&sig=AOD64_0fO05_osHJ5AVJmu6498t3SWbcCg&rct=j&q=herron+school+of+art+and+design+scholarships&ved=0CD4Q0Qw&adurl=http://www.dosomething.org/scholarships/opportunities|0||Already output og:url
Oct 25 19:45:40 php2 dosomething: http://www.dosomething.org|1382730340|opengraph_meta|107.19.83.150|http://www.dosomething.org/scholarships/opportunities?gclid=COSF4PXfsroCFcZFMgoduwQA1w|http://www.google.com/aclk?sa=l&ai=CUZkWXspqUsahLK25yQHF4YHgDterg-YCh-_NlH7Xs6UdCAAQAigCUK7Buc4CYMner4j0o8AQoAHN3ZX9A8gBAaoEIU_QZUAtzZ2ovJtpUDBGG-NYA6iKdzeQ-Yns1rPXXo7p84AHm6LqApAHAg&sig=AOD64_0fO05_osHJ5AVJmu6498t3SWbcCg&rct=j&q=herron+school+of+art+and+design+scholarships&ved=0CD4Q0Qw&adurl=http://www.dosomething.org/scholarships/opportunities|0||Already output og:site_name
Oct 25 19:45:41 php2 dosomething: http://www.dosomething.org|1382730341|opengraph_meta|71.40.58.138|http://www.dosomething.org/scholarships/opportunities?gclid=COCWmPbfsroCFYdQ7AodBB8Aaw|http://www.google.com/aclk?sa=l&ai=CtNoiNMpqUqf1Fo_AyQHW4YGIBae68P0Dp6T39E-yhtRUEAgoCFCF8ZXU-_____8BYMnO6IzkpPQToAHN3ZX9A8gBAaoEIU_QrK521weK3JJJ9cSxRiK8TTTrFL9SF-Ap5dURxJwHUYAHm6LqApAHAw&num=11&sig=AOD64_3PBnYufMSqiQ7qR6phc8m_vZollA&rct=j&frm=1&q=scholarships&ved=0CNYBENEM&adurl=http://dosomething.org/scholarships/opportunities|0||Already output og:title
Oct 25 19:45:41 php2 dosomething: http://www.dosomething.org|1382730341|opengraph_meta|71.40.58.138|http://www.dosomething.org/scholarships/opportunities?gclid=COCWmPbfsroCFYdQ7AodBB8Aaw|http://www.google.com/aclk?sa=l&ai=CtNoiNMpqUqf1Fo_AyQHW4YGIBae68P0Dp6T39E-yhtRUEAgoCFCF8ZXU-_____8BYMnO6IzkpPQToAHN3ZX9A8gBAaoEIU_QrK521weK3JJJ9cSxRiK8TTTrFL9SF-Ap5dURxJwHUYAHm6LqApAHAw&num=11&sig=AOD64_3PBnYufMSqiQ7qR6phc8m_vZollA&rct=j&frm=1&q=scholarships&ved=0CNYBENEM&adurl=http://dosomething.org/scholarships/opportunities|0||Already output og:description
Oct 25 19:45:41 php2 dosomething: http://www.dosomething.org|1382730341|opengraph_meta|71.40.58.138|http://www.dosomething.org/scholarships/opportunities?gclid=COCWmPbfsroCFYdQ7AodBB8Aaw|http://www.google.com/aclk?sa=l&ai=CtNoiNMpqUqf1Fo_AyQHW4YGIBae68P0Dp6T39E-yhtRUEAgoCFCF8ZXU-_____8BYMnO6IzkpPQToAHN3ZX9A8gBAaoEIU_QrK521weK3JJJ9cSxRiK8TTTrFL9SF-Ap5dURxJwHUYAHm6LqApAHAw&num=11&sig=AOD64_3PBnYufMSqiQ7qR6phc8m_vZollA&rct=j&frm=1&q=scholarships&ved=0CNYBENEM&adurl=http://dosomething.org/scholarships/opportunities|0||Already output og:image
Oct 25 19:45:41 php2 dosomething: http://www.dosomething.org|1382730341|opengraph_meta|71.40.58.138|http://www.dosomething.org/scholarships/opportunities?gclid=COCWmPbfsroCFYdQ7AodBB8Aaw|http://www.google.com/aclk?sa=l&ai=CtNoiNMpqUqf1Fo_AyQHW4YGIBae68P0Dp6T39E-yhtRUEAgoCFCF8ZXU-_____8BYMnO6IzkpPQToAHN3ZX9A8gBAaoEIU_QrK521weK3JJJ9cSxRiK8TTTrFL9SF-Ap5dURxJwHUYAHm6LqApAHAw&num=11&sig=AOD64_3PBnYufMSqiQ7qR6phc8m_vZollA&rct=j&frm=1&q=scholarships&ved=0CNYBENEM&adurl=http://dosomething.org/scholarships/opportunities|0||Already output og:url
Oct 25 19:45:41 php2 dosomething: http://www.dosomething.org|1382730341|opengraph_meta|71.40.58.138|http://www.dosomething.org/scholarships/opportunities?gclid=COCWmPbfsroCFYdQ7AodBB8Aaw|http://www.google.com/aclk?sa=l&ai=CtNoiNMpqUqf1Fo_AyQHW4YGIBae68P0Dp6T39E-yhtRUEAgoCFCF8ZXU-_____8BYMnO6IzkpPQToAHN3ZX9A8gBAaoEIU_QrK521weK3JJJ9cSxRiK8TTTrFL9SF-Ap5dURxJwHUYAHm6LqApAHAw&num=11&sig=AOD64_3PBnYufMSqiQ7qR6phc8m_vZollA&rct=j&frm=1&q=scholarships&ved=0CNYBENEM&adurl=http://dosomething.org/scholarships/opportunities|0||Already output og:site_name
Oct 25 19:45:46 php2 dosomething: http://www.dosomething.org|1382730346|php|202.46.62.147|http://www.dosomething.org/project/church-youth-website-assistance||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:45:47 php2 dosomething: http://www.dosomething.org|1382730347|php|23.22.81.52|http://www.dosomething.org/user/login?destination=node/332398/votes%3Fpage%3D3%26sort%3Dasc%26order%3DTimestamp||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:45:48 php2 dosomething: http://www.dosomething.org|1382730348|php|208.115.113.83|http://www.dosomething.org/user/password?destination=clubs/directory%3Fdistance%5Bpostal_code%5D%3D%26distance%5Bsearch_distance%5D%3D10%26distance%5Bsearch_units%5D%3Dmile%26title%3D%26state%3DAll%26page%3D843%26field_club_state_value%3DAll%26start_time%3D1345911174%26field_club_zip_value%3D%26order%3Dfield_club_city%26sort%3Dasc||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:45:59 php2 dosomething: http://www.dosomething.org|1382730359|php|63.234.113.42|http://www.dosomething.org/webform-submission/728674|https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=8&ved=0CG8QFjAH&url=http%3A%2F%2Fwww.dosomething.org%2Fwebform-submission%2F728674&ei=M8pqUvmFCYbckQeg1IGoAQ&usg=AFQjCNEFb9AJgypchcxWQwI_eopgXqA1Ig&sig2=FVwid9hoc3Z0sZ9E19FYPg&bvm=bv.55123115,d.eW0|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:46:01 php2 dosomething: http://www.dosomething.org|1382730361|php|173.27.90.29|http://www.dosomething.org/issues/depression|http://www.dosomething.org/issues/depression|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:46:06 php2 dosomething: http://www.dosomething.org|1382730366|access denied|207.110.19.130|http://www.dosomething.org/entityqueue/add/low_income/2575657?destination=application/2575657|http://www.dosomething.org/application/2575657|544311||entityqueue/add/low_income/2575657
Oct 25 19:46:06 php2 dosomething: http://www.dosomething.org|1382730366|php|207.110.19.130|http://www.dosomething.org/entityqueue/add/low_income/2575657?destination=application/2575657|http://www.dosomething.org/application/2575657|544311||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:46:12 php2 dosomething: http://www.dosomething.org|1382730372|php|65.55.213.73|http://www.dosomething.org/project/animal-0||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:46:13 php2 dosomething: http://www.dosomething.org|1382730373|php|98.116.190.157|http://www.dosomething.org/user/1454597/complete-profile|http://www.dosomething.org/about/team/internships|1454597||Notice: Undefined index: locality in dosomething_user_my_somethings_preprocess_dosomething_profile_info() (line 618 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/features/dosomething_user_my_somethings/dosomething_user_my_somethings.module).
Oct 25 19:46:13 php2 dosomething: http://www.dosomething.org|1382730373|php|98.116.190.157|http://www.dosomething.org/user/1454597/complete-profile|http://www.dosomething.org/about/team/internships|1454597||Notice: Undefined index: administrative_area in dosomething_user_my_somethings_preprocess_dosomething_profile_info() (line 618 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/features/dosomething_user_my_somethings/dosomething_user_my_somethings.module).
Oct 25 19:46:13 php2 dosomething: http://www.dosomething.org|1382730373|php|98.116.190.157|http://www.dosomething.org/user/1454597/complete-profile|http://www.dosomething.org/about/team/internships|1454597||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:46:15 php2 dosomething: http://www.dosomething.org|1382730375|access denied|173.252.100.119|http://www.dosomething.org/files/styles/thumbnail/public/whitetees.jpg||0||files/styles/thumbnail/public/whitetees.jpg
Oct 25 19:46:19 php2 dosomething: http://www.dosomething.org|1382730379|php|157.55.35.101|http://www.dosomething.org/project/check-ur-driving-campaign||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:46:30 php2 dosomething: http://www.dosomething.org|1382730390|php|68.224.120.193|http://www.dosomething.org/||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:46:30 php2 dosomething: http://www.dosomething.org|1382730390|opengraph_meta|68.114.34.12|http://www.dosomething.org/scholarships/winners|http://www.dosomething.org/social-scholarship/smoking|1446242||Already output og:title
Oct 25 19:46:30 php2 dosomething: http://www.dosomething.org|1382730390|opengraph_meta|68.114.34.12|http://www.dosomething.org/scholarships/winners|http://www.dosomething.org/social-scholarship/smoking|1446242||Already output og:description
Oct 25 19:46:30 php2 dosomething: http://www.dosomething.org|1382730390|opengraph_meta|68.114.34.12|http://www.dosomething.org/scholarships/winners|http://www.dosomething.org/social-scholarship/smoking|1446242||Already output og:image
Oct 25 19:46:30 php2 dosomething: http://www.dosomething.org|1382730390|opengraph_meta|68.114.34.12|http://www.dosomething.org/scholarships/winners|http://www.dosomething.org/social-scholarship/smoking|1446242||Already output og:url
Oct 25 19:46:30 php2 dosomething: http://www.dosomething.org|1382730390|opengraph_meta|68.114.34.12|http://www.dosomething.org/scholarships/winners|http://www.dosomething.org/social-scholarship/smoking|1446242||Already output og:site_name
Oct 25 19:46:34 php2 dosomething: http://www.dosomething.org|1382730394|opengraph_meta|71.93.240.14|http://www.dosomething.org/scholarships/opportunities?sid=2603804|http://www.dosomething.org/scholarships|1454553||Already output og:title
Oct 25 19:46:34 php2 dosomething: http://www.dosomething.org|1382730394|opengraph_meta|71.93.240.14|http://www.dosomething.org/scholarships/opportunities?sid=2603804|http://www.dosomething.org/scholarships|1454553||Already output og:description
Oct 25 19:46:34 php2 dosomething: http://www.dosomething.org|1382730394|opengraph_meta|71.93.240.14|http://www.dosomething.org/scholarships/opportunities?sid=2603804|http://www.dosomething.org/scholarships|1454553||Already output og:image
Oct 25 19:46:34 php2 dosomething: http://www.dosomething.org|1382730394|opengraph_meta|71.93.240.14|http://www.dosomething.org/scholarships/opportunities?sid=2603804|http://www.dosomething.org/scholarships|1454553||Already output og:url
Oct 25 19:46:34 php2 dosomething: http://www.dosomething.org|1382730394|opengraph_meta|71.93.240.14|http://www.dosomething.org/scholarships/opportunities?sid=2603804|http://www.dosomething.org/scholarships|1454553||Already output og:site_name
Oct 25 19:46:39 php2 dosomething: http://www.dosomething.org|1382730399|user|71.93.240.14|http://www.dosomething.org/user/registration?destination=about|http://www.dosomething.org/about|0||PDOException: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'jorge mendoza4' for key 'name': INSERT INTO {users} (uid, name, pass, mail, created, status, init) VALUES (:db_insert_placeholder_0, :db_insert_placeholder_1, :db_insert_placeholder_2, :db_insert_placeholder_3, :db_insert_placeholder_4, :db_insert_placeholder_5, :db_insert_placeholder_6); Array#012(#012 [:db_insert_placeholder_0] => 1454599#012 [:db_insert_placeholder_1] => jorge mendoza4#012 [:db_insert_placeholder_2] => $S$D/MKKLDVSMB2vtBxjuWyxvb650/n41Jp4BDGAOY6hBpK/XBIux9e#012 [:db_insert_placeholder_3] => [email protected]#012 [:db_insert_placeholder_4] => 1382730399#012 [:db_insert_placeholder_5] => 1#012 [:db_insert_placeholder_6] => jorge mendoza#012)#012 in drupal_write_record() (line 7136 of /var/www/jenkins-Deploy-413/includes/common.inc).
Oct 25 19:46:39 php2 dosomething: http://www.dosomething.org|1382730399|php|71.93.240.14|http://www.dosomething.org/user/registration?destination=about|http://www.dosomething.org/about|0||PDOException: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'jorge mendoza4' for key 'name': INSERT INTO {users} (uid, name, pass, mail, created, status, init) VALUES (:db_insert_placeholder_0, :db_insert_placeholder_1, :db_insert_placeholder_2, :db_insert_placeholder_3, :db_insert_placeholder_4, :db_insert_placeholder_5, :db_insert_placeholder_6); Array#012(#012 [:db_insert_placeholder_0] => 1454599#012 [:db_insert_placeholder_1] => jorge mendoza4#012 [:db_insert_placeholder_2] => $S$D/MKKLDVSMB2vtBxjuWyxvb650/n41Jp4BDGAOY6hBpK/XBIux9e#012 [:db_insert_placeholder_3] => [email protected]#012 [:db_insert_placeholder_4] => 1382730399#012 [:db_insert_placeholder_5] => 1#012 [:db_insert_placeholder_6] => jorge mendoza#012)#012 in drupal_write_record() (line 7136 of /var/www/jenkins-Deploy-413/includes/common.inc).
Oct 25 19:46:41 php2 dosomething: http://www.dosomething.org|1382730401|php|70.165.107.138|http://www.dosomething.org/user/registration?destination=node/718313|http://www.dosomething.org/user/login?destination=node/718313|0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:46:43 php2 dosomething: http://www.dosomething.org|1382730403|php|208.115.113.83|http://www.dosomething.org/user/password?destination=clubs/directory%3Fdistance%5Bpostal_code%5D%3D%26distance%5Bsearch_distance%5D%3D10%26distance%5Bsearch_units%5D%3Dmile%26title%3D%26state%3DAll%26page%3D859%26field_club_state_value%3DAll%26start_time%3D1346071239%26field_club_zip_value%3D%26order%3Dfield_club_state%26sort%3Dasc||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:46:46 php2 dosomething: http://www.dosomething.org|1382730406|php|94.3.63.171|http://www.dosomething.org/quiz/whos-your-cartoon-dad|http://www.dosomething.org/quiz/whos-your-cartoon-dad|0||Notice: Undefined index: in webform_submission_data() (line 26 of /var/www/jenkins-Deploy-413/sites/all/modules/webform/includes/webform.submissions.inc).
Oct 25 19:46:46 php2 dosomething: http://www.dosomething.org|1382730406|php|94.3.63.171|http://www.dosomething.org/quiz/whos-your-cartoon-dad|http://www.dosomething.org/quiz/whos-your-cartoon-dad|0||Notice: Undefined index: in webform_rules_rules_invoke_event() (line 122 of /var/www/jenkins-Deploy-413/sites/all/modules/webform_rules/webform_rules.module).
Oct 25 19:46:47 php2 dosomething: http://www.dosomething.org|1382730407|php|94.3.63.171|http://www.dosomething.org/quiz/whos-your-cartoon-dad|http://www.dosomething.org/quiz/whos-your-cartoon-dad|0||Notice: Undefined index: mobile in dosomething_api_user_create() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:46:47 php2 dosomething: http://www.dosomething.org|1382730407|php|94.3.63.171|http://www.dosomething.org/quiz/whos-your-cartoon-dad|http://www.dosomething.org/quiz/whos-your-cartoon-dad|0||Notice: Undefined index: mobile in dosomething_api_user_create() (line 253 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:46:47 php2 dosomething: http://www.dosomething.org|1382730407|php|94.3.63.171|http://www.dosomething.org/quiz/whos-your-cartoon-dad|http://www.dosomething.org/quiz/whos-your-cartoon-dad|0||Notice: Undefined index: email in dosomething_api_user_create() (line 260 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:46:47 php2 dosomething: http://www.dosomething.org|1382730407|php|94.3.63.171|http://www.dosomething.org/quiz/whos-your-cartoon-dad|http://www.dosomething.org/quiz/whos-your-cartoon-dad|0||Notice: Undefined index: mobile in dosomething_api_user_create() (line 260 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_api/dosomething_api.module).
Oct 25 19:46:47 php2 dosomething: http://www.dosomething.org|1382730407|Api|94.3.63.171|http://www.dosomething.org/quiz/whos-your-cartoon-dad|http://www.dosomething.org/quiz/whos-your-cartoon-dad|0||A user was successfully created with the email / cell
Oct 25 19:46:48 php2 dosomething: http://www.dosomething.org|1382730408|php|71.93.240.14|http://www.dosomething.org/quiz-result/729090/43?sid=2603808|http://www.dosomething.org/quiz/which-famous-internet-animal-are-you|1454535||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:46:48 php2 dosomething: http://www.dosomething.org|1382730408|php|71.93.240.14|http://www.dosomething.org/quiz-result/729090/43?sid=2603808|http://www.dosomething.org/quiz/which-famous-internet-animal-are-you|1454535||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:46:48 php2 dosomething: http://www.dosomething.org|1382730408|php|66.249.73.103|http://www.dosomething.org/project/eagle-project-2||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:46:50 php2 dosomething: http://www.dosomething.org|1382730410|php|71.93.240.14|http://www.dosomething.org/quiz-result/729090/43?sid=2603808|http://www.dosomething.org/quiz/which-famous-internet-animal-are-you|1454535||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:46:50 php2 dosomething: http://www.dosomething.org|1382730410|php|71.93.240.14|http://www.dosomething.org/quiz-result/729090/43?sid=2603808|http://www.dosomething.org/quiz/which-famous-internet-animal-are-you|1454535||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:46:50 php2 dosomething: http://www.dosomething.org|1382730410|php|71.93.240.14|http://www.dosomething.org/quiz-result/729090/43?sid=2603808|http://www.dosomething.org/quiz/which-famous-internet-animal-are-you|1454535||Warning: array_flip(): Can only flip STRING and INTEGER values! in EntityAPIController->load() (line 219 of /var/www/jenkins-Deploy-413/sites/all/modules/entity/includes/entity.controller.inc).
Oct 25 19:46:54 php2 dosomething: http://www.dosomething.org|1382730414|php|208.115.113.83|http://www.dosomething.org/user/password?destination=clubs/directory%3Fdistance%5Bpostal_code%5D%3D%26distance%5Bsearch_distance%5D%3D10%26distance%5Bsearch_units%5D%3Dmile%26title%3D%26state%3DAll%26page%3D864%26field_club_state_value%3DAll%26field_club_zip_value%3D%26start_time%3D1345911213%26order%3Dtitle%26sort%3Dasc||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:47:02 php2 dosomething: http://www.dosomething.org|1382730422|php|66.249.73.103|http://www.dosomething.org/user?destination=webform-submission/852567||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:47:04 php2 dosomething: http://www.dosomething.org|1382730424|php|71.93.240.14|http://www.dosomething.org/scholarships|http://www.dosomething.org/about|1454595||Notice: Undefined index: mid-left in include() (line 56 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_panels/plugins/layouts/landings/dosomething-panels-landings.tpl.php).
Oct 25 19:47:04 php2 dosomething: http://www.dosomething.org|1382730424|php|71.93.240.14|http://www.dosomething.org/scholarships|http://www.dosomething.org/about|1454595||Notice: Undefined index: mid-center in include() (line 56 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_panels/plugins/layouts/landings/dosomething-panels-landings.tpl.php).
Oct 25 19:47:04 php2 dosomething: http://www.dosomething.org|1382730424|php|71.93.240.14|http://www.dosomething.org/scholarships|http://www.dosomething.org/about|1454595||Notice: Undefined index: mid-right in include() (line 56 of /var/www/jenkins-Deploy-413/sites/all/modules/dosomething/dosomething_panels/plugins/layouts/landings/dosomething-panels-landings.tpl.php).
Oct 25 19:47:05 php2 dosomething: http://www.dosomething.org|1382730425|php|71.93.240.14|http://www.dosomething.org/scholarships|http://www.dosomething.org/about|1454595||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:47:06 php2 dosomething: http://www.dosomething.org|1382730426|php|66.249.73.103|http://www.dosomething.org/user?destination=webform-submission/778587||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:47:11 php2 dosomething: http://www.dosomething.org|1382730431|php|66.249.73.103|http://www.dosomething.org/webform-submission/727890||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:47:11 php2 dosomething: http://www.dosomething.org|1382730431|access denied|76.110.24.212|http://www.dosomething.org/social-scholarship/25000-women||0||node/729880
Oct 25 19:47:12 php2 dosomething: http://www.dosomething.org|1382730432|php|76.110.24.212|http://www.dosomething.org/user/login?destination=node/729880||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).
Oct 25 19:47:17 php2 dosomething: http://www.dosomething.org|1382730437|php|66.249.73.24|http://www.dosomething.org/blog/issues/about/team?field_blog_type_tid=All&taxonomy_vocabulary_5_tid=22&page=1||0||Notice: Trying to get property of non-object in doit_preprocess_page() (line 158 of /var/www/jenkins-Deploy-413/sites/all/themes/doit/template.php).