Search found 413 matches

by hexdj
Sat Apr 24, 2010 6:29 am
Forum: Spanish - Español
Topic: Problema al cambiar de hosting, no me puedo logear...Ayuda por Favor!!
Replies: 7
Views: 5001

Re: Problema al cambiar de hosting, no me puedo logear...Ayuda por Favor!!

Si tienes acceso a MySQL (lo cual deberias) puedes ejecutar este sql:

Code: Select all

UPDATE `cms_users` SET PASSWORD = md5('admin') WHERE user_id =1;
El codigo anterior convertirá el password del administrador que instaló el CMS a 'admin' (sin comillas). Luego puedes cambiar el password desde cms.
by hexdj
Sat Apr 24, 2010 2:45 am
Forum: Spanish - Español
Topic: Problema al cambiar de hosting, no me puedo logear...Ayuda por Favor!!
Replies: 7
Views: 5001

Re: Problema al cambiar de hosting, no me puedo logear...Ayuda por Favor!!

Hola Ruben

Cuando moviste tu sitio, actualizaste las rutas de tu config.php?
by hexdj
Fri Apr 23, 2010 4:43 am
Forum: Spanish - Español
Topic: Actualizar el contenido en un {content block="caja"}
Replies: 6
Views: 5158

Re: Actualizar el contenido en un {content block="caja"}

Si estas editando la misma caja de contenido en dos navegadores o pestañas, debes de asegurarte que la guardes en una y tienes que refrescar en la otra. Los cambios no se reflejaran automaticamente en la seguna pestaña, tienes que refrescar.
by hexdj
Wed Apr 07, 2010 9:09 pm
Forum: Modules/Add-Ons
Topic: AdvancedContent
Replies: 264
Views: 87905

Re: improve the content type "content" - Content (Extended)

Nan: thanks for adding this awesome plugin in the forge!!!
by hexdj
Tue Mar 23, 2010 7:44 pm
Forum: CMS Show Off
Topic: Big one: Painters website
Replies: 13
Views: 6637

Re: Big one: Painters website

Very nice site, I wouldn't make the menus so transparent, as it makes them really hard to read, specially when there's already text behind them.
by hexdj
Thu Mar 11, 2010 9:39 pm
Forum: Modules/Add-Ons
Topic: AdvancedContent
Replies: 264
Views: 87905

Re: improve the content type "content"

I would also like to see this in forge. Although it really SHOULD be part of Core

Wishful thinking  ;)
by hexdj
Thu Mar 11, 2010 7:52 pm
Forum: Modules/Add-Ons
Topic: socialbookmarking
Replies: 18
Views: 5664

Re: socialbookmarking

well this topic is not about MLE, it's about socialBookmarking

Did you even try changing it to {socialBookmarking}
if you use {socialbookmarking} it's not going to work.
by hexdj
Thu Mar 11, 2010 5:13 am
Forum: Modules/Add-Ons
Topic: socialbookmarking
Replies: 18
Views: 5664

Re: socialbookmarking

@zorrax:

tags are case sensitive, from the code you posted I see you have the socialBookmarking call all in lower case, that's most likely the problem.
by hexdj
Wed Mar 10, 2010 11:07 am
Forum: Modules/Add-Ons
Topic: Can't Specify Detail Template in CGBlog
Replies: 1
Views: 963

Re: Can't Specify Detail Template in CGBlog

This is a bug in the module, also seen in Products module.
by hexdj
Fri Mar 05, 2010 12:18 am
Forum: Layout and Design (CSS & HTML)
Topic: Change page background colour per image?
Replies: 4
Views: 1994

Re: Change page background colour per image?

Don't think you can do it with Image Manager, because there's no way for you to add custom fields in there. But you might be able to use the Gallery module and adapt if, using the Comment / Description fields.

Gallery module is awesome by the way  ;D
by hexdj
Thu Mar 04, 2010 12:06 pm
Forum: Layout and Design (CSS & HTML)
Topic: Change page background colour per image?
Replies: 4
Views: 1994

Re: Change page background colour per image?

You can definitively do this with jQuery, See the following example that I wrote really quickly: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <__html> <head> <style type="text/css" media="...
by hexdj
Thu Mar 04, 2010 6:35 am
Forum: Tips and Tricks
Topic: Check if a Page is New (or Freshly updated)
Replies: 1
Views: 3517

Check if a Page is New (or Freshly updated)

I have created a UDT that can be used to check if a Content Page is new or has fresh contents (solely based on the last modification made) and will output anything that you like, it can be something basic like the word NEW next to a menu item, or an image inside the contents of the page that's being...
by hexdj
Thu Mar 04, 2010 5:58 am
Forum: Spanish - Español
Topic: como señalizar nuevo contenido
Replies: 1
Views: 3656

Re: como señalizar nuevo contenido

@ant666 Buena pregunta, he creado una UDT (Tag personalizada) que se puede usar para saber si una pagina es nueva (basados en la ultima fecha de modificación de esta) Este es el código de mi UDT, a la que he llamado FreshContent global $gCms; $db =& $gCms->GetDb(); $the_alias = isset($params['al...
by hexdj
Wed Mar 03, 2010 9:20 pm
Forum: Tips and Tricks
Topic: Get an Admin / FEU user's Full Name
Replies: 3
Views: 4861

Re: Get an Admin user's Full Name

OK this UDT has been revamped, because in my site I needed certain FEU users to post articles to CGBlog , using the FEsubmit option, therefore the above UDT wouldn't get their actual name, as they're stored in different places in the Database. Once again many thanks to Stikki for all the Help. So no...
by hexdj
Fri Feb 26, 2010 10:46 am
Forum: Tips and Tricks
Topic: Get an Admin / FEU user's Full Name
Replies: 3
Views: 4861

Get an Admin / FEU user's Full Name

I needed CGBlog to display a user's full name instead of their username, so I created this tag, called GetFullName it does require the username as a parameter though. global $gCms; $db =& $gCms->GetDb(); $user_name = $params['username']; $query = "SELECT first_name, last_name FROM ".cm...

Go to advanced search