PyroCMS is a lightweight, themeable open-source CMS built on top of the PHP framework CodeIgniter, praised for its simplicity.
1
vote
1answer
7 views
Defining a var in constructor cause “Creating default object from empty value error”
I'm using PyroCMS with PHP 5.4.15 in my development server, so I installed a new module (created by someone else) and get this warning all the time:
A PHP Error was encountered
Severity: ...
3
votes
0answers
35 views
PyroCMS / Codeigniter : too many session entries in db
I'm using for a small website the pyrocms / codeigniter combo.
after adding some content, i checked the db and saw that:
is this a normal behaviour? multiple session_ids for one user with the same ...
1
vote
1answer
24 views
how to load a variable of an module in dashboard
I am using pyroCMS and i have module A and in that i have a controller, I am getting some values in $var which i defined in function index(), How to load the controller in a different module, I have ...
0
votes
1answer
19 views
Blog posts from category isn't displayed
I've created a page and then put this code
<section class="cont_pad">
<div class="container_12">
<article class="grid_8">
{{ blog:posts limit="5" offset="5" ...
0
votes
0answers
25 views
Third Level Sidebar Navigation Pyrocms
Using Bootstrap accordion menu for building a sidebar navigation.
I have the following code:
<div class="accordion" id="leftMenu">
{{ navigation:links group="sidebar" class="active"}}
<div ...
1
vote
1answer
48 views
PyroCMS Minified Asset files across multiple machines
If I'm deploying a site across multiple servers (to be load balanced), it seems that on one of the servers, the minified assets aren't in assets/cache. It's there in the other ones, but not this one. ...
0
votes
0answers
11 views
Extending Navigaton Module Pyrocms
I came across an answer to a question that solve a problem I was having at
How to implement more complex navigation in PyroCMS?
However it requires changing system files. Is there a way that I can ...
0
votes
0answers
14 views
Multiple Navigation Sidebars Pyrocms
Using Pyrocms 2.2.
The site is divided into 8 sections. Each section has its individual set of options/topics that are accessed via the sidebar menu.
How do I: 1. Conditionally load the sidebar ...
-2
votes
0answers
17 views
How to develop a theme for PyroCMS that loads all the pages in the same one, at home?
I'm using Pyro for the first time, so I apologize if I'm missing something. I'm trying to develop a theme that loads all the pages created in one only, at home. Any idea of how can I do this work? ...
-1
votes
1answer
27 views
Alternative to Pyrocms Streams
Those who are familiar with PyroCMS Streams.
Do you know any other similar projects that have something lika a Streams.
It can be writen in PHP, Ruby on rails, python.
It can be part of some other CMS ...
1
vote
2answers
84 views
Recursive table which child parent relationship
I have a problem with a recursive function that takes too many resources to display a child-parent relation in a dropdown list. For example:
home
-menu 1
-menu 2
home 1
-menu 3
-menu 4
I've ...
0
votes
2answers
33 views
How do I call a plugin in an if else in PHP using PyroCMS
example
<?php
if ($a > $b) {
{{ graph:top_coders_one }}
} elseif ($a == $b) {
{{ graph:daily_commits_two }}
} else {
{{ graph:commit_stream_two }}
}
?>
my plugin function does ...
0
votes
2answers
68 views
Change group of a newly created User in PyroCMS
Using PyroCMS 2.2, how can I have a registration form assign a user to one of the new Groups I created. Within the admin panel, I have a created a user group called client. When my registration form ...
0
votes
1answer
25 views
I am trying to pass data from my controller to a plugin. But i need to first pass it to a view which then calls the functions in the plugin
Here is my controller
public function ajax_filter() {
$filters = array(
'start_date'=> $this->input->post('start_date'),
'end_date' => ...
0
votes
1answer
34 views
Table prefix in pyrocms
I am working on a custom multiple delete in pyrocms module,how to use delete in model
my code:
protected $_table = 'accounts';
public function mulDelete($muldelete)
{
...
0
votes
1answer
36 views
How to point multiple subdomains to a single domain instance in PyroCMS Pro?
I've seen in the 2.0 multisite documentation that this feature was coming, the ability to create domain aliases to allow multiple domains or multiple subdomains to point to a single domain instance in ...
0
votes
0answers
44 views
pyrocms Uploadify or SWFUpload erro 302
Personal'm with a problem and do not know what else to do.
In Chrome's OK, but in IE and FF does not work.
I'm using pyrocms with Uploadify or SWFUpload and is returning in both the error 302.
In ...
0
votes
1answer
62 views
how can i call another object while looping using pyrocms tags
heres how the object looks
[obj1] => Array
(
[0] => Array
(
[id] => 0
)
[1] => Array
(
[id] => 1
)
)
[obj2] => Array
(
[0] => Array
...
0
votes
1answer
60 views
Adding pyrocms to existing website
Unfortunately I'm months into a project and now the client is requesting a cms based option to edit a few pages on the fly. Now I'm totally knew to pyrocms but from what I've been reading it's not ...
1
vote
2answers
62 views
HoverIntent causing elements to break on page
The project I'm currently working on shows a number of people's pictures who are attending an event and I would like a hover event to occur that displays their name. I've gotten this to work but it ...
0
votes
2answers
45 views
How can I include a hosted JS file with PyroCMS / Lex?
To load files in my theme, I use {{ theme:js file="bootstrap.min.js" }}. But what if I want to load something from a CDN like http://code.jquery.com/jquery-1.9.1.js.
I tried {{ theme:js ...
0
votes
2answers
68 views
Ajax call returns “An Error Was Encountered [ 500 ] Unable to load the requested file: default.html” error in pyrocms
I have a Pyrocms view where i call a controller method using jQuery Ajax, like this
$('#search').click(function(){
var ionum =$('#ionum').val();
var csrf_hash_name = ...
0
votes
1answer
70 views
pyroCMS and codeigniter add-ons
Greetings I will just ask very simple question. I'm very new to PyroCMS and I was wondering
if is possible use same modules, add-ons, widgets and plugins created in Codeigniter for PyroCMS?
0
votes
1answer
74 views
Customizing the pyro cms ->css and js not working
I want to customize the theme
In the addons->themes->myprojectname i kept css,img,js,views,theme.php and i activated the theme from the control panel of the pyrocms
1) In the ...
0
votes
0answers
20 views
Install breaks on Step 2 in XAMPP for Windows
http://content.screencast.com/users/inulled/folders/Snagit/media/8bb54c95-f131-4d55-a3e2-368c1f686a80/03.22.2013-16.16.08.png
As you can tell from the image above, something is going wrong. I am ...
0
votes
1answer
54 views
Can I have config files that override the system config files in PyroCMS?
Specifically, I'm trying to change the register_redirect in the system/cms/modules/users/config/ion_auth.php config file.
Is there some place to put my application specific configs?
0
votes
1answer
38 views
$_POST with stripped html
I'm using pyrocms on my local machine and i try to submit some html in my post-data to a custom module controller.
i use the CKEditor for adding some content.
i use jquery.post, just for some ...
0
votes
0answers
56 views
Creating PHP Forms using PyroCMS
Can I create Client Forms, Employee Forms, Projects w/ Picture attachment using Pyrocms? Then I will create another form that will link the these forms and create a Transaction Form? I am not expert ...
0
votes
0answers
83 views
Pyro CMS image path
Pyro CMS is new to me , in codeigniter i used to give the path as and base_url is declared in the config folder but how to give the path for the images in the pyrocms it is not working if i give ...
0
votes
1answer
24 views
Asset and theme
I'm trying to figure out why after adding in the this asset line it turns into the line below it but shows a 404 file not found when in fact it does exist.
...
0
votes
0answers
16 views
Pyrocms File Addon existing files
I had a bout 5GB of historical pictures from previous years that I had zipped up on my laptop. I uploaded the zip to the server and want to extract and add them to Pyrocms so they are accounted for ...
0
votes
1answer
67 views
PyroCMS PayPal IPN Seems not being triggered by PayPal
i am having an anonymous issue with PayPal IPN.i am working on a simple event booking system and using PayPal Standard as Payment Gateway.
When i make payment in sandbox mode it goes through but ...
0
votes
0answers
112 views
pyrocms Unable to connect to your database server using the provided settings. Filename: /libraries/MX/Loader.php Line Number: 104
Please help me it serious problem for me. My company use Pyrocms(codeigniter CMS ). when visitor into web about 800 user. My web can't access and show error
Unable to connect to your database server ...
0
votes
0answers
48 views
pyrocms files url not decoding image
I have pyrocms installed and it does not show or decodes any files format.
http://2013.chocolate6.com/chocolate6pyro/files/cloud_thumb/9
it returns
The page you are trying to view cannot be shown ...
0
votes
0answers
27 views
Syntax highlighter support on PyroCMS v2.2
I recently upgraded from PyroCMS version 2.1.5 to 2.2. After the update, 'Code' button on WYSIWYG editor was gone. I was using this module, and it was showing 'Code' button correctly for version ...
1
vote
1answer
101 views
PyroCMS Custom Module Layout
I created a custom module called Drawings. I wanted to give it its own theme layout on the frontend, so I followed the advice I found HERE - I put a layout file titled Drawings.html in my theme.
This ...
0
votes
1answer
48 views
Accessing PyroCMS Module inside Custom Theme
I have designed a custom theme and I need to be able to load a module I have made into my default.html page. I have written the following so far:
<div id="outer-content">
<div ...
0
votes
1answer
71 views
codeigniter / database page not loading
I have a problem whith a database request : the webpage does not load at all.
public function get_mylist($user_id){
$this->db->select('*');
...
0
votes
0answers
121 views
Unable to upload XLSX files
This is a common issue from what I have found.
A discussion is also found here
https://forum.pyrocms.com/discussion/18587
As suggested on many sites I needed to add mime types to the xls and xlsx. ...
0
votes
1answer
65 views
Adding OAuth Server Support to PyroCMS / Codeigniter?
I am looking for a way to extend PyroCMS into an OAuth2.0 server. I want my users to be able to log onto my "customer" websites using a central authentication system.
I looked into ...
0
votes
2answers
82 views
PyroCMS get the real filesystem path of a uploaded file
How do I get the "real path" (server path) of a file uploaded to the PyroCMS files module.
I need to get the absolute path such as;
"c:\www\pyro\uploads\MYSITE_REF\real_file_name.xlsx"
1
vote
1answer
181 views
Change PyroCMS's Admin access url
i want to change the url of the pyrocms backend for security reasons. I tried to change it in the routes.php but all I get is
Fatal error: Class 'CI' not found in ...
-1
votes
1answer
55 views
every jquery plugin is not working in pyrocms [closed]
When I apply this code
$(document).ready(function(){
$('.fade').innerfade({
speed: 900,
timeout: 4000,
type: 'random_start',
containerheight: '1.5em'
...
0
votes
1answer
14 views
Unable to deleteing folders
From the admin, I am able to create new folders from the browser but unable to delete the created folders.
http://localhost/<project>/admin/files .
However the delete does not work. When I ...
0
votes
0answers
85 views
Waht would be the .htaccess file for PyroCMS on shared hosting
I have a fresh PyroCMS setup on a shared hosting.
I have a the files in a subfolder: "pyrocms" inside the "public_html" folder.
I used this .htaccess to host the primary domain from the subfolder:
...
0
votes
1answer
86 views
How to change the relationship field in Pyrostreams entry form
I'm using Pyrostreams and I have 2 streams:
Cities &
Rooms
Rooms have a relationship field: City. When I output an entry form for Rooms I see a dropdown with all cities, but only their id's are ...
0
votes
1answer
47 views
How do I upload files to S3 instead of my hard drive using PyroCMS 2.1.5?
I can't seem to figure out how to post files (images, etc) to amazon S3.
I'd like for this to be default behavior for ALL media upload areas.
0
votes
1answer
240 views
Trying to load theme assets in pyrocms only using template and asset library
In trying to find out how to have the following work. I'm using the template and asset libraries from PyroCMS to help in aiding my CI application and I’m trying to figure out how I can have the ...
1
vote
1answer
93 views
Custom modular routing PyroCMS
I have a custom module called user located in addons/shared_addons. In my config/routes.php I have...
$route['user/admin(:any)?'] = 'admin$1';
$route['user/(:any)?'] = 'user/index/$1';
//and ...
0
votes
0answers
28 views
Pyrocms - open specific folder
Is it possible to open specific folder on file module initialization?
For example: I want to upload images into specific folder without browsing whole folder structure.
Thanks...

