a descriptive part of the URL that is there to make it more human descriptive, but without necessarily being required by the web server
0
votes
0answers
4 views
Relative slug retrieval DoctrineExtensions
I have two entities, which are related and both have a slug created by @Gedmo\Slug according to this example
class Relation
{
/**
* @ORM\Column(type="string", length=255)
*/
...
1
vote
1answer
20 views
Multiple slug types with cakePHP
I'm working on a CMS writing from base by my own.
I implemented it's content section with Node and NodeType logic. ( every Node belongs to a NodeType)
There's Slug field in both Nodes and NodeTypes ...
1
vote
0answers
63 views
Wordpress: Use title (slug) in hashed URL instead of post ID
I am developing a WordPress site where I hope to load the content using ajax. I seem to have it working although I'm not too sure how good my code is! My issue is that I would like the hash to display ...
0
votes
3answers
60 views
CodeIgniter: I'm able to list the items but I can't load one
My
Application/.htaccess
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
Application/config/routes.php
$route['default_controller'] = ...
0
votes
0answers
99 views
Testing nested controllers: NoMethodError: undefined method `empty?' for nil:NilClass
I have been trying to get my controller test pass...
My routes.rb
namespace :school do
resource :account, :except => [:new, :create, :destroy], :controller => 'account'
resources ...
-1
votes
2answers
48 views
PHP Article Slug instead of ID
so I've saved an article slug to my database and usually I would filter my pages with the art_id like so,
$sql_articles = "SELECT * FROM app_articles WHERE art_id=".$_GET['art_id'];
$result_articles ...
1
vote
1answer
53 views
Django-cms: Can't publish 2 pages with the same slug in different levels
I'm having an issue with slugs in child pages. Imagine I have a page called "Something" in the main tree with the slug "something", and another page named "Anything" with the slug "anything". This ...
1
vote
1answer
68 views
MVC 4 creating slug type url
i am trying to create a stackoverflow like url.
I the following example works fine. But if i remove the controller then it errors out.
http://localhost:12719/Thread/Thread/500/slug-url-text
Note ...
0
votes
1answer
25 views
Force post ID to be slug
I'm using a heavily custom theme that uses needs custom permalinks to be in this format:
/%category/%postname%/
but, i want my permalinks to be in this
/%category/%post_id%/
Is there a ...
0
votes
1answer
37 views
Model multiple field-lookup in Django 1.5
I have a model
class ModelName(models.Model):
type = models.ForeignKey(AnotherModel)
slug = models.SlugField(editable=False)
class Meta:
unique_together = (('type', 'slug'),)
...
0
votes
1answer
25 views
Force recreation of Heroku slug on git push
I'm hosting a Django app on Heroku for a while already, and so far it worked fine. I now made some changes in the requirements.txt file, but feel like they are not correctly installed on Heroku when I ...
0
votes
1answer
64 views
Link to post's ID (Wp)
I am having trouble linking to a single post. I have queried my loop to show posts categories that match the slug. So I only need one gallery template.
This has made an issue for me that means i ...
0
votes
1answer
40 views
Use the category name instead of category slug in permalinks
How to create a permalink structure which finish by:
/category-name/post-name/
Instead of:
/category-slug/post-name/
By default, Wordpress is offering %category% tag strucure as "A sanitized ...
2
votes
5answers
159 views
creating unique page title slugs php
I have a function for creating unique slug for a page title. It checks if the slug is available in the pages table then creates a unique slug by adding a '-int' accordingly. The function works fine ...
0
votes
1answer
42 views
Remove the numeric append on duplicate wordpress titles
The way wordpress works is if two posts have the same exact title, the slug for the new title automatically has "-2" appended to it. And then "-3" to the next one and so on.
The way my site is set up ...
0
votes
2answers
40 views
Django: Managing urls like id:slug with duplicated slug
Using Django 1.5 I am storing the slug in DB
I configured my urls like follows:
url(r'^(?P<id>[0-9]+):(?P<slug>[-\w]+)$', TracksDetailView.as_view(), name="track-view"),
And in my ...
-1
votes
1answer
56 views
Custom Taxonomy Slug Hook? [closed]
To avoid naming issues I decided to attempt to change the url slug as its being submitted, by appending a "unique-to-taxonomy" suffix.
What is the hook for doing something like this? How would it be ...
0
votes
0answers
10 views
Slug Clash - Custom Taxonomy
taxonomy_1 term = gold
taxonomy_2 term = gold
Generates 404 on taxonomy_2 because the slug has been named "gold-2"
Obviously this should not happen. What would cause this?
Better yet - a good ...
0
votes
1answer
177 views
rails 4 mongoid. mongoid_slug is not installing
I have started new project, installed mongoid, when i tried to install mongoid_slug it is giving me error.
I did not used --skip-active-record.
Bundler could not find compatible versions for gem ...
1
vote
1answer
53 views
Using a slug in URL & ID to query DB in MVC
I am trying to use slugs in an MVC web application but can seem to work out the best way to implement them.
I have found the the recommendation on how to create the URL friendly slug stackoverflow ...
0
votes
2answers
40 views
Make slug for RSS Feed
I want to create links to RSS posts, but I need a 'slug'. I want to replace the whitespaces with a "-", so I can redirect the links to my posts on my wordpress site. My RSS:
<?php
...
1
vote
1answer
45 views
How can I get the connected route from a URL string in CakePHP?
CakePHP appears to have a function to translate a requested URL and determine what controller and action to perform, seeing this must be performed with each http request.
Is there a way I can utilize ...
1
vote
0answers
133 views
Symfony2 - Gedmo - Leave slug untranslated
I'm working on a multilingual symfony 2 eCommerce site that works with slugs for the URL.
Currently the behavior for both languages is that the products's slug (based on the product name) is also ...
0
votes
1answer
48 views
wp how to exclude filter from the custom query
I am trying to exclude a filter (slug) from a loop. I am researched exclude and have tried it in various places in the code. Usually I break the page. This is the code, I am attempting to change to ...
0
votes
1answer
38 views
slugfield vs. regex - should I add a slug to models?
My models don't currently have a slugfield in them. So far, when I use a table value in the url such as /movie/Gone With The Wind, I'd just use a regular expression to get the value I want in the url.
...
1
vote
1answer
138 views
Best practice: prepopulate SlugField in Django (without Admin module)
In the early days of Django it was possible to prepopulate a SlugField within the Model.
In the Admin module i would use
prepopulated_fields = {'slug':('title',),}
I found a snippet that ...
3
votes
1answer
113 views
Can I avoid this permanent redirect to fix or add a slug?
I am writing a website in MVC 4, and would like to duplicate in part Stack Exchange's style for routing questions. For example:
stackoverflow.com/questions/15191392 and
...
0
votes
1answer
113 views
Confusion of slug with route part “new” etc
I have a sfDoctrineRouteCollection:
foo:
class: sfDoctrineRouteCollection
options:
model: Foo
columns: slug
action: [list, show, new, create, edit, update, delete]
If someone now ...
1
vote
0answers
74 views
Create slug with relationships
I would like to create a slug with the combinations of relations of external tables. I would like to take 2 values ​​from a table and another value from un'atra table. I tried to do this but I do not ...
0
votes
1answer
53 views
Django Url, Slug for Detail Page
I'm having trouble configuring my url to display a detail view. Clicking on this link: <a href='{% url blog_detail blog.slug %}'>{{ blog.name }}</a> shows blog.html, when I thought it ...
1
vote
1answer
75 views
zend framework slug creator for utf8 character
I want to create a SEO friendly url, so after a few research, i come up with creating slug and do something with the router. However, it seems that the slug creator around internet only support ...
0
votes
0answers
39 views
Wordpress - multiple slug page
I have already one slug page (page-gallery) in which I custom it's divs but when I added another slug page (page-about) it seems its not working for my customize divs. Any idea? Thanks!
0
votes
4answers
143 views
Convert function from Javascript to PHP [closed]
I've this javascript function that convert any string into the perfect slug (in my opinion).
function slugGenerator(str) {
str = str.replace(/^\s+|\s+$/g, '');
str = str.toLowerCase();
var ...
0
votes
0answers
47 views
Allowing slashes in Doctrine2 Sluggable behaviour
I have a Symfony2 app that utilises Doctrine2 and the StofDoctrineExtensionsBundle to provide the sluggable behaviour. However, I'm trying to prevent the sluggable behaviour from replacing forward ...
0
votes
0answers
77 views
Display Slug in WordPress Admin Columns posts/products custom post type
I'v searched around a good bit and can't find anything but a plugin, which breaks WP.
I'm using WooCommerce, so a custom post type is involved.
In the Products list page, I'd like to add a new ...
0
votes
1answer
62 views
friendly_id: Renew slugs optionally
I want to allow users to
renew
the slug of an entry by clicking a checkbox.
I know the function
should_generate_new_friendly_id?
, but not how to use it in this case since it is defined in the model ...
0
votes
2answers
112 views
Django AutoSlugField across inherited models
I'm wondering if you can have slugs unique across inherited models?
I have three models, one base and two that extend it.
The base has a unique AutoSlugField that is generated from the name field.
...
1
vote
1answer
136 views
Wordpress Nivo Slider / Slug PHP issue
I am using the Nivo Slider plugin for WordPress, but want to hard code the slider into my page and have it dynamically pull in the correct slider as the page and Nivo slider will share the same slug.
...
0
votes
1answer
78 views
slug url and after more pages
I do not understand how you could generate urls after the slug field, enter stop another page as django ago to save the slug field value or a value that should go to views.py
I have in models.py
...
2
votes
3answers
72 views
Implementing URL slugs in GAE
I'm trying to implement URL slugs in my app (python-based). I want the slugged URL to be of the format myhost/{post_id}/{post_title}.
When I try to access the page using the above slugged URL format, ...
0
votes
2answers
103 views
Trying to keep slugs unique
I posted a question similar to this before and it was suggested that I use friendlyIds gem however it was not for me as I had some real issues with it. Moving swiftly on...
I'm trying to create URL's ...
0
votes
1answer
33 views
Slug Based on two values
First off I'm very new to rails and ruby for that matter.
I'm trying to create a slug for custom URLS.
I have a user model with a first_name & last_name. This model also has a slug.
What I am ...
2
votes
3answers
3k views
Remove all special characters from a string [duplicate]
Possible Duplicate:
Regular Expression Sanitize (PHP)
I am facing an issue with URLs, I want to be able to convert titles that could contain anything and have them stripped of all special ...
1
vote
0answers
176 views
How do I make slug url within MySQL using INSERT statement i.e. Friendly URL rewrite by data manipulation?
This is a NEW QUESTION derived from mySQL Stored Function to create a slug
Most of the sql code I need is in the above old post, but need some directions on how to implement that. Thank you!!
...
0
votes
1answer
73 views
Arabic and other Right-to-left slugs ok?
I'm creating a multi-lingual site, where an item has a slug for each of the sites languages.
For Arabic slugs (and I assume any other right-to-left languages) it acts strange when you try to ...
2
votes
3answers
183 views
Unique url slugs (routes)
Suppose i have this db table schema:
id | article | slug
1 hey guys how are you? hey-guys-how-are-you?
I'm trying keeping my db route field unique
route is always the message ...
2
votes
2answers
93 views
dynamic slug with permanent redirect or store slug on database
Which is the best option for urls on a news page:
Dynamically generate slugs. Load the page from the object id. If the slug doesn't match, permanent redirect to the correct slug.
...
1
vote
2answers
168 views
Perl module to parse clean URL
I know how to create slugs for my website, so instead of URLs like this:
www.site.com/index.cgi?article=12
I create URLs like this:
www.site.com/article/12
My question is what Perl modules ...
0
votes
1answer
447 views
Slug Url Regex in Django
After reading a lot about proper use of a slug to create a detail view from a list of objects. However, I am still having problems getting it to work for me. I am displaying a list of objects in my ...
1
vote
1answer
252 views
How do I cleanly do slugs in Python / Flask?
I have a simple web service in Python / Flask against MongoDB: https://github.com/rjurney/Collecting-Data/blob/master/src/python/web/index.py
It repeats @app.route code, like this, over and over:
...





