Questions tagged [custom-backend]

64 questions
1
vote
1 answer

Context IO node.js client library

I'm using Context.io's Node.js client library to get the body of emails from my account which is done in my code below. Once I have that data, I am confused as to how I would get them over to the front-end. I'm new to the whole MEAN stack, and from…
Rafa
  • 3,219
  • 4
  • 38
  • 70
1
vote
1 answer

Customize tabs in customer edit page in backend

I need to customize the tabs in the customer edit page in the backend. The requirement is that all the tabs on the left column should be moved to the main content block and they should be displayed inline. I had implemented this by customizing the…
Praveesh
  • 1,257
  • 1
  • 10
  • 23
1
vote
1 answer

Add custom page to admin menu visible only to editor users

I want to build a custom assign management and display its results in the wordpress backend. I added a new admin menu item like this: add_action('admin_menu', 'register_custom_menu_page'); function register_custom_menu_page() …
1
vote
1 answer

Django Custom backend "get_user" never called. User is always Anonymous

I implemented a custom auth backend as advised by django doc I have two methods - authenticate and get_user. I confirmed that my custom 'authenticate' method is called and returns a proper user but in request.user I'm always getting AnonymousUser…
1
vote
1 answer

PowerDNS didnt get answer from pipe backend

I'm trying to write own pipe-backend for powerdns, but can't get it work properly. I'm starting pdn_server with my backend and try to test it with command: # nslookup example.com 127.0.0.1 and # dig @127.0.0.1 example.com First problem is that…
dtoch
  • 185
  • 1
  • 2
  • 12
1
vote
3 answers

How to use addFieldToFilter on a custom collection

I was wondering if it's possible to filter a custom collection in Magento 1.7.2. My current code looks like this: $collection = $model->getCollection() ->addFieldToFilter('gc_id',array('gt' => 0)) ->addFieldToFilter('expiration_date',…
augsteyer
  • 1,039
  • 10
  • 25
1
vote
1 answer

How to have QWebView render directly to a GStreamer Buffer?

I am looking to write a simple QT-based web-browser with a gstreamer back-end as a proof-of-concept for a much more complex program. The idea is to have the QWebView render to gstreamer buffers which would be displayed or streamed by gstreamer…
swestrup
  • 4,079
  • 3
  • 22
  • 33
1
vote
0 answers

How to list only english custom menus in a metabox alike the Custom Menu widget?

I'm currently developing a custom theme for Wordpress which also uses WPML. One of the features is a page independent "Quick navigation menu" that resides in the sidebar of pages. My approach is to use custom menus (Appearance->Menus) for this. On…
Roland
  • 240
  • 2
  • 7
  • 15
1
vote
4 answers

I forget it Jsecure admin url, how can I get it back?

If somebody knows Jsecure component, can tell is very good extension for hide the Joom back-end url... But I forget it what type of word I was give to Jsecure for access to my back-end. I find few sulotion on the Internet, how can I see it what is…
1
vote
1 answer

Django custom authentication backend via third-party app

I'm trying to implement a custom authentication backend in Django that will log users in based on a unique id from a third-party service (Facebook, LinkedIn, etc.) Basically, once users OAuth to the third-party service and get a unique identifier…
tchaymore
  • 3,728
  • 13
  • 55
  • 86
0
votes
3 answers

Auto logging in a user

I am currently using a small PHP backend to manage a website and recently I added another functionality via a separate script. This script also requires a log in and my client finds it tedious and bothersome to have two different log on's.…
0
votes
2 answers

How to display the meta key and values of the order item in the admin order list column order status?

I´m using Woocommerce with paid addon from automatic "product addon" which adds some meta values to the order item table I want to show 2 or more specific meta key values in the admin order list. 1 Funghi Topup: Salami Oil: chilli I got the…
Gery
  • 3
  • 3
0
votes
1 answer

How can i use FLUID / extbase for preview at the backend of custom content elements TYPO3 >= 11

How can I use FLUID / extbase for backend preview of custom content elements in the backend page module (TYPO3 >= 11) since the class "PageLayoutView" is deprecated (for example "PageLayoutViewDrawItem" hook)? I know this new method, but it doesn't…
Chris
  • 45
  • 6
0
votes
1 answer

How do I change the fieldtype of a input field in the magento backend?

I would like to know how I can change the field type of a customized input field in the magento backend. I'm talking about this screen: Customer => Manage Customers => Account Information Usually there is a .phtml file to configure your fieldtype…
Philou
  • 1
  • 1
0
votes
1 answer

Need advice regarding which DB should I use for my flutter app

I've a project where employees would have to report using the app so basically there will be following features in app login, reporting and only view the products of the company through app. Now, the problem is that I need to import loads of…