26Jan, 2022

The State of CMS Platforms in 2022

Is it time for a website refresh? We’re living in one of the most hyper-competitive times to be in business. There’s more competition than ever before—with much of it happening on the extremely busy and constantly changing world that is the internet. How can your company stand out within this crowded space? To be successful, you need an online presence that’s as powerful as your well-designed brand. You need a content management system that’s easy to use but flexible enough…

18Nov, 2020

wamp server offline showing a blank page

  • By smartz
  • 18 Nov 2020
  • Wamp

localhost blank me Problem slove Changing port is easy, BUT NOT RECOMMENDED If you have SKYPE just configure it not to use port 80 and 443 Skype -> tools -> Options -> Advanced -> Connection UnTick the checkbox next to “Use port 80 and 443as alternatives for incoming connections” Kill Skype restart Skype Now using wamp, restart all services Does the wamp manager icon go GREEN?

18Nov, 2020

How to Starting Apache fail Ubuntu

  • By smartz
  • 18 Nov 2020
  • Ubuntu

Just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below: sudo /etc/init.d/apache2 stop sudo /etc/init.d/mysql stop sudo /etc/init.d/proftpd stop sudo /opt/lampp/lampp start

18Nov, 2020

XML Parsing Error: XML or text declaration not at start of entity in wp

DON’T PANIC! There is a simple solution for this. It doesn’t require some crazy plugin. It doesn’t require hiring a super hacker geek to fix it AND it won’t require hours upon hours of Google’ing for the solution. Now, if you want to try there are a few possible solutions. You can try: Reading this helpful article on the RSS Validator site: http://feedvalidator.org/docs/error/WPBlankLine.html Try the FIX RSS FEED plugin for WordPress (didn’t work for my clients site at all) Paying someone lots of…

4Nov, 2020

What is missing in application development lifecycle?

Today if you ask the CTO of any company – “What’s stopping IT from delivering a better ROI?” I bet one of the answers would be – Legacy Applications. While most CTO’s would agree that legacy applications are problem-some, all would agree that such applications are also integral to their daily operations. According to a research by Information Week , 70% of transactions are processed in COBOL. And also 70% of the IT budget is devoted to legacy application maintenance.…

2Aug, 2020

magento 2.2 upgrade to latest version step by step instructions

The first step: Before you do anything: go ahead and back up your store, we'll need to back up the database and database, this should be a smooth upgrade but you never know (it's Magento after all ...) You will be grateful because you can downgrade to a functional version of Easily store your magento if an error occurs during the upgrade process. It's important to back up your store for things like this, don't underestimate the step! You can…

13May, 2020

Magento 2.3.5 CSS and Js not loading

Here is the simplest solution if showing version name in css path like : pub/static/version323334/ then run this query in mysql INSERT INTO core_config_data (path, value) VALUES ('dev/static/sign', 0) ON DUPLICATE KEY UPDATE value = 0; after that clear the config cache bin/magento cache:clean config Second solution  Run query in database : INSERT INTO core_config_data (scope, scope_id, path, value) VALUES ('default', 0, 'dev/static/sign', '0'); Third Solutions php bin/magento setup:upgrade php bin/magento setup:di:compile php bin/magento setup:static-content:deploy