• DevOps
    Case Study

    How we built a resilient multi-account, multi-cloud solution for a Health Tech service provider!

    READ CASESTUDY
    icon

    24/7 DevOps as a Service

    Round-the-clock DevOps for uninterrupted efficiency.

    icon

    Infrastructure as a Code

    Crafting infrastructure with ingenious code.

    icon

    CI/CD Pipeline

    Automated CI/CD pipeline for seamless deployments.

    icon

    DevSecOps

    Integrated security in continuous DevOps practices.

    icon

    Hire DevOps Engineers

    Level up your team with DevOps visionaries.

    icon

    Consulting Services

    Navigate success with expert DevOps consulting.

  • TechOps
    Case Study

    How we built a scalable Odoo solution for a Travel Tech service provider!

    READ CASESTUDY

    WEB HOSTING SUPPORT

    icon

    HelpDesk Support

    Highly skilled 24/7 HelpDesk Support

    icon

    Product Support

    Boost your product support with our expertise.

    MANAGED SERVICES

    icon

    Server Management

    Don’t let server issues slow you down. Let us manage them for you.

    icon

    Server Monitoring

    Safeguard your server health with our comprehensive monitoring solutions.

    STAFF AUGMENTATION

    icon

    Hire an Admin

    Transform your business operations with our expert administrative support.

    icon

    Hire a Team

    Augment your workforce with highly skilled professionals from our diverse talent pool.

  • CloudOps
    Case Study

    How we helped a Private Deemed University in India, save US $3500/m on hosting charges!

    READ CASESTUDY
    icon

    AWS Well Architected Review

    Round-the-clock for uninterrupted efficiency

    icon

    Optimize

    Efficient CloudOps mastery for seamless cloud management

    icon

    Manage

    Automated CI/CD pipeline for seamless deployments

    icon

    Migrate

    Upgrade the journey, Migrate & Modernize seamlessly

    icon

    Modernize

    Simplify compliance complexities with our dedicated services

    icon

    FinOps as a Service

    FinOps as a Service

  • SecOps
    Case Study

    How we built a scalable Odoo solution for TravelTech service provider!

    READ CASESTUDY
    icon

    VAPT

    Vulnerability Assessment and Penetration Testing

    icon

    Source Code Review

    Ensuring source code security ans safe practices to reduce risks

    icon

    Security Consultation

    On demand services for improving server security

    icon

    System Hardening

    Reduced vulnerability and proactive protection

    icon

    Managed SoC

    Monitors and maintains system security. Quick response on incidents.

    icon

    Compliance as a Service

    Regulatory compliance, reduced risk

  • Insights
    Case Study

    How we helped a Private Deemed University in India, save US $3,500/m on hosting charges!

    READ CASESTUDY
    icon

    Blog

    Explore our latest articles and insights

    icon

    Case Studies

    Read about our client success stories

    icon

    Flipbook

    Explore our latest Flipbook

    icon

    Events

    Join us at upcoming events and conferences

    icon

    Webinars

    Watch our educational webinar series

  • Our Story
  • Contact Us

Interested to collaborate?

Get in touch with us!

Ready to elevate your business with certified cloud expertise? Contact us today to learn how our team can help you leverage cloud technology to drive growth, streamline operations, and enhance security.

  • AWSAWS
  • Azure CloudAzure Cloud
  • Google CloudGoogle Cloud
  • Akamai CloudAkamai Cloud
  • OVHOVH
  • Digital OceanDigital Ocean
  • HetznerHetzner
  • Kubernetes Consultancy Services
  • K8s & Cloud native Solutions
  • 24/7 Infrastructure Monitoring
  • DevOps as a Service
  • Cloud CI/CD Solutions
  • White Labeled MSP Support
  • Our story
  • Life@SupportSages
  • Insights
  • Careers
  • Events
  • Contact Us

Connect with us!


LinkedInFacebookXInstagramYouTube

aws partneraws advanced partner
SupportSages

Copyright © 2008 – 2026 SupportSages Pvt Ltd. All Rights Reserved.
Privacy PolicyLegal TermsData ProtectionCookie Policy

Undefined Index URL Error In Email Template For Magento 1.3.2.4

Scott S

  • 4 min read
Undefined Index URL Error In Email Template For Magento 1.3.2.4

Generating audio, please wait...

Since we provide Magento installation and Magento Migration support to our clients, we often came across this error. Before we start we should know where exactly we get this error in a Magento website. We get this error while trying to preview an email template or loading a template etc using the Transactional email options in your Magento admin panel.

STEPS TO DUPLICATE THE ISSUE:

Login to your Magento admin panel by following http://yourdomainname.com/admin


(Click to enlarge images)

Goto Transactional Emails under the system tab.

Add a new template using the Add New Template option.

Here you can see an option to Load a default Template

Select a template from the Template drop down box and then select Load Template so that the loaded template information gets loaded in the Template Information area which is just below.

Now trying to preview the template using the Preview Template option gives you the Undefined index: url error as shown in the screenshot.

ERROR:

Notice: Undefined index: url in /home/username/public_html/app/code/core/Mage/Core/Model/Email/Template/Filter.php on line 253

Trace: #0 /home/username/public_html/app/code/core/Mage/Core/Model/Email/Template/Filter.php(253): mageCoreErrorHandler(8, ‘Undefined index…’, ‘/home/username/…’, 253, Array)

#1 /home/username/public_html/lib/Varien/Filter/Template.php(134): Mage_Core_Model_Email_Template_Filter->storeDirective(Array)

#2 /home/username/public_html/app/code/core/Mage/Core/Model/Email/Template.php(283): Varien_Filter_Template->filter(Array, Array)

#3 /home/username/public_html/app/code/core/Mage/Adminhtml/Block/System/Email/Template/Preview.php(50): Mage_Core_Model_Email_Template->getProcessedTemplate(‘

Troubleshooting:

As you can see, in the Template Information section the Template Content is filled up with some codes as shown below.

——————————————————

<td valign=”top”><a href=”{{store%20url=” “}}”=””><img src=”{{skin%20url=” images=”” logo_email.gif”=”” _area=”frontend” }}”=”” alt=”Magento” style=”margin-bottom: 10px” border=”0″ /></a></td></tr></tbody></table><!– [ middle starts here] –>

——————————————————

In the above codes you can find a character %20 . What exactly is this? This is HTML URL Encoding . URL encoding converts characters into a format that can be transmitted over the Internet.

The codes in templates for certain Magento versions have HTML encoding of certain characters. In HTML URL encoding %20 stands for a blank space. To overcome this issue, replace the %20 in the Template Content code with a blank space.

In the above code for Template, you can see the store url is defined as store%20url, which is the reason for the error. Replace the %20 with a blank space as shown below:

——————————————————

<td valign=”top”><a href=”{{store url=” “}}”=””><img src=”{{skin url=” images=”” logo_email.gif”=”” _area=”frontend” }}”=”” alt=”Magento” style=”margin-bottom: 10px” border=”0″ /></a></td></tr></tbody></table><!– [ middle starts here] –>

——————————————————

Wherever you find a %20 in the template code replace it with a blank space.
You can learn more about HTML URL encoding from search engines like Google. Here is one such tutorial for HTML URL ENCODING http://www.tutorialspoint.com/html/html_url_encoding.htm .

Now use the Preview option to preview your template. You will get an output as shown below:

Bingo!! You have done it!!

For Magento installation and Magento site migration support, please do contact our 3rd party software installation team and Data Migration team respectively

  • magento
Undefined Index URL Error In Email Template For Magento 1.3.2.4

All you want to know about Asterisk – Asterisk PBX – Part 3

All you want to know about Asterisk – Asterisk PBX – Part 3
  • Linux
logo

All you want to know about Asterisk – VoIP system architecture – Part 2

All you want to know about Asterisk – VoIP system architecture – Part 2
  • Howtos
  • Linux
logo

All you want to know about Asterisk – VoIP Fundamentals – Part 1

All you want to know about Asterisk – VoIP Fundamentals – Part 1
  • Howtos
  • Linux
logo

Asterisk Setup – Frequently Asked Questions and Answers

Asterisk Setup – Frequently Asked Questions and Answers
  • Linux
logo

Posts by Scott S

Scott follows his heart and enjoys design and implementation of advanced, sophisticated enterprise solutions. His never ending passion towards technological advancements, unyielding affinity to perfection and excitement in exploration of new areas, helps him to be on the top of everything he is involved with. This amateur bike stunting expert probably loves cars and bikes much more than his family. He currently spearheads the Enterprise Solutions and Infrastructure Consultancy wing of SupportSages.