acf domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home1/douglav3/public_html/wp-includes/functions.php on line 6170if you get the session error change the path as shown under session.save_path
2. If you are a development environment set the zend.assertion = 1
3. If you enable debug ( DEBUG=”false”) then set send.assertion = -1 as shown in the image

Rooms belong to properties. To fetch all the properties with name and location as the query search/filter parameter below is a how one gets to achieve this:
$q = $this->getRequest()->getQuery('q');
$q = strtolower($q);
$rooms = $this->paginate($roomsTable->find()
->matching('Properties.Landlord', function ($query) {
return $query->where([
'active ' => 'yes',
]);
})
->where([
'Rooms.occupied' => 'no',
'Rooms.occupant_id IS' => null,
'OR' => [
'LOWER(Rooms.name) LIKE' => "%$q%",
'Rooms.cost LIKE' => "%$q%",
'LOWER(Properties.name) LIKE' => "%$q%",
'LOWER(Properties.location) LIKE' => "%$q%",
],
])
->contain(['Properties.Agents.Managers']));
]]>body {
background-image: url(....);
background-color: #00ce2d;
backgound-blend-mode: screen;
}
e.g on stripe
body > #bg{
height:100%
width:100%
background-color: rgb(2,211,248);
clip-path:polygon(100% 1%,100% 49%, 49% 99%,0 99%,0 0);
position:absolute;
z-index:-1;
}
Use clip-path maker online tools
bennettfeely.com/clippy
@keyframes blink {
0%{
background:violet;
}
15%{
background:indigo;
100%{
background:violet;
}
}
@-webkit-keyframes blink {
0%{
background:violet;
}
15%{
background:indigo;
100%{
background:violet;
}
}
div{
height: 500px;
width:500px;
border:1px solid black;
animation: blink 10s infinite;
-webkit-animation : blink 10s infinite
}
fonts.google.com
select style and embed it to your page
body {
background:
background: radial-gradient(
circle,
rgba() 10%,
rgba() 100%,
}
CSS gradient generators e.g cssgradient.io
Credits to : https://www.youtube.com/watch?v=wfaDzSL6ll0 (Keep coding Youtube Channel)
]]>At Source Code i was tasked with :
Developing E-commerce sites e.g Thinkmate.com,aberdeeninc.com,siliconmechanics.com etc.

Developing in house applications /tools like sales order work flow ,purchase orders,Content manager(CMS),invoice,product online configurator and quote tools.
Generate mindmaps,conceptual maps ,dataflow diagrams and logic maps.
I was tasked to work with the UX/UI designer to implement functional beta versions based off the dataflow diagrams and user flow diagrams/user stories.
Unit testing and Continous Integration and deployment using Jenkins.
Web application development was carried out using PHPStorm (IDE )with a developer Cloud based machine(LINUX) running Redhat OS.
As a developer I was in charge of creating unit test plans and running unit tests on the functions and methods i had created.Once tests are complete you commit your code to github and resolve any merge conflicts.
A core aspect of development and source control was database migrations using cakePHP,creation of seeding files and running database updates using migration.
You then make a pull request to the integration server where all the code undergoes reviews and automated tests then deployment with Jenkins.if the tests are successful.
One of my role was to develop and guide the automated deployment process using shell scripts to generate deployment pipelines for Jenkins.Managing the Jenkins server ,making sure the tasks are completed once the review process is complete.
]]>Choosing the Right Mobile App Development Technology
Quick Summary :- If we are to compare Flutter vs native technologies, both are sufficient when it comes to providing exemplary user experience, and high scalability. But is this the only common relation between these two? Not exactly. They differ hugely when it comes to the development pattern, costs, performance, maintenance and so much more. This article covers every aspect of Flutter vs native technologies, their benefits, limitations, and differences to help you make an informed decision.
Is it or is it not better to develop one application for two mobile platforms than essentially developing two different apps with separate codebases? To make your decision-making process more comfortable, we conducted this research to compare criteria such as cost of development, performance, architecture, use cases, and more. By the end of this blog, you will know when exactly you should choose Flutter or Native technology.
iOS and Android are prominent mobile application platforms that leverage their native technologies for development purposes. Swift for iOS with Xcode or Java, Kotlin with Android Studio is some of the notable examples. However, in recent times, it is abundantly clear that a cross-platform framework like Flutter has been on the rise, and it provides native performance for iOS and Android with a single-code line.
iOS and Android are prominent mobile application platforms that leverage their native technologies for development purposes. Swift for iOS with Xcode or Java, Kotlin with Android Studio is some of the notable examples. However, in recent times, it is abundantly clear that a cross-platform framework like Flutter has been on the rise, and it provides native performance for iOS and Android with a single-code line.
]]>