Blog

Remove public from URL

User remove public from silverstripe url /public Assistant Got it—this usually happens when your domain points to the project root instead of the Silverstripe webroot (`/public`). Here are the clean ways to remove `/public` from the URL. # Recommended (best practice): point your webroot to `/public` **Apache (vhost)** <VirtualHost *:80> ServerName example.com DocumentRoot /var/www/site/current/public <Directory […]

Save Optionset value checked

User $Title $Title we have created custom option field in silver stripe how to show selected Assistant Use the option’s “checked” flag from SilverStripe in your loop. In `OptionsetField` (radio), the flag is `$isChecked` (for dropdowns it’s `$isSelected`). Also use `$AttributesHTML` so core attributes (incl. `required`, `disabled`, etc.) are applied. Here’s your snippet adjusted: <div […]

T3 EC2 pricing details

User T3 large ec2 instance month price Assistant If you're looking to estimate the **monthly cost** for an **AWS EC2 T3 Large** instance (which includes 2 vCPUs and 8 GiB memory), here’s what’s current: — ### Pricing Overview #### **On-Demand (Linux)** – The base rate is approximately **$0.0832 per hour** citeturn0search1turn0search9. – Assuming 24×7 usage […]

Creative caption writing

User  That feeling of peace and acceptance around krishna♥️ this mandir is my heart made🧿♥️ Its a caption for my mandir Make it good and best add yours creativity of words Assistant Here’s a more polished and creative version of your caption for the mandir: ✨ **“In this sacred space, I feel the quiet embrace […]

Krishna Janmashtami decoration guide

User How to decorate this for Krishna janmashthami Assistant You’ve got a beautiful little wooden jhula (swing) here — perfect for a Krishna Janmashtami setup! Here’s how you can decorate it step-by-step so it looks festive and divine: — **1. Clean & Base Covering** – Wipe the swing clean so the decorations stick well. – […]

TFS server example

User What is tfs server? Give me an example Assistant A **TFS server** is a **Team Foundation Server**, a Microsoft product (now succeeded by Azure DevOps Server) used for **version control, project management, and build/release automation**. It’s often used in software development teams to store code, track work items (tasks, bugs, features), and manage the […]

WEBFL-330 steps

User I have to do webfl 330 ticket, let me know the steps Assistant Neeraj, from our earlier discussions on WEBFL-330, here’s how you should approach it step-by-step so you don’t get lost and can show clear progress without asking repeatedly: — ### **1️⃣ Understand the Scope** – **Check the ticket description** in JIRA for […]

Mobile site speed tips

User We have added rocket plugin and also setup cloudflare in a worpdress site but still mobile site speed is less tha 50 in pagespeedinsight Assistant Got it. WP Rocket + Cloudflare is a solid start, but mobile // functions.php add_filter('wp_get_attachment_image_attributes', function($attr) { if (is_front_page() || is_singular()) { $attr['fetchpriority'] = 'high'; $attr['decoding'] = 'async'; } […]

WordPress editor space issue

User WordPress admin page wp editor not creating space when press enter Assistant Got it—this is usually one of two things: 1) **Editor is creating new paragraphs, but there’s no visible space** (CSS reset in the editor). 2) **Editor isn’t creating “ at all** (TinyMCE/Gutenberg config changed). Do this fast check: – Switch to **Code […]

Polylang admin ajax issue

User Polylang wordpress default set FR for admin and site But when admin logged in and we opned page like /en/event and perform ajax call from a tabl in this page polylang cookie set language FR even we swithced the labguge rto en but same condition when we open same page without admin login then […]