|
In development mode my symfony admin/backend app can be accessed at http://localhost/backend_dev.php . For production mode, I created a controller php file, admin.php, so now in production the admin application can be accessed at http://www.domain.com...
Started by mattsidesinger on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Then in your routing.yml file just....
Here are some basic ways you could do it:
Either dump admin.php into a folder called ' admin a module called admin...then in presumably the index action I would put whatever you had in your admin.php file.
|
|
Hi All
I'd like to add a new tab to the 'catalog->manage products->product information' page in the admin. Underneath the 'images' tab, I'd like to add a new tab for video, with a simple text input for adding a video url, which I can then grab for...
Started by Sam on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at stackoverflow):
Head to Catalog -> Attributes -> Manage Attributes and create... .
The good news is that you don't need to muck around in the PHP for that .
What you are trying to do, from the sounds of it, is to create a custom field and add it to your catalog data .
|
|
I have the following models:
class Category(models.Model): name = models.CharField(max_length=40) class Item(models.Model): name = models.CharField(max_length=40) category = models.ForeignKey(Category) class Demo(models.Model): name = models.CharField...
Answer Snippets (Read the full thread at stackoverflow):
JQuery based) to change the item option values when category changes:
<script charset="utf-8" type/",{id: $(this).val(), view: 'json'}, function(j) { var options = '<option value=""> </option>'; for (var i =....
|
Ask your Facebook Friends
|
This contribution is a fix of the admin - > catalog - > options page where the options waren't properly managed from the models in order to save, edit or delete the data. With this fix, all the rows should be maintained and removed at your discretion...
Started by straightlight on
, 20 posts
by 5 people.
Answer Snippets (Read the full thread at opencart):
FREE extension to fully manage your VQMods from Admin!
Catalog Mode : Disable "Add to Cart" and display your store in view-only
Admin Dashboard and Menu Control : Hide Admin dashboard and menu items your VQMods from Admin....
|
|
If someone knows my url of the admin page such as www.example.com/admin.php, then they will easily access the page by directly accesing that url. How to restrict this. Please help
Started by Rajasekar on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
You will get a popup asking to go through some sort of validation.... .
If it is a simpler website and you don't do any user handling or admin authentication, your main option is to do as igorp said and restrict based on the .htaccess file.
|
|
Brand New server looking for good admins to help get the server on its feet. We are also looking for good builders for the spawn which first 2 get op.
Admin App:
IGN:
Specialty:
Why Are you the best Choice:
Pics of Best Work (optional):
Do you have expirience...
Started by PatchReilly on
, 13 posts
by 11 people.
Answer Snippets (Read the full thread at minecraftforum):
Admin App:
IGN: thorfinnur95
Specialty:building can help you with spawn
Why Are you the best Choice expirience: yes i have been admin on 2 server befor and mod on lots of server's ADMIN APP
IGN expirience:yes i do ive been mod/....
|
|
Admin section is at www.example.com/admin
so I have an admincontroller.
But I also have user admin related controllers, and configuration controllers, I want the url to be like:
www.example.com/admin -> adminController
www.example.com/admin/user/ -...
Started by mrblah on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There is no direct relation between the Controller/Views Name an AdminController you can define a... .
This lets a "UserController" in the "Admin" area.
You could have an admin area.
You can use multiple areas in the same project (in MVC 2) .
|
|
I have a side menu that I want to to have the Admin option ONLY display IF the username is an admin. Simply if they are an admin, it's there, if they are not it shows another link to their profile.
Again, KISS (Keep It Super Simple)...please I am an noob...
Answer Snippets (Read the full thread at stackoverflow):
This won't work however if there are multiple users with the same username, so... .
If there are, then that username is an admin.
First, you go and do a Query to see if there are any records with that username, and the admin field checked on.
|
|
As most of you know, port-forwarding is required to host a working Blockland server, but my router's admin page doesn't have an option where you can port-forward. What do I do?
My router used to be BT, where my servers ran perfectly, but my parents had...
Started by Isaac Fox on
, 6 posts
by 3 people.
Answer Snippets (Read the full thread at blockland):
You have to set up.
Sometimes routers won't have a port forward option and instead have a "services" and "firewall have a port forward option and instead have a "services" and "firewall" pairing.
|
|
New to opencart v 1.5.1.3.1
and I have my first question
how can I see the names of user who are login as admin user in the Dashboard
I have 2 persons the help me and I what to see if they are login in the Admin Dashboard
but Me only I am the Top Administrator...
Started by newcode on
, 20 posts
by 5 people.
Answer Snippets (Read the full thread at opencart):
@newcode:
In admin = $this->config->get('config_admin....
There's no way of doing this "live" as such, but you could update your admin's table entries each exist from PHP developers and is there for this purpose most specifically.
|