Search found 279 matches

by davids355
Tue Jan 21, 2014 9:02 am
Forum: Help Wanted (commercial)
Topic: reuqest for quote to modify News module
Replies: 8
Views: 3981

Re: reuqest for quote to modify News module

Thanks for all the pointers guys. Ill have a go and report back.
by davids355
Mon Jan 20, 2014 10:33 am
Forum: Help Wanted (commercial)
Topic: reuqest for quote to modify News module
Replies: 8
Views: 3981

reuqest for quote to modify News module

I have the news module running on my site here: http://www.shareworld.co/index.php/resources/ipo-watch/ This is quite basic and it just shows summary then detail page. What I would like is a traffic light system built into the module - so that when I post a news item, I can pick whether it is green,...
by davids355
Sat Oct 26, 2013 10:29 am
Forum: The Lounge
Topic: Search and replace in SQL
Replies: 2
Views: 1330

Re: Search and replace in SQL

Yes, can be done, even without exporting your database, as long as you can use phpMyAdmin or something like it to approach your database. In phpMyAdmin you can enter SQL commands to replace strings. update TABLE_NAME set FIELD_NAME = replace(FIELD_NAME, ‘find this string’, ‘replace found string wit...
by davids355
Fri Oct 25, 2013 9:10 am
Forum: The Lounge
Topic: Search and replace in SQL
Replies: 2
Views: 1330

Search and replace in SQL

I think I done something pretty stupid a long time ago with my CMS install - I decided I would speed things up by moving all (most) of the media (images, JS, Flash etc) to another server, and reference it from there, sort of like a CDN. Anyway, now I have decided to revert those changes, and I have ...
by davids355
Wed Oct 02, 2013 9:05 am
Forum: [locked] Installation, Setup and Upgrade
Topic: problems after moving installation to new server [SOLVED]
Replies: 6
Views: 2506

Re: problems after moving installation to new server

thanks for the help guys. As discussed, I went back to the beginning, and found that the installation was 1.11.8 (which I didnt realise before) so I upgraded to 1.11.9. then I cleared the cache as suggested. Then I initiated the migration again - but the thing I did diffrently this time was to tarba...
by davids355
Tue Oct 01, 2013 6:59 am
Forum: [locked] Installation, Setup and Upgrade
Topic: problems after moving installation to new server [SOLVED]
Replies: 6
Views: 2506

Re: problems after moving installation to new server

Either we don't have all the information, or you are not running the latest CMSMS version OR you have a file corruption problem because readdir() is not called from translation.functions.php, or from it's parent function. Please provide the contents from the CMS version.php file, AND do a system ve...
by davids355
Mon Sep 30, 2013 3:59 pm
Forum: [locked] Installation, Setup and Upgrade
Topic: problems after moving installation to new server [SOLVED]
Replies: 6
Views: 2506

Re: problems after moving installation to new server

Hi rotezecke, I checked the error log - good job, because it seemed to be stuck in an infiniteloop and the size of the error log was already 20GB! I deleted the entire site (as its only test environment) and then the error log started growing in size again! Had to log into shell and stop PHP process...
by davids355
Mon Sep 30, 2013 2:56 pm
Forum: [locked] Installation, Setup and Upgrade
Topic: problems after moving installation to new server [SOLVED]
Replies: 6
Views: 2506

Re: problems after moving installation to new server

can you get into backend? if so, clear cache. if not, you can clear /tmp folder manually (leave directories/files that came with distribution). if that's not enough, check your webserver's error log. you can also set debug to true in config.php but this would require some sort of response from cmsm...
by davids355
Mon Sep 30, 2013 8:00 am
Forum: [locked] Installation, Setup and Upgrade
Topic: problems after moving installation to new server [SOLVED]
Replies: 6
Views: 2506

problems after moving installation to new server [SOLVED]

I am attempting to move an installation of CMCMS (latest version) to a new hosting provider. Currently the site is running on a dedicated server and I am trying to move it to shared hosting. I am doing so in a test environment (leaving the current site up and running, moving files and database to ne...
by davids355
Fri Jul 19, 2013 1:18 pm
Forum: Help Wanted (commercial)
Topic: problem with news module detail page links not working
Replies: 3
Views: 2938

problem with news module detail page links not working

I am running cmsms core 1.11.4 I have the news module installed - 2.12.10. I have a couple of different categories of news, and the summary display works fine, but when you click on the link to the detail page, it goes to a 404 page cannot be displayed. I believe in the past we had some work done to...
by davids355
Mon Jun 17, 2013 8:06 pm
Forum: [locked] Installation, Setup and Upgrade
Topic: Help with trying to move existing site to a new [solved]
Replies: 3
Views: 1688

Re: Help with trying to move existing site to a new domain

thanks for the quick replies. I was litterally just having a better look now, and I noticed it stopped right before a global content block was called. I went into that, it was just adsense, I deleted the contents of the block, saved, and it all worked. Then I added the content back into the global c...
by davids355
Mon Jun 17, 2013 6:01 pm
Forum: [locked] Installation, Setup and Upgrade
Topic: Help with trying to move existing site to a new [solved]
Replies: 3
Views: 1688

Help with trying to move existing site to a new [solved]

I am trying to move an existing site to a new domain. I am moving from domain.co.uk to domain.co I have backed up files and database from shell. moved files to new domain location, and created a new database, imported the DB backup, then changed config.php on the new site to point everything to the ...
by davids355
Fri Apr 19, 2013 3:54 pm
Forum: CMSMS Core
Topic: Code in UDT prevents template that contains the UDT saving
Replies: 6
Views: 2289

Re: Code in UDT prevents template that contains the UDT savi

I take your point. I will investigate this first and then post back. if $LOCAL_FILENAME refers to a relative path that may be the reason. If possible use an absolute path, best with the use of cmsms properties like root_path (if exists). Mind that in the admin area your (by default) working from <cm...
by davids355
Fri Apr 19, 2013 8:05 am
Forum: CMSMS Core
Topic: Code in UDT prevents template that contains the UDT saving
Replies: 6
Views: 2289

Re: Code in UDT prevents template that contains the UDT savi

if $LOCAL_FILENAME refers to a relative path that may be the reason. If possible use an absolute path, best with the use of cmsms properties like root_path (if exists). Mind that in the admin area your (by default) working from <cmsmroot>/admin/index.php while the frontend works from <cmsmsroot>/in...
by davids355
Fri Apr 19, 2013 7:50 am
Forum: CMSMS Core
Topic: Code in UDT prevents template that contains the UDT saving
Replies: 6
Views: 2289

Re: Code in UDT prevents template that contains the UDT savi

Rolf wrote:I would start with changing die into echo
That's what I done. Just wondered the reason. Also not sure if breaking the code is against terms of third party.

Go to advanced search