As many of you know, we recently launched a side project named PicTur. This is a website, built with the help of PHPRunner, that allows users build beautiful travel stories. Instead of letting you pictures collect dust you can create a travel story and share with the world. Take a look open an account and maybe create a story or two.

This website was built with the help of PHPRunner and was heavily customized. We will post series of articles talking about the most interesting parts of this project. Let us start by showing how pages like login, register and remind password were prettified. First, we found a good login template at Carrd, customized it a bit and imported CSS into PHPRunner.

This is the end result:

PicTur..app login page

Continue Reading "Yet another custom login page"

We are working on version 11 of PHPRunner and ASPRunner.NET. From the engineering point of view, this is a huge redesign that will significantly improve the user experience. We are switching from storing project data in XML and SQLite databases to a real database like MySQL or SQL Server. Also, switching from a slow Internet Explorer engine that powers our UI to Chrome.

Benefits

  • Much faster UI
  • Much faster work with large ( 1000+ tables ) projects
  • Multi-user work!
  • Revisions and roll-backs
  • Later: Mac/Linux versions
Continue Reading "Version 11"

In this article we will show you how to generate PDF invoices on the web server side. We use this approach to generate and email billing reminders to our customers.

1. Download NodeJS to the web server. For Windows choose 64-bit MSI installer.

2. Run and install keeping all default settings.

3. Inside your project create a new folder named pdfmake.

Continue Reading "Generate PDF files using NodeJS and PDFMake"

An old programmer’s saying, coined by Jamie Zawinski, says “Every program attempts to expand until it can read mail”. Jokes aside, email was and still is an integral part of our lives, and every web application needs to send emails to its users. This guide will walk you through all the steps to ensure every single email-sending aspect is covered. This is going to be a long article and we plan to update it often. Here are the topics, that will be covered in this…Continue Reading “A Complete Guide to Sending Emails with a Web-based Application”

People often ask us this: “I found a great-looking theme on the Internet, how do I import it into PHPRunner or ASPRunner.NET”. The problem is that all themes are implemented differently, there is no standard they follow and they cannot be “imported”. However, it is possible to make your project look exactly like any of those themes and this article will teach you how to do this.

For the inspiration, we will be using Material Dashboard Dark Edition theme by Creative Tim. Here is how it looks:

Continue Reading "How to create a beautiful dashboard theme"

When you have a long List page with dozens of records, editing or viewing a record on a separate can be cumbersome. After you edit or view a record, clicking ‘Back to List’ will display all the records from the top and you lost the position of the record you just edited. This simple technique will allow you to scroll the List page back to the original position and also it will highlight the record that was just edited or viewed. To implement this feature…Continue Reading “How to scroll List page to the record that was edited”

PHPRunner and ASPRunner.NET 10.8 are here!

Trial version download links

If you purchased PHPRunner or ASPRunner.NET less than 12 months ago, proceed to the control panel and download the registered version 10.8 there under ‘My purchases’. Use ‘Reg info’ link next to your latest purchase.

This new version features the following improvements:

1. New dashboards look and customization options

There are many ways to configure and style dashboards in version 10.8. This is just one of them.

Continue Reading "Version 10.8"

So you want to know how much time users spend on any specific page of your web application? This article explains how to log what pages your users visit and how much time they spend on each page. This kind of data can provide valuable insight into what forms of your application are too complicated and need to be split into several smaller forms. Or if they keep coming back to the welcome page this may mean your navigation inside the app can be improved.

Continue Reading "Tracking visitors behaviour in your web application"

Task – implement custom grid display in PHPRunner or ASPRunner.NET applications on mobile screens. The idea is to use the same HTML and achieve our goal using CSS only.

CSS Grid layout is nothing new and excellent tutorials are available on the web for those who want to learn more. In this article we will only cover all the relevant details to PHPRunner and ASPRunner.NET.

In this article, we will be using our Forum template as an example of using CSS Grid Layout.

Desktop version

Here is where we start. Just a regular desktop grid with all database fields occupying their own cell.

Continue Reading "Using CSS grid for mobile screens – a complete tutorial"