-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1740 lines (1607 loc) · 124 KB
/
index.html
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
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html lang="en">
<!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description"
content="A Computer Science Graduate from Bangladesh. Ibrahim Sharif provides services regarding Clouds, Servers, Emails, WordPress, and troubleshooting infrastructures.">
<meta name="keywords"
content="cloud, email, server, IT, support, development, wordpress, smtp, form, website, service, upwork, fiverr, bug, fix, issue, freelancer">
<meta name="author" content="Ibrahim Sharif, shuvoaftab">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Home | Ibrahim Sharif is a Cloud, Server, Email and IT enthusiast who plays with WordPress.</title>
<link
href="https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap"
rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Kristi&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/plugins.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<!--[if lt IE 9]> <script type="text/javascript" src="js/modernizr.custom.js"></script> <![endif]-->
<!-- Google Tag Manager -->
<script defer src="js/gtm.js"></script>
<!-- End Google Tag Manager -->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe
src="https://www.googletagmanager.com/ns.html?utm_source=gitPage&utm_medium=directLink&utm_campaign=githubPage?id=GTM-N96NCLXF"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- Messenger Chat Plugin Code -->
<div loading="lazy" id="fb-root"></div>
<div loading="lazy" id="fb-customer-chat" class="fb-customerchat"></div>
<!-- <div id="preloader">
<div class="loader_line"></div>
</div> -->
<div class="elisc_tm_all_wrap" data-magic-cursor="show">
<div class="dodo_tm_one_page_wrapper">
<div class="elisc_tm_topbar">
<div class="topbar_inner">
<div class="logo" data-type="image">
<a class="image" href="#"><img src="img/logo/logo.png" alt /></a>
<a class="text" href="#"><span>Ibrahim Sharif</span></a>
</div>
<div class="trigger">
<div class="hamburger hamburger--slider">
<div class="hamburger-box">
<div class="hamburger-inner"></div>
</div>
</div>
</div>
</div>
</div>
<div class="elisc_tm_mobile_menu">
<div class="inner">
<div class="wrapper">
<div class="avatar">
<div class="image" data-img-url="img/about/ibrahim_thumb.jpg"></div>
</div>
<div class="menu_list">
<ul class="anchor_nav">
<li class="current"><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#service">Services</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#news">Blog</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<div class="social">
<ul>
<li><a href="https://github.com/shuvoaftab/" target="_blank"><i
class="icon-github-1"></i></a></li>
<li><a href="https://www.linkedin.com/in/ibrahimsharif/" target="_blank"><i
class="icon-linkedin-1"></i></a>
<!-- <li><a href="#"><img class="svg" src="img/svg/social/twitter.svg" alt /></a></li> -->
<!-- <li><a href="#"><img class="svg" src="img/svg/social/instagram.svg" alt /></a></li> -->
<!-- <li><a href="#"><img class="svg" src="img/svg/social/dribbble.svg" alt /></a></li> -->
<!-- <li><a href="#"><img class="svg" src="img/svg/social/tik-tok.svg" alt /></a></li> -->
</ul>
</div>
<div class="copyright">
<!-- <p id="copyright"></p> -->
<p>All rights reserved.</p>
</div>
</div>
</div>
</div>
<div class="elisc_tm_sidebar">
<div class="sidebar_inner">
<div class="author">
<div class="image">
<img src="img/thumbs/1-1.jpg" alt />
<div class="main" data-img-url="img/about/ibrahim_thumb.jpg"></div>
</div>
<div class="name">
<h3><span>Ibrahim Sharif<span class="back">Ibrahim Sharif</span></span></h3>
</div>
</div>
<div class="menu scrollable">
<ul class="anchor_nav">
<li class="current"><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#service">Services</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#news">Blog</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<div class="copyright">
<div class="social">
<ul>
<li><a href="https://github.com/shuvoaftab/" target="_blank"><i
class="icon-github-1"></i></a></li>
<li><a href="https://www.linkedin.com/in/ibrahimsharif/" target="_blank"><i
class="icon-linkedin-1"></i></a>
</li>
</ul>
</div>
<div class="text">
<p id="copyright"></p>
</div>
</div>
</div>
</div>
<div class="elisc_tm_mainpart">
<div class="mainpart_inner">
<div class="elisc_tm_section animated" id="home">
<div class="elisc_tm_home">
<div class="tm_content">
<div class="details">
<div class="left">
<div class="title">
<h3>Hi,<br /> I'm <span class="yellowColor">Ibrahim Sharif</span></h3>
<h3>
<span class="cd-headline rotate-1">
<span class="blc">Expert in</span>
<span class="cd-words-wrapper blueColor">
<b class="is-visible">Clouds</b>
<b>Servers</b>
<b>Emails</b>
<b>WordPress</b>
<b>Security</b>
<b>Linux</b>
</span>
</span>
</h3>
<!-- <h3>Based in Florida</h3> -->
</div>
<div class="subtitle">
<p>I am a Web Technology Expert with <span class="blueColor">10+
years</span> of Experience as a seasoned professional with a <span
class="blueColor">Bachelor's Degree</span> in <b>Computer Science
and
Engineering.</b></p>
</div>
<div class="buttons">
<div class="elisc_tm_button">
<a class="anchor"
href="https://ibrahimsharif.com/projects/index.html?utm_source=gitPage&utm_medium=directLink&utm_campaign=githubPage">See
all projects</a>
</div>
<div class="elisc_tm_button" data-style="border">
<a class="anchor" href="#contact">Let's talk</a>
</div>
</div>
<div class="info">
<ul>
<!-- <li><a href="tel:+77 022 444 05 05">+77 022 444 05 05</a></li> -->
<li><a href="mailto:[email protected]"><span
class="__cf_email__">contactibrahimsharif [at]
gmail.com</span></a>
</li>
<li><a class="href_location" href="#">Sylhet, Bangladesh</a>
</li>
</ul>
</div>
</div>
<div class="right">
<img src="img/about/ibrahim_traveller_collage.jpg"
alt="Ibrahim Sharif Travels the World"
style="border-radius: 5px;box-shadow: 3px 1px 17px #aebcb9;">
</div>
</div>
</div>
</div>
</div>
<div class="elisc_tm_section" id="about">
<div class="elisc_tm_about">
<div class="tm_content">
<div class="elisc_tm_biography">
<div class="left">
<div class="title">
<span class="mini">- Nice to meet you!</span>
<h3 class="name">Ibrahim Sharif</h3>
<span class="job">
<span class="cd-headline rotate-1">
<span class="blc">System Admin &</span>
<span class="cd-words-wrapper blueColor">
<b class="is-visible">WordPress Developer</b>
<!-- <b>Security Expert</b> -->
<b>Email Specialist</b>
<b>Migration Expert</b>
</span>
</span>
</span>
</div>
<div class="elisc_tm_button">
<a class="anchor" href="#portfolio">Got a project?</a>
</div>
</div>
<div class="right">
<div class="text">
<p>Hello there! <br /> My name is <span class="yellowColor">Ibrahim
Sharif</span>.
I am a Web Technology Expert with 10+ Years of Experience as a seasoned
professional with a Bachelor's Degree in <b>Computer Science and
Engineering</b>, and I'm very passionate and dedicated
to my work.</p>
<p>With 10+ years of working experience with Systems, Servers, and
Platforms, I
have
acquired the skills and knowledge necessary to make your project a
success, especially with <b>DevOps and Infrastructures</b>. I enjoy
every step
of the system design, from discussion and
collaboration.</p>
</div>
<div class="info">
<ul>
<li>
<span>Age</span>
<span>25+</span>
</li>
<li>
<span>Lives In</span>
<span><a class="href_location" href="#">Bangladesh</a></span>
</li>
<li>
<span>Mail</span>
<span><a href="mailto:[email protected]"><span
class="__cf_email__">contactibrahimsharif [at]
gmail.com</span></a>
</li>
<!-- <li>
<span>Phone</span>
<span><a href="tel:+880 1761 524596">+880 1761 524596</a></span>
</li> -->
</ul>
</div>
</div>
</div>
<div class="elisc_tm_counter">
<ul>
<li>
<div class="list_inner">
<h3>10+</h3>
<span>Years of Experience</span>
</div>
</li>
<li>
<div class="list_inner">
<h3>60+</h3>
<span>Projects Completed</span>
</div>
</li>
<li>
<div class="list_inner">
<h3>500+</h3>
<span>Tasks Resolved</span>
</div>
</li>
<li>
<div class="list_inner">
<h3>150+</h3>
<span>Happy Clients</span>
</div>
</li>
</ul>
</div>
</div>
<div class="elisc_tm_experience">
<div class="tm_content">
<div class="elisc_tm_title">
<span>- Experience</span>
<h3>Key Fields in Working!</h3>
</div>
<div class="list">
<ul>
<li>
<img class="popup_image" src="img/experience/1.jpg" alt />
<div class="list_inner">
<div class="short">
<div class="job">
<span class="yellowColor"> 2012 - Present</span>
<h3>System & Network Admin</h3>
</div>
<div class="place">
<span>-Linux</span>
</div>
</div>
<div class="text">
<p>10+ years of experience working with Linux OS and a Mikrotik
Certified Network Associate. Expertise in Hosting, Email,
Container, etc. Servers.
</p>
</div>
<a class="elisc_tm_full_link" href="#"></a>
<div class="hidden_details">
<div class="descriptions">
<p>Linux and network administration involves managing and
maintaining Linux operating systems and computer
networks, respectively. Linux administration includes
tasks like software installation, user management, and
system security. </p>
<p>Network administration encompasses tasks such as
configuring network devices, monitoring performance, and
ensuring data transmission efficiency. </p>
<p>These roles often intersect, as Linux skills are vital
for configuring network infrastructure, and network
knowledge is essential for managing Linux servers
effectively. Successful administrators in these fields
require technical expertise in both domains to ensure
seamless system and network operations.</p>
</div>
</div>
</div>
</li>
<li>
<img class="popup_image" src="img/experience/mailbox.png" alt />
<div class="list_inner">
<div class="short">
<div class="job">
<span class="yellowColor"> 2015 - Present</span>
<h3>DNS & Email Specialist</h3>
</div>
<div class="place">
<span>-PowerMTA</span>
</div>
</div>
<div class="text">
<p>8+ Years working with PowerMTA and then Postal. Email
Marketing Applications
such as Interspire, Mailwizz, Acelle, Sendy, and
expert in DNS.
</p>
</div>
<a class="elisc_tm_full_link" href="#"></a>
<div class="hidden_details">
<div class="descriptions">
<p>DNS records are essential components of the Domain Name
System (DNS) that provide crucial information about
domain names and their associated resources. These
records play a pivotal role in translating user-friendly
domain names into the numerical IP addresses required
for routing data across the internet. Understanding
different types of DNS records is fundamental for
effective domain management, website hosting, and
reliable email delivery. </p>
<p>In this portfolio section, I delve into the intricacies
of various DNS record types, their specific functions,
and how they collectively shape the landscape of modern
digital communication. Explore how DNS records such as
A, CNAME, MX, TXT, and NS records influence the
accessibility, security, and performance of online
services, offering insight into the intricate mechanics
that power our interconnected world.</p>
<p>The fusion of Domain Name System (DNS) and email services
stands as a testament to the interconnectedness of
modern communication. Email DNS integration is the
linchpin that ensures reliable and efficient email
delivery across the vast expanse of the internet. MX
(Mail Exchange) records, a crucial type of DNS record,
define the mail servers responsible for receiving emails
on behalf of a domain. These records serve as digital
signposts, guiding messages to their intended
destinations.</p>
<p>In this segment of my portfolio, I dissect the intricate
relationship between DNS and email services. I explore
the pivotal role of MX records in routing emails,
discuss strategies for optimizing email deliverability
through DNS configuration, and delve into the importance
of SPF (Sender Policy Framework) and DKIM (DomainKeys
Identified Mail) records in combatting email spoofing
and ensuring sender authenticity. This exploration
showcases how the collaboration between DNS and email
services is essential not only for seamless
communication but also for upholding the security and
credibility of the digital communication landscape.</p>
</div>
</div>
</div>
</li>
<li>
<img class="popup_image" src="img/experience/migration-cover.png" alt />
<div class="list_inner">
<div class="short">
<div class="job">
<span class="yellowColor"> 2016 - Present</span>
<h3>Migration Expert</h3>
</div>
<div class="place">
<span>-Websites & Emails</span>
</div>
</div>
<div class="text">
<p>Website Migration from One Server to Another Server, A Domain
to another Domain or Localhost Development
Environment into Production.</p>
</div>
<a class="elisc_tm_full_link" href="#"></a>
<div class="hidden_details">
<div class="descriptions">
<p>As a migration expert, I specialize in orchestrating
seamless transitions from one environment to another, be
it a different technology, platform, or system. With an
acute understanding of both source and destination
contexts, I navigate the complexities inherent in such
transitions, ensuring minimal disruptions and optimal
outcomes.</p>
<p>My portfolio showcases a diverse array of successful
migration projects, each highlighting my strategic
planning, meticulous execution, and adept
problem-solving. Whether it's migrating applications to
a cloud infrastructure, transitioning databases to
updated platforms, or orchestrating a company-wide
software migration, my expertise ensures that all
elements harmonize flawlessly.</p>
<p>By collaborating closely with stakeholders, I manage
timelines, mitigate risks, and deliver on performance
benchmarks. My comprehensive approach encompasses
pre-migration analysis, data validation, testing, and
post-migration support, guaranteeing a smooth shift
while safeguarding data integrity and maintaining
operational continuity.</p>
<p>Explore my portfolio to witness firsthand the finesse and
expertise I bring to every migration endeavor, and how
my skills are harnessed to transform potential
challenges into seamless opportunities for growth and
enhancement.</p>
</div>
</div>
</div>
</li>
<li>
<img class="popup_image" src="img/experience/4.jpg" alt />
<div class="list_inner">
<div class="short">
<div class="job">
<span class="yellowColor">Present</span>
<h3>Freelancer</h3>
</div>
<div class="place">
<span>-Fiverr & Upwork</span>
</div>
</div>
<div class="text">
<p>My Freelancing career started with Fiverr I reached Level
2 within 3 months and Upwork Top Rated within a month
afterward.</p>
</div>
<a class="elisc_tm_full_link" href="#"></a>
<div class="hidden_details">
<div class="descriptions">
<p>In the dynamic landscape of freelance work, my portfolio
exemplifies my journey as a skilled professional
thriving on platforms like Fiverr and Upwork. As a
freelancer, I leverage my expertise in diverse domains
to provide high-quality services and solutions to
clients worldwide.</p>
<p>With a commitment to excellence, my profile on Fiverr
showcases a spectrum of offerings, from content creation
and graphic design to web development and virtual
assistance. Each project reflects my dedication to
delivering tailored solutions that align with clients'
unique needs. Testimonials from satisfied clients
underline my ability to consistently exceed expectations
and create lasting value.</p>
<p>On Upwork, I've established a track record of success
through engagements that span software development,
digital marketing, and more. My comprehensive
understanding of client requirements and effective
communication skills are pivotal in forging productive
partnerships. My profile stands as a testament to my
ability to navigate the complexities of remote
collaboration, adapting to diverse work cultures and
time zones seamlessly.</p>
<p>Technologies that I specialize in are DNS, Email,
NGINX,
Apache, PHP, MySQL, cPanel/WHM, Plesk, AWS, Google
Cloud,
Microsoft Azure, Laravel, Mailwizz, Acelle, PowerMTA,
Mautic, Docker, Hosting, WAF, Automation, CRM, etc.</p>
<p>Through my portfolio, witness my versatility as a
freelancer on Fiverr and Upwork, showcasing how I
leverage my skills to provide solutions that drive
client satisfaction, build lasting relationships, and
contribute to the thriving global freelance community.
</p>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="elisc_tm_section" id="service">
<div class="elisc_tm_services">
<div class="tm_content">
<div class="elisc_tm_service_title">
<div class="elisc_tm_title">
<span>- Services</span>
<h3>My Services</h3>
</div>
<a
href="https://ibrahimsharif.com/services/index.html?utm_source=gitPage&utm_medium=directLink&utm_campaign=githubPage">See
all Services</a>
</div>
<div class="service_list">
<ul>
<li>
<img class="popup_image" src="img/service/server.png" alt />
<div class="list_inner">
<div class="details">
<div class="title">
<span>01</span>
<h3>Server Administration</h3>
</div>
<div class="text">
<p>Swiftly Resolve Hosting, Server,
Website, and Email Challenges...
</p>
</div>
<div class="elisc_tm_read_more">
<a
href="https://ibrahimsharif.com/services/servers/index.html?utm_source=gitPage&utm_medium=directLink&utm_campaign=githubPage">Read
More<span><img class="svg" src="img/svg/rightArrow.svg"
alt /></span></a>
</div>
</div>
<a class="elisc_tm_full_link" href="#"></a>
<div class="hidden_details">
<div class="descriptions">
<p><b>1. DNS & Email Services:</b> Cloudflare DNS, SPF, DKIM,
DMARC,
Email problems.</p>
<p>
<b>2. Fix Linux Server Services:</b> Web server, Mail
Server,
VPN/Proxy Server, DNS Server, Hosting Server, etc.</p>
<p>
<b>3. Fix Cloud & Hosting Companies Services:</b>
DigitalOcean,
Linode, Vultr, OVH, AWS, Google Cloud, Oracle Cloud,
CloudWays.</p>
<p>
<b>4. Fix Web Hosting Control Panel Services:</b> cPanel
WHM,
VestaCP, Webmin, Virtualmin, CWP.</p>
<p>
<b>5. SSL / TLS Support Services:</b> Free SSL, Let's
Encrypt, or
Any Paid SSL.</p>
<p>
<b>6. Email Migration Services:</b> Migrate Emails from
Account to
Account and Server to Server.</p>
<p>
<b>7. Security Support Services:</b> Cloudflare, Web
Application
Firewall, Wordfence, Malware, Mod Security, WAF.</p>
<p>
<b>8. Website Migration Services:</b> Migrate any Website
from
Server to Server and Domain to Domain.</p>
<p>
<b>9. Migrate Localhost.</b>
</p>
</div>
</div>
</div>
</li>
<li>
<img class="popup_image" src="img/service/Email.png" alt />
<div class="list_inner">
<div class="details">
<div class="title">
<span>02</span>
<h3>Email Automation</h3>
</div>
<div class="text">
<p>Email Automation, Setup, Deliverability, and Dedicated
Servers...
</p>
</div>
<div class="elisc_tm_read_more">
<a
href="https://ibrahimsharif.com/services/email/index.html?utm_source=gitPage&utm_medium=directLink&utm_campaign=githubPage">Read
More<span><img class="svg" src="img/svg/rightArrow.svg"
alt /></span></a>
</div>
</div>
<a class="elisc_tm_full_link" href="#"></a>
<div class="hidden_details">
<div class="descriptions">
<p>
1. Troubleshoot DNS and Configure SPF, DKIM, DMARC, and BIMI
authentications.</p>
<p>
2. Installation of any Email Marketing Application
(Mailwizz, Acelle, Interspire, Sendy, WordPress)</p>
<p>
3. Configure PowerMTA, Zimbra, Postal, etc. SMTP Servers</p>
<p>
4. Configuration of Email Marketing Application with any
Email Delivery Provider.</p>
<p>
5. Debug Email Deliverability.</p>
<p>
6. Email Migration between domains and servers.</p>
<p>
7. Email Automation Design Flow.</p>
<p>
8. WooCommerce and WordPress Email Automation by
FluentCRM, GroundHogg, etc.</p>
<p>
9. Dedicated SMTP Email Server setup</p>
<p>
10. Autoresponders, Automation Emails</p>
<p>
11. Active Campaign, Mailchimp, Aweber, Hubspot,
etc.</p>
<p>
12. Configure WordPress SMTP (WP Mail SMTP, Fluent SMTP,
Post SMTP, etc.)
</p>
</div>
</div>
</div>
</li>
<li>
<img class="popup_image" src="img/service/DNS.png" alt />
<div class="list_inner">
<div class="details">
<div class="title">
<span>03</span>
<h3>DNS & Email</h3>
</div>
<div class="text">
<p>cPanel, WHM, DNS, Email Migration & Management at Your
Service...
</p>
</div>
<div class="elisc_tm_read_more">
<a
href="https://ibrahimsharif.com/services/misc/dns-issues.html?utm_source=gitPage&utm_medium=directLink&utm_campaign=githubPage">Read
More<span><img class="svg" src="img/svg/rightArrow.svg"
alt /></span></a>
</div>
</div>
<a class="elisc_tm_full_link" href="#"></a>
<div class="hidden_details">
<div class="descriptions">
<p>
1. Configure cPanel and WHM or any hosting control panel.
</p>
<p>
2. Fix DNS, MX, and Email Issues.</p>
<p>
3. Troubleshoot Website issues.</p>
<p>
4. Migrate Websites and Emails.</p>
<p>
5. Performance Optimization.</p>
<p><br /><br /><br />
I will provide you with support about :
</p>
<p>
<b>1. Linux OS:</b> CentOS, Ubuntu, Alma, Rocky, Fedora,
etc.</p>
<p>
<b>2. Linux Server Issue:</b> Web server, Mail Server,
VPN/Proxy
Server, DNS Server</p>
<p>
<b>3. Linux VPS / Dedicated server issue:</b> AWS, Google
Cloud,
Microsoft Azure, DigitalOcean, Linode, Vultr, OVH</p>
<p>
<b>4. Web Servers:</b> Apache, NGINX, LiteSpeed, PHP, MySQL,
MariaDB</p>
<p>
<b>5. WHM and cPanel:</b> Complete Setup, Firewall, Email,
Migration</p>
<p>
<b>6. DNS:</b> A, MX, SPF, DKIM, DMARC, TXT, CNAME</p>
<p>
<b>7. SMTP Server Configuration</b></p>
<p>
<b>8. Email Deliverability Troubleshooting</b></p>
<p>
<b>9. SSL Certificates</b> installation</p>
<p>
<b>10. Database Operation</b> & Migration</p>
<p>
<b>11. Website Migration</b></p>
<p>
<b>12. Email Migration</b></p>
<p>
<b>13. Website Troubleshooting</b></p>
<p>
<b>14. WordPress and Laravel Website issues</b>
</p>
</div>
</div>
</div>
</li>
<li>
<img class="popup_image" src="img/service/migration.png" alt />
<div class="list_inner">
<div class="details">
<div class="title">
<span>04</span>
<h3>Migration</h3>
</div>
<div class="text">
<p>99.99% Uptime | No Email Downtime | Move | Clone | Transfer |
Migrate WordPress...
</p>
</div>
<div class="elisc_tm_read_more">
<a
href="https://ibrahimsharif.com/services/migration/index.html?utm_source=gitPage&utm_medium=directLink&utm_campaign=githubPage">Read
More<span><img class="svg" src="img/svg/rightArrow.svg"
alt /></span></a>
</div>
</div>
<a class="elisc_tm_full_link" href="#"></a>
<div class="hidden_details">
<div class="descriptions">
<p>
1. Migrate your WordPress Website to New Domain or
Hosting.<br />
2. Transfer your Self-Hosted Website to a New Domain or
Hosting Company.<br />
3. Move Wordpress, Migrate or Transfer Complete Sub-Domain
to Root Domain and Root Domain to Sub-Domain.<br />
4. Move your Localhost Website to Production Server or Live
Site.<br />
5. Complete Transfer of PHP, HTML, CSS, JS Files, and MySQL
Database.<br />
6. Update and Upgrade your current website Extensions,
Plugins, and Themes.<br />
7. SSL Certificates, Email Migration.<br /><br /><br />
Servers, Hostings, and Companies:<br />
1. Cloud: AWS, Google Cloud, Microsoft Azure, Alibaba Cloud,
Digital Ocean, Cloudways, etc.<br />
2. Hosting: Bluehost, HostGator, InMotion, A2 Hosting,
SiteGround, GoDaddy, Hostinger, DreamHost, WPEngine.<br />
3. Servers: Shared, VPS, and Dedicated.<br />
</p>
</div>
</div>
</div>
</li>
<li>
<img class="popup_image" src="img/service/debug.png" alt />
<div class="list_inner">
<div class="details">
<div class="title">
<span>05</span>
<h3>Debug & Fix</h3>
</div>
<div class="text">
<p>WordPress | WooCommerce | Bug Fix | Recover |
Security | SMTP | Errors...
</p>
</div>
<div class="elisc_tm_read_more">
<a
href="https://ibrahimsharif.com/services/wordpress/fix-wordpress-bugs.html?utm_source=gitPage&utm_medium=directLink&utm_campaign=githubPage">Read
More<span><img class="svg" src="img/svg/rightArrow.svg"
alt /></span></a>
</div>
</div>
<a class="elisc_tm_full_link" href="#"></a>
<div class="hidden_details">
<div class="descriptions">
<p>
1. Fix any WordPress errors.<br />
2. Website Domain/Hosting Migration and Backup.<br />
3. Customize Any WordPress Theme.<br />
4. Clean Malware/Hacked Websites.<br />
5. Fixing Theme/Plugin CSS/JS/PHP Related Issues.<br />
6. Install Theme and Setup Like as Demo.<br />
7. Build Complete Business, E-commerce, or any Category
Website.<br />
8. WordPress SMTP & Email Delivery Issues.<br />
9. Plugin Conflict.<br />
10. Build Custom Functions or Features.<br />
11. Wordfence, iThemes, Succuri, Cloudflare, Firewall, and
Security Issues.<br />
12. WordPress Speed and Performance Optimization.<br />
15. PSD or Figma to WordPress.<br />
16. Fix Widgets, Sidebars, Footers, Headers, Sticky headers,
Menus.<br />
18. Adjust Alignments, Margins, Paddings, Positioning.<br />
19. Contact Form Setup & Integration.<br />
20. Woocommerce Automation.<br />
21. Debugging & Troubleshooting.<br />
22. Any Other WordPress Related Services.<br />
</p>
</div>
</div>
</div>
</li>
<li>
<img class="popup_image" src="img/service/customization.png" alt />
<div class="list_inner">
<div class="details">
<div class="title">
<span>06</span>
<h3>Customization</h3>
</div>
<div class="text">
<p>Customization | Design | Development | CSS | JavaScript...
</p>
</div>
<div class="elisc_tm_read_more">
<a
href="https://ibrahimsharif.com/services/wordpress/customize-wordpress.html?utm_source=gitPage&utm_medium=directLink&utm_campaign=githubPage">Read
More<span><img class="svg" src="img/svg/rightArrow.svg"
alt /></span></a>
</div>
</div>
<a class="elisc_tm_full_link" href="#"></a>
<div class="hidden_details">
<div class="descriptions">
<p>
1. Fix any WordPress Errors and Customize any Theme.<br />
2. Website Domain/Hosting Migration and Backup.<br />
3. Customize Any WordPress Theme.<br />
4. Clean Malware/Hacked Websites.<br />
5. Fixing Theme/Plugin CSS/JS/PHP Related Issues.<br />
6. Install Theme and Setup Like as Demo.<br />
7. Build Complete Business, E-commerce, or any Category
Website.<br />
8. WordPress SMTP & Email Delivery Issues.<br />
9. Adjust Alignments, Margins, Paddings, Positioning.<br />
10. Build Custom Functions or Features.<br />
11. Wordfence, iThemes, Succuri, Cloudflare, Firewall, and
Security Issues.<br />
12. WordPress Speed and Performance Optimization.<br />
15. PSD or Figma to WordPress.<br />
16. Fix Widgets, Sidebars, Footers, Headers, Sticky headers,
Menus.<br />
18. Debugging & Troubleshooting.<br />
19. Contact Form Setup & Integration.<br />
20. Woocommerce Automation.<br />
21. Any Other WordPress Related Services.<br />
</p>
</div>
</div>
</div>
</li>
</ul>
</div>
<!-- <div class="elisc_tm_video">
<img class="placeholder" src="img/thumbs/4-2.jpg" alt />
<div class="image" data-img-url="img/service/1.jpg"></div>
<div class="overlay"></div>
<span class="play"><img class="svg" src="img/svg/play.svg" alt /></span>
<div class="text">
<h3>Intro Video</h3>
</div>
<a class="elisc_tm_full_link popup-youtube"
href="https://www.youtube.com/watch?v=pQy1hYL534M"></a>
</div> -->
</div>
</div>
</div>
<div class="elisc_tm_section" id="portfolio">
<div class="elisc_tm_portfolio">
<div class="tm_content">
<div class="elisc_tm_portfolio_title">
<div class="elisc_tm_title">
<span>- Projects</span>
<h3>Major Projects that I work regularly</h3>
</div>
<div class="buttons">